diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-06-02 20:07:05 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-06-02 22:58:37 -0400 |
commit | f48ee2fcb865734a664954a9a5e58497eab44d37 (patch) | |
tree | 0185b45fbea8d1eb0c540134df5fb122980f018b /sci-libs | |
parent | sci-mathematics/calc: drop old EAPI (diff) | |
download | gentoo-f48ee2fcb865734a664954a9a5e58497eab44d37.tar.gz gentoo-f48ee2fcb865734a664954a9a5e58497eab44d37.tar.bz2 gentoo-f48ee2fcb865734a664954a9a5e58497eab44d37.zip |
sci-libs/ogdi: drop old EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/ogdi/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/ogdi/ogdi-3.1.5-r1.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/sci-libs/ogdi/Manifest b/sci-libs/ogdi/Manifest index 03fca35e1805..d2b94841f4a7 100644 --- a/sci-libs/ogdi/Manifest +++ b/sci-libs/ogdi/Manifest @@ -1,3 +1,2 @@ -DIST ogdi-3.1.5.tar.gz 913902 BLAKE2B ec60b620823b0ac77823b4c41f828d7edb8651d4ddfdb377c98030b0d58b723b7488d27fff80fc35f7b5040e13022bc8d54e266ec0e2ec2271d96a8902237ccc SHA512 fd77106a25b07bbaba23cab2e9e5298d7df62faf50c9ead72c4def683c4097717559b816a476ddfa16823f23d418a474ec49937b961ba06f606880f3338d6cfd DIST ogdi-3.2.0.beta2.tar.gz 956839 BLAKE2B d0729d42f3224d9911bb09f8cf2f150204950739547bf8ed5349c8ed63e7ab7a4e17298fe8bbf45fc17f5781e86925ab35d8356d396ffe7f35a4cf20803fce04 SHA512 2159dfd010be9da63cf009beee7f6571cd13c4f08d1a69a5d945dd64878347b28455eb5376f184e2d91fa4a3bd409446ccbd706aa9000d3d7d2ac4b6e30ced93 DIST ogdi-3.2.0.tar.gz 976004 BLAKE2B 535f05b3145c49ce72adcd86cd9ded1c8d8d12e051feb4e1898d8ddabbff1cf27f609326ccdb3a1cbff523b277f99e9d8c3678d2ed565dd81e6c5d956ed2dcca SHA512 b29d52b733c15927d2c93df10632d9bf6288614b944c02a5e1a67f3f971263bcb07460b301fb5db389ed15fc5f38a1f3c0263c4b1441f2ea4809bb61b3e67ef0 diff --git a/sci-libs/ogdi/ogdi-3.1.5-r1.ebuild b/sci-libs/ogdi/ogdi-3.1.5-r1.ebuild deleted file mode 100644 index 55b9b5f1325b..000000000000 --- a/sci-libs/ogdi/ogdi-3.1.5-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit toolchain-funcs eutils - -DESCRIPTION="Open Geographical Datastore Interface, a GIS support library" -HOMEPAGE="http://ogdi.sourceforge.net/" -SRC_URI="mirror://sourceforge/ogdi/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="" - -DEPEND=" - <sci-libs/proj-4.8.0 - sys-libs/zlib - dev-libs/expat" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-fpic.patch -} - -src_compile() { - export TOPDIR="${S}" - export TARGET=`uname` - export CFG="release" - export LD_LIBRARY_PATH=$TOPDIR/bin/${TARGET} - - econf --with-projlib="-L/usr/$(get_libdir) -lproj" \ - --with-zlib --with-expat - - # bug #299239 - emake -j1 || die "make failed" -} - -src_install() { - mv "${S}"/bin/Linux/*.so "${S}"/lib/Linux/. || die "lib move failed" - dobin "${S}"/bin/Linux/* - insinto /usr/include - doins ogdi/include/ecs.h ogdi/include/ecs_util.h - dolib.so lib/Linux/*.so - dosym libogdi31.so /usr/$(get_libdir)/libogdi.so || die "symlink failed" - dodoc ChangeLog NEWS README VERSION -} |