# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-libs/szip/szip-1.1-r1.ebuild,v 1.7 2006/10/27 18:18:25 gustavoz Exp $ inherit eutils MY_P="${P/-}" DESCRIPTION="Szip is an implementation of the extended-Rice lossless compression algorithm" HOMEPAGE="http://hdf.ncsa.uiuc.edu/HDF5/doc_resource/SZIP/" SRC_URI="ftp://ftp.ncsa.uiuc.edu/HDF/szip/src/${MY_P}.tar.gz" LICENSE="szip" SLOT="0" KEYWORDS="amd64 ppc ppc64 sparc x86" IUSE="" DEPEND="" S=${WORKDIR}/${MY_P} src_unpack() { unpack ${A} ; cd ${S} epatch ${FILESDIR}/${P}-fPIC.patch } src_compile() { ./configure -s --prefix="/usr" || die emake CFLAGS="${CFLAGS} -DHAVE_UNISTD_H -DUSE_MMAP" || die } src_install() { dodir /usr/include dodir /usr/lib make prefix=${D}/usr install || die }