blob: b34679c1218381d3cd80ee2d265bba38dacabf25 (
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
32
33
|
# 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.8 2011/06/02 10:07:06 dilfridge 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"
#the test files are missing from the tarball, nothing is tested and the
#test function just returns error. permanently restricted, see bug 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
}
|