blob: 0ebdaeb8c349b51e63be1050504af3f9bf38a531 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/szip/szip-2.1.ebuild,v 1.1 2007/11/03 19:21:50 bicatali Exp $
inherit eutils
DESCRIPTION="Implementation of the extended-Rice lossless compression algorithm"
HOMEPAGE="http://hdf.ncsa.uiuc.edu/doc_resource/SZIP/"
SRC_URI="ftp://ftp.hdfgroup.org/lib-external/${PN}/${PV}/${P}.tar.gz"
LICENSE="szip"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND=""
src_unpack() {
unpack ${A}
# fix example with adding -lm
cd "${S}"
epatch "${FILESDIR}"/szip-2.0-example.patch
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc RELEASE.txt || die
}
|