blob: 11b7d15793f19f9b0a771b209f152e99243d2306 (
plain)
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/jbig2dec/jbig2dec-0.11.ebuild,v 1.7 2011/03/29 18:14:33 xmw Exp $
EAPI=2
DESCRIPTION="A decoder implementation of the JBIG2 image compression format"
HOMEPAGE="http://jbig2dec.sourceforge.net/"
SRC_URI="http://ghostscript.com/~giles/jbig2/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="png static-libs"
DEPEND="png? ( >=media-libs/libpng-1.4 )"
RESTRICT="test" #324275
src_configure() {
econf \
--disable-dependency-tracking \
$(use_enable static-libs static) \
$(use_with png libpng)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc CHANGES README
find "${D}" -name '*.la' -delete
}
|