mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
33 lines
667 B
Bash
33 lines
667 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DEB_VER="9"
|
|
|
|
DESCRIPTION="ACE unarchiver"
|
|
HOMEPAGE="http://www.winace.com/"
|
|
SRC_URI="
|
|
mirror://debian/pool/non-free/u/unace-nonfree/unace-nonfree_${PV}.orig.tar.gz
|
|
mirror://debian/pool/non-free/u/unace-nonfree/unace-nonfree_${PV}-${DEB_VER}.debian.tar.xz"
|
|
|
|
LICENSE="freedist"
|
|
SLOT="1"
|
|
KEYWORDS="~alpha amd64 arm ~hppa ppc ppc64 ~s390 x86"
|
|
|
|
PATCHES=(
|
|
"${WORKDIR}"/debian/patches/
|
|
"${FILESDIR}"/${P}-includes.patch
|
|
)
|
|
|
|
src_configure() {
|
|
tc-export CC
|
|
}
|
|
|
|
src_install() {
|
|
dobin unace
|
|
doman "${WORKDIR}"/debian/manpage/unace.1
|
|
}
|