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 30307138335 for ; Sun, 29 Dec 2019 00:20:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4E7BE0B0E; Sun, 29 Dec 2019 00:20:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 98A8EE0B0E for ; Sun, 29 Dec 2019 00:20:34 +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 91CCE34DCAC for ; Sun, 29 Dec 2019 00:20:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E50877 for ; Sun, 29 Dec 2019 00:20:29 +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: <1577578803.371ce54e28866752778d51471caabcd868c57172.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/ogdi/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/ogdi/ogdi-3.2.0.ebuild X-VCS-Directories: sci-libs/ogdi/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 371ce54e28866752778d51471caabcd868c57172 X-VCS-Branch: master Date: Sun, 29 Dec 2019 00:20:29 +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: 28bdac26-402e-4f1e-8633-129338251bb7 X-Archives-Hash: 74e559d2df9a34b0fc073fdb7f883032 commit: 371ce54e28866752778d51471caabcd868c57172 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Dec 28 23:49:54 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Dec 29 00:20:03 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=371ce54e sci-libs/ogdi: Drop 3.2.0 (r0) Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/ogdi/ogdi-3.2.0.ebuild | 74 ----------------------------------------- 1 file changed, 74 deletions(-) diff --git a/sci-libs/ogdi/ogdi-3.2.0.ebuild b/sci-libs/ogdi/ogdi-3.2.0.ebuild deleted file mode 100644 index 7f42ae15c1e..00000000000 --- a/sci-libs/ogdi/ogdi-3.2.0.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_P=${P/_/.} -inherit eutils toolchain-funcs - -DESCRIPTION="Open Geographical Datastore Interface, a GIS support library" -HOMEPAGE="http://ogdi.sourceforge.net/" -SRC_URI="mirror://sourceforge/ogdi/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux" -IUSE="static-libs" - -DEPEND=" - net-libs/libtirpc - dev-libs/expat - >=sci-libs/proj-4.9.0 - sys-libs/zlib -" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${MY_P} - -PATCHES=( - "${FILESDIR}"/${PN}-3.2.0_beta2-subdirs.patch - "${FILESDIR}"/${P}-acinclude.patch - "${FILESDIR}"/${P}-aclocal.patch - "${FILESDIR}"/${P}-endianess.patch - "${FILESDIR}"/${P}-fpic.patch - "${FILESDIR}"/${P}-ldflags.patch - "${FILESDIR}"/${P}-optimisation.patch - "${FILESDIR}"/${P}-rpc.patch - "${FILESDIR}"/${P}-tcl.patch -) - -src_prepare() { - default - rm -rf external - sed 's:O2:O9:g' -i configure || die -} - -src_configure() { - export TOPDIR="${S}" - export TARGET=$(uname) - export CFG="release" - export LD_LIBRARY_PATH=$TOPDIR/bin/${TARGET} - - econf \ - --with-projlib="-L${EPREFIX}/usr/$(get_libdir) -lproj" \ - --with-zlib --with-expat -} - -src_compile() { - # bug #299239 - emake -j1 \ - CC="$(tc-getCC)" \ - LD="$(tc-getCC)" \ - SHLIB_LD="$(tc-getCC)" -} - -src_install() { - mv "${S}"/bin/${TARGET}/*.so* "${S}"/lib/Linux/. || die "lib move failed" - dobin "${S}"/bin/${TARGET}/* - insinto /usr/include - doins ogdi/include/ecs.h ogdi/include/ecs_util.h - dolib.so lib/${TARGET}/lib* - use static-libs && dolib.a lib/${TARGET}/static/*.a -# dosym libogdi31.so /usr/$(get_libdir)/libogdi.so - dodoc ChangeLog NEWS README -}