summaryrefslogtreecommitdiff
blob: 77af120c3bbb1fddce0bbf345420df302d8c42ff (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libecwj2/libecwj2-3.3.ebuild,v 1.5 2009/09/23 20:07:53 patrick Exp $

DESCRIPTION="This library offers read (decompress) and write (compress) 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"

DEPEND=""

src_install() {
	into /usr
	mkdir -p "${D}usr/include"	# hack to enable install of include files
	make DESTDIR=${D} install || die "make install failed"
	if use doc; then
		dodoc SDK.pdf
	fi
	if use examples; then
		dodir /usr/share/doc/${P}/
		cp -r ./examples/ "${D}"usr/share/doc/${P}/
	fi
}