You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-arch/advancecomp/advancecomp-2.0.ebuild

46 lines
933 B

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils
DESCRIPTION="Recompress ZIP, PNG and MNG, considerably improving compression"
HOMEPAGE="http://www.advancemame.it/comp-readme.html"
SRC_URI="https://github.com/amadvance/${PN}/releases/download/v${PV}/${P}.tar.gz"
LICENSE="GPL-2+ Apache-2.0 LGPL-2.1+ MIT"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~x86-fbsd"
IUSE="mng png test"
RDEPEND="app-arch/bzip2
sys-libs/zlib"
DEPEND="${RDEPEND}"
# test? ( dev-util/valgrind )
# test? ( app-text/tofrodos )
RESTRICT="test" #282441, #523212
src_configure() {
econf --enable-bzip2 \
$(use_enable test valgrind)
}
src_install() {
dobin advdef advzip
if use png; then
dobin advpng
doman doc/advpng.1
fi
if use mng; then
dobin advmng
doman doc/advmng.1
fi
dodoc HISTORY AUTHORS README
doman doc/advdef.1 doc/advzip.1
}