forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
advancecomp-1.15.ebuild
47 lines (36 loc) · 923 Bytes
/
advancecomp-1.15.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils
DESCRIPTION="Recompress ZIP, PNG and MNG, considerably improving compression"
HOMEPAGE="http://advancemame.sourceforge.net/comp-readme.html"
SRC_URI="mirror://sourceforge/advancemame/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 x86 ~x86-fbsd"
IUSE="png mng"
DEPEND="sys-libs/zlib
app-arch/bzip2"
RDEPEND="${DEPEND}"
RESTRICT="test" #282441
src_prepare() {
# bzip2 support wont compile, here's a quick patch.
epatch "${FILESDIR}"/${PN}-1.13-bzip2-compile-plz-k-thx.diff
}
src_configure() {
econf --enable-bzip2
}
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
}