diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-07-23 16:50:26 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-07-23 16:51:40 +0200 |
commit | 558ce1a0022fa9ea79bd036a926c820c33617841 (patch) | |
tree | a490f5f86666e7b3cd7c02aed2a38e161512845d /sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild | |
parent | sys-cluster/swift: 2.22.0 bump (python3) (diff) | |
download | gentoo-558ce1a0022fa9ea79bd036a926c820c33617841.tar.gz gentoo-558ce1a0022fa9ea79bd036a926c820c33617841.tar.bz2 gentoo-558ce1a0022fa9ea79bd036a926c820c33617841.zip |
sci-libs/libgeotiff: Drop 1.4.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
Diffstat (limited to 'sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild')
-rw-r--r-- | sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild b/sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild deleted file mode 100644 index c7aebcf4ce30..000000000000 --- a/sci-libs/libgeotiff/libgeotiff-1.4.0.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit autotools eutils - -MY_P=${P/_rc/RC} - -DESCRIPTION="Library for reading TIFF files with embedded tags for geographic 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 ~arm arm64 ppc ppc64 ~sparc 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:0 - sci-libs/proj - sys-libs/zlib" - -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -S=${WORKDIR}/${MY_P/RC*/} - -DOCS=( README ChangeLog ) - -src_prepare() { - epatch_user - sed -i \ - -e "s:-O3::g" \ - configure.ac || die - eautoreconf -} - -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/* - prune_libtool_files -} - -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 -} |