blob: 77d944c17e559207de6dee29546c747b7f555cf6 (
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
34
35
36
37
38
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libecwj2/libecwj2-3.3-r1.ebuild,v 1.2 2010/05/30 17:21:01 hwoarang Exp $
EAPI=2
inherit eutils autotools
DESCRIPTION="Library for both the ECW and the ISO JPEG 2000 image file formats"
SRC_URI="mirror://gentoo/${P}-2006-09-06.zip"
HOMEPAGE="http://www.ermapper.com/ProductView.aspx?t=28"
LICENSE="ECWPL"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="doc examples"
RDEPEND="media-libs/lcms"
DEPEND="${RDEPEND}
app-arch/unzip"
src_prepare() {
epatch "${FILESDIR}"/${P}-nolcms.patch
rm -rf Source/C/libjpeg Source/C/NCSEcw/lcms
eautoreconf
}
src_install() {
dodir /usr/include
emake DESTDIR="${D}" install || die "emake install failed"
insinto /usr/share/doc/${PF}/
if use doc; then
dodoc SDK.pdf || die
fi
if use examples; then
doins -r examples || die
fi
}
|