diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-01-06 14:35:20 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-01-06 14:35:20 +0000 |
commit | 55633cf29cff124232fd4ee93e87085f012dd973 (patch) | |
tree | 2ca33b7e2ab14b81a32d5034b7de2f2262aea9cb /sci-libs/libgeotiff | |
parent | Version bump. (diff) | |
download | gentoo-2-55633cf29cff124232fd4ee93e87085f012dd973.tar.gz gentoo-2-55633cf29cff124232fd4ee93e87085f012dd973.tar.bz2 gentoo-2-55633cf29cff124232fd4ee93e87085f012dd973.zip |
sci-libs/libgeotiff: Drop old; punt base.eclass
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs/libgeotiff')
-rw-r--r-- | sci-libs/libgeotiff/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild | 52 | ||||
-rw-r--r-- | sci-libs/libgeotiff/libgeotiff-1.3.0.ebuild | 65 | ||||
-rw-r--r-- | sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild | 13 | ||||
-rw-r--r-- | sci-libs/libgeotiff/metadata.xml | 2 |
5 files changed, 14 insertions, 126 deletions
diff --git a/sci-libs/libgeotiff/ChangeLog b/sci-libs/libgeotiff/ChangeLog index 8ca7d591abdf..815b56d297c5 100644 --- a/sci-libs/libgeotiff/ChangeLog +++ b/sci-libs/libgeotiff/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/libgeotiff -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v 1.44 2012/10/07 09:09:07 pacho Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v 1.45 2014/01/06 14:35:20 jlec Exp $ + + 06 Jan 2014; Justin Lecher <jlec@gentoo.org> -libgeotiff-1.2.4.ebuild, + -libgeotiff-1.3.0.ebuild, libgeotiff-1.4.0.ebuild, metadata.xml: + Drop old; punt base.eclass 07 Oct 2012; Pacho Ramos <pacho@gentoo.org> metadata.xml: Drop maintainer due retirement, #24135. diff --git a/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild b/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild deleted file mode 100644 index 7281f3c8e9b0..000000000000 --- a/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild,v 1.13 2012/07/29 16:58:17 armin76 Exp $ - -inherit autotools eutils flag-o-matic - -DESCRIPTION="Library for reading TIFF files with embedded tags for geographic (cartographic) information" -HOMEPAGE="http://www.remotesensing.org/geotiff/geotiff.html" -SRC_URI="ftp://ftp.remotesensing.org/pub/geotiff/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~mips ppc ppc64 x86" -IUSE="doc python" - -RDEPEND=">=media-libs/tiff-3.7 - virtual/jpeg - sci-libs/proj" - -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-soname.patch - append-ldflags -Wl,-O0 - eautoconf -} - -src_compile() { - econf - emake -j1 || die "emake failed" - - if use doc; then - emake dox || die "emake dox failed" - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - dobin bin/makegeo || die "dobin makegeo failed" - - if use python; then - dobin csv/*.py || die "dobin python failed" - fi - - dodoc README - newdoc csv/README README.csv - use doc && dohtml docs/api/* -} diff --git a/sci-libs/libgeotiff/libgeotiff-1.3.0.ebuild b/sci-libs/libgeotiff/libgeotiff-1.3.0.ebuild deleted file mode 100644 index 127a3bd72c69..000000000000 --- a/sci-libs/libgeotiff/libgeotiff-1.3.0.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.3.0.ebuild,v 1.5 2012/07/29 16:58:17 armin76 Exp $ - -EAPI=4 -inherit base - -MY_P=${P/_rc/RC} - -DESCRIPTION="Library for reading TIFF files with embedded tags for geographic (cartographic) information" -HOMEPAGE="http://geotiff.osgeo.org/" -SRC_URI="http://download.osgeo.org/geotiff/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="debug doc static-libs" - -RDEPEND=" - virtual/jpeg - >=media-libs/tiff-3.9.1 - sci-libs/proj - sys-libs/zlib" - -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -S=${WORKDIR}/${MY_P/RC*/} - -DOCS=( README ChangeLog ) - -src_configure() { - econf \ - $(use_enable static-libs static) \ - --enable-debug=$(use debug && echo yes || echo no) \ - --with-jpeg="${EPREFIX}"/usr/ \ - --with-zip="${EPREFIX}"/usr/ - -} -src_compile() { - default - - if use doc; then - mkdir -p docs/api - cp "${FILESDIR}"/Doxyfile Doxyfile - doxygen -u Doxyfile || die "updating doxygen config failed" - doxygen Doxyfile || die "docs generation failed" - fi -} - -src_install() { - default - - use doc && dohtml docs/api/* - find "${ED}" -name '*.la' -exec rm -f {} + -} - -pkg_postinst() { - echo - ewarn "You should rebuild any packages built against ${PN} by running:" - ewarn "# revdep-rebuild" - ewarn "or using preserved-rebuild features of portage-2.2:" - ewarn "# emerge @preserved-rebuild" - echo -} diff --git a/sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild b/sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild index c5b595eddf08..64952bd6f40e 100644 --- a/sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild +++ b/sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild @@ -1,9 +1,10 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild,v 1.7 2012/07/29 16:58:17 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild,v 1.8 2014/01/06 14:35:20 jlec Exp $ EAPI=4 -inherit base autotools + +inherit autotools eutils MY_P=${P/_rc/RC} @@ -18,7 +19,7 @@ IUSE="debug doc static-libs" RDEPEND=" virtual/jpeg - >=media-libs/tiff-3.9.1 + >=media-libs/tiff-3.9.1:0 sci-libs/proj sys-libs/zlib" @@ -30,7 +31,7 @@ S=${WORKDIR}/${MY_P/RC*/} DOCS=( README ChangeLog ) src_prepare() { - base_src_prepare + epatch_user sed -i \ -e "s:-O3::g" \ configure.ac || die @@ -60,7 +61,7 @@ src_install() { default use doc && dohtml docs/api/* - find "${ED}" -name '*.la' -exec rm -f {} + + prune_libtool_files } pkg_postinst() { diff --git a/sci-libs/libgeotiff/metadata.xml b/sci-libs/libgeotiff/metadata.xml index 3190fbf9c377..5f27678c1441 100644 --- a/sci-libs/libgeotiff/metadata.xml +++ b/sci-libs/libgeotiff/metadata.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <herd>sci-geosciences</herd> + <herd>sci-geosciences</herd> </pkgmetadata> |