Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libgeotiff/
Date: Fri, 24 May 2019 19:26:12
Message-Id: 1558725945.dcc684c9450f0f43a78cab75ac4313253658b8bc.asturm@gentoo
1 commit: dcc684c9450f0f43a78cab75ac4313253658b8bc
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 24 18:43:28 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri May 24 19:25:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc684c9
7
8 sci-libs/libgeotiff: Drop 1.5.1 (r0)
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sci-libs/libgeotiff/libgeotiff-1.5.1.ebuild | 64 -----------------------------
14 1 file changed, 64 deletions(-)
15
16 diff --git a/sci-libs/libgeotiff/libgeotiff-1.5.1.ebuild b/sci-libs/libgeotiff/libgeotiff-1.5.1.ebuild
17 deleted file mode 100644
18 index 54b176ce753..00000000000
19 --- a/sci-libs/libgeotiff/libgeotiff-1.5.1.ebuild
20 +++ /dev/null
21 @@ -1,64 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit autotools
28 -
29 -MY_P=${P/_rc/RC}
30 -
31 -DESCRIPTION="Library for reading TIFF files with embedded tags for geographic information"
32 -HOMEPAGE="http://geotiff.osgeo.org/"
33 -SRC_URI="http://download.osgeo.org/geotiff/${PN}/${MY_P}.tar.gz"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
38 -IUSE="debug doc static-libs"
39 -
40 -RDEPEND="
41 - virtual/jpeg:=
42 - >=media-libs/tiff-3.9.1:0
43 - sci-libs/proj
44 - sys-libs/zlib"
45 -
46 -DEPEND="${RDEPEND}
47 - doc? ( app-doc/doxygen )"
48 -
49 -S=${WORKDIR}/${MY_P/RC*/}
50 -
51 -DOCS=( README ChangeLog )
52 -
53 -src_prepare() {
54 - default
55 - sed -i \
56 - -e "s:-O3::g" \
57 - configure.ac || die
58 - eautoreconf
59 -}
60 -
61 -src_configure() {
62 - econf \
63 - $(use_enable static-libs static) \
64 - --enable-debug=$(usex debug) \
65 - --with-jpeg="${EPREFIX}"/usr/ \
66 - --with-zip="${EPREFIX}"/usr/
67 -
68 -}
69 -src_compile() {
70 - default
71 -
72 - if use doc; then
73 - mkdir -p docs/api || die
74 - cp "${FILESDIR}"/Doxyfile Doxyfile || die
75 - doxygen -u Doxyfile || die "updating doxygen config failed"
76 - doxygen Doxyfile || die "docs generation failed"
77 - fi
78 -}
79 -
80 -src_install() {
81 - default
82 -
83 - use doc && dohtml docs/api/*
84 - find "${D}" -name '*.la' -delete || die
85 -}