From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4D8C3138334 for ; Fri, 24 May 2019 19:26:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C4B5E0894; Fri, 24 May 2019 19:26:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC3BFE0896 for ; Fri, 24 May 2019 19:26:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 94A6F344FA3 for ; Fri, 24 May 2019 19:26:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9EF05FA for ; Fri, 24 May 2019 19:26:06 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1558725945.dcc684c9450f0f43a78cab75ac4313253658b8bc.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libgeotiff/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/libgeotiff/libgeotiff-1.5.1.ebuild X-VCS-Directories: sci-libs/libgeotiff/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: dcc684c9450f0f43a78cab75ac4313253658b8bc X-VCS-Branch: master Date: Fri, 24 May 2019 19:26:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 43b633e3-0509-4d3c-91fe-c021cf6c581b X-Archives-Hash: 558a962441c3c38327c582b9c0b89519 commit: dcc684c9450f0f43a78cab75ac4313253658b8bc Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri May 24 18:43:28 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri May 24 19:25:45 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc684c9 sci-libs/libgeotiff: Drop 1.5.1 (r0) Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/libgeotiff/libgeotiff-1.5.1.ebuild | 64 ----------------------------- 1 file changed, 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 54b176ce753..00000000000 --- 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 -}