blob: 1049e590d6a53c24acdec0ac04723338993a379c (
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-2010 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.3 2010/11/13 12:37:03 hwoarang 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 ~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
}
|