Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/ogdi/
Date: Sun, 03 Jun 2018 02:59:18
Message-Id: 1527994717.f48ee2fcb865734a664954a9a5e58497eab44d37.bman@gentoo
1 commit: f48ee2fcb865734a664954a9a5e58497eab44d37
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 00:07:05 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 02:58:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f48ee2fc
7
8 sci-libs/ogdi: drop old EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 sci-libs/ogdi/Manifest | 1 -
13 sci-libs/ogdi/ogdi-3.1.5-r1.ebuild | 50 --------------------------------------
14 2 files changed, 51 deletions(-)
15
16 diff --git a/sci-libs/ogdi/Manifest b/sci-libs/ogdi/Manifest
17 index 03fca35e180..d2b94841f4a 100644
18 --- a/sci-libs/ogdi/Manifest
19 +++ b/sci-libs/ogdi/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST ogdi-3.1.5.tar.gz 913902 BLAKE2B ec60b620823b0ac77823b4c41f828d7edb8651d4ddfdb377c98030b0d58b723b7488d27fff80fc35f7b5040e13022bc8d54e266ec0e2ec2271d96a8902237ccc SHA512 fd77106a25b07bbaba23cab2e9e5298d7df62faf50c9ead72c4def683c4097717559b816a476ddfa16823f23d418a474ec49937b961ba06f606880f3338d6cfd
22 DIST ogdi-3.2.0.beta2.tar.gz 956839 BLAKE2B d0729d42f3224d9911bb09f8cf2f150204950739547bf8ed5349c8ed63e7ab7a4e17298fe8bbf45fc17f5781e86925ab35d8356d396ffe7f35a4cf20803fce04 SHA512 2159dfd010be9da63cf009beee7f6571cd13c4f08d1a69a5d945dd64878347b28455eb5376f184e2d91fa4a3bd409446ccbd706aa9000d3d7d2ac4b6e30ced93
23 DIST ogdi-3.2.0.tar.gz 976004 BLAKE2B 535f05b3145c49ce72adcd86cd9ded1c8d8d12e051feb4e1898d8ddabbff1cf27f609326ccdb3a1cbff523b277f99e9d8c3678d2ed565dd81e6c5d956ed2dcca SHA512 b29d52b733c15927d2c93df10632d9bf6288614b944c02a5e1a67f3f971263bcb07460b301fb5db389ed15fc5f38a1f3c0263c4b1441f2ea4809bb61b3e67ef0
24
25 diff --git a/sci-libs/ogdi/ogdi-3.1.5-r1.ebuild b/sci-libs/ogdi/ogdi-3.1.5-r1.ebuild
26 deleted file mode 100644
27 index 55b9b5f1325..00000000000
28 --- a/sci-libs/ogdi/ogdi-3.1.5-r1.ebuild
29 +++ /dev/null
30 @@ -1,50 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=0
35 -
36 -inherit toolchain-funcs eutils
37 -
38 -DESCRIPTION="Open Geographical Datastore Interface, a GIS support library"
39 -HOMEPAGE="http://ogdi.sourceforge.net/"
40 -SRC_URI="mirror://sourceforge/ogdi/${P}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS=""
45 -IUSE=""
46 -
47 -DEPEND="
48 - <sci-libs/proj-4.8.0
49 - sys-libs/zlib
50 - dev-libs/expat"
51 -RDEPEND="${DEPEND}"
52 -
53 -src_unpack() {
54 - unpack ${A}
55 - cd "${S}"
56 - epatch "${FILESDIR}"/${P}-fpic.patch
57 -}
58 -
59 -src_compile() {
60 - export TOPDIR="${S}"
61 - export TARGET=`uname`
62 - export CFG="release"
63 - export LD_LIBRARY_PATH=$TOPDIR/bin/${TARGET}
64 -
65 - econf --with-projlib="-L/usr/$(get_libdir) -lproj" \
66 - --with-zlib --with-expat
67 -
68 - # bug #299239
69 - emake -j1 || die "make failed"
70 -}
71 -
72 -src_install() {
73 - mv "${S}"/bin/Linux/*.so "${S}"/lib/Linux/. || die "lib move failed"
74 - dobin "${S}"/bin/Linux/*
75 - insinto /usr/include
76 - doins ogdi/include/ecs.h ogdi/include/ecs_util.h
77 - dolib.so lib/Linux/*.so
78 - dosym libogdi31.so /usr/$(get_libdir)/libogdi.so || die "symlink failed"
79 - dodoc ChangeLog NEWS README VERSION
80 -}