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 B7FE2139694 for ; Sun, 19 Feb 2017 21:15:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC81CE0DD5; Sun, 19 Feb 2017 21:15:26 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 93DD0E0DD1 for ; Sun, 19 Feb 2017 21:15:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D34C3340E75 for ; Sun, 19 Feb 2017 21:15:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49DBB4D94 for ; Sun, 19 Feb 2017 21:15:24 +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: <1487538906.8fca3b1b2453bd0bb86e14449b74ffff3e867ea4.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/spatialite/spatialite-4.3.0-r1.ebuild X-VCS-Directories: dev-db/spatialite/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8fca3b1b2453bd0bb86e14449b74ffff3e867ea4 X-VCS-Branch: master Date: Sun, 19 Feb 2017 21:15:24 +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-Archives-Salt: 935df97a-35e9-47f6-a05a-1d7025938174 X-Archives-Hash: ab4eb5a132edc3258ee0f10cc6b5cf6b commit: 8fca3b1b2453bd0bb86e14449b74ffff3e867ea4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 19 18:10:38 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 19 21:15:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fca3b1b dev-db/spatialite: Drop unused eclasses, add USE=xml, fix DEPENDs Removing prune_libtool_files. Package-Manager: portage-2.3.3 dev-db/spatialite/spatialite-4.3.0-r1.ebuild | 50 ++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/dev-db/spatialite/spatialite-4.3.0-r1.ebuild b/dev-db/spatialite/spatialite-4.3.0-r1.ebuild new file mode 100644 index 0000000000..9bba60bc04 --- /dev/null +++ b/dev-db/spatialite/spatialite-4.3.0-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +MY_PN="lib${PN}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite" +HOMEPAGE="https://www.gaia-gis.it/gaia-sins/" +SRC_URI="https://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz" + +LICENSE="MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="+geos iconv +proj test +xls +xml" + +RDEPEND=" + >=dev-db/sqlite-3.7.5:3[extensions(+)] + sys-libs/zlib + geos? ( >=sci-libs/geos-3.4 ) + proj? ( sci-libs/proj ) + xls? ( dev-libs/freexl ) + xml? ( dev-libs/libxml2 ) +" +DEPEND="${RDEPEND}" + +REQUIRED_USE="test? ( iconv )" + +S="${WORKDIR}/${MY_P}" + +src_configure() { + econf \ + --disable-examples \ + --disable-static \ + --enable-epsg \ + --enable-geocallbacks \ + $(use_enable geos) \ + $(use_enable geos geosadvanced) \ + $(use_enable iconv) \ + $(use_enable proj) \ + $(use_enable xls freexl) \ + $(use_enable xml libxml2) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}