diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-05-24 20:43:28 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-05-24 21:25:45 +0200 |
commit | dcc684c9450f0f43a78cab75ac4313253658b8bc (patch) | |
tree | 4f95bf580abb365aedf08881b57c0770509cf54f /sci-libs/libgeotiff | |
parent | sci-libs/libgeotiff: EAPI-7 bump, missing subslot, fix >=proj-6 DEPEND (diff) | |
download | gentoo-dcc684c9450f0f43a78cab75ac4313253658b8bc.tar.gz gentoo-dcc684c9450f0f43a78cab75ac4313253658b8bc.tar.bz2 gentoo-dcc684c9450f0f43a78cab75ac4313253658b8bc.zip |
sci-libs/libgeotiff: Drop 1.5.1 (r0)
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-libs/libgeotiff')
-rw-r--r-- | sci-libs/libgeotiff/libgeotiff-1.5.1.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/sci-libs/libgeotiff/libgeotiff-1.5.1.ebuild b/sci-libs/libgeotiff/libgeotiff-1.5.1.ebuild deleted file mode 100644 index 54b176ce7533..000000000000 --- a/sci-libs/libgeotiff/libgeotiff-1.5.1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -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 ~ia64 ~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:0 - sci-libs/proj - sys-libs/zlib" - -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -S=${WORKDIR}/${MY_P/RC*/} - -DOCS=( README ChangeLog ) - -src_prepare() { - default - sed -i \ - -e "s:-O3::g" \ - configure.ac || die - eautoreconf -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - --enable-debug=$(usex debug) \ - --with-jpeg="${EPREFIX}"/usr/ \ - --with-zip="${EPREFIX}"/usr/ - -} -src_compile() { - default - - if use doc; then - mkdir -p docs/api || die - cp "${FILESDIR}"/Doxyfile Doxyfile || die - doxygen -u Doxyfile || die "updating doxygen config failed" - doxygen Doxyfile || die "docs generation failed" - fi -} - -src_install() { - default - - use doc && dohtml docs/api/* - find "${D}" -name '*.la' -delete || die -} |