diff options
author | 2009-01-21 10:06:15 +0000 | |
---|---|---|
committer | 2009-01-21 10:06:15 +0000 | |
commit | 7d05cf02d40dfba669c7ddcaa1a4227f129624ff (patch) | |
tree | e50cdf1b93637becbc2310aaee8503b2db9a3530 /sci-libs/szip/szip-2.1.ebuild | |
parent | Removed mirror restriction, now tar ball on mirrors (diff) | |
download | gentoo-2-7d05cf02d40dfba669c7ddcaa1a4227f129624ff.tar.gz gentoo-2-7d05cf02d40dfba669c7ddcaa1a4227f129624ff.tar.bz2 gentoo-2-7d05cf02d40dfba669c7ddcaa1a4227f129624ff.zip |
Fixed SRC_URI and re-fetch tar, thanks to Valeri Sokolov, closing bug #255692. Patch not needed anymore, and install one example. Removed older version, updated description in metadata.xml
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/szip/szip-2.1.ebuild')
-rw-r--r-- | sci-libs/szip/szip-2.1.ebuild | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/sci-libs/szip/szip-2.1.ebuild b/sci-libs/szip/szip-2.1.ebuild index 82cb4c5b60cd..c270efa492e1 100644 --- a/sci-libs/szip/szip-2.1.ebuild +++ b/sci-libs/szip/szip-2.1.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 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.3 2008/04/09 01:13:43 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/szip/szip-2.1.ebuild,v 1.4 2009/01/21 10:06:14 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" +HOMEPAGE="http://www.hdfgroup.org/doc_resource/SZIP/" +SRC_URI="ftp://ftp.hdfgroup.org/lib-external/${PN}/${PV}/src/${P}.tar.gz" LICENSE="szip" SLOT="0" @@ -15,14 +15,10 @@ KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~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 + dodoc RELEASE.txt HISTORY.txt + insinto /usr/share/doc/${PF}/ + emake -C examples clean || die + doins -r examples } |