summaryrefslogtreecommitdiff
path: root/dev-db/spatialite/spatialite-4.1.1.ebuild
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2017-02-19 20:29:21 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2017-02-19 22:15:07 +0100
commit115f53016f37b31e7885cd25d331331326f7873c (patch)
tree59c4a01b79c009b69fae95b2bdcec9e3d00bf9d4 /dev-db/spatialite/spatialite-4.1.1.ebuild
parent408973060a7ef0aec09945cb9255c2b157b1327e (diff)
downloadgentoo-115f53016f37b31e7885cd25d331331326f7873c.tar.gz
gentoo-115f53016f37b31e7885cd25d331331326f7873c.tar.bz2
gentoo-115f53016f37b31e7885cd25d331331326f7873c.zip
dev-db/spatialite: Drop old
Package-Manager: portage-2.3.3
Diffstat (limited to 'dev-db/spatialite/spatialite-4.1.1.ebuild')
-rw-r--r--dev-db/spatialite/spatialite-4.1.1.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-db/spatialite/spatialite-4.1.1.ebuild b/dev-db/spatialite/spatialite-4.1.1.ebuild
deleted file mode 100644
index 8e77a11fbc11..000000000000
--- a/dev-db/spatialite/spatialite-4.1.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PN="lib${PN}"
-MY_P="${MY_PN}-${PV}"
-
-inherit multilib eutils
-
-DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
-HOMEPAGE="http://www.gaia-gis.it/gaia-sins/"
-SRC_URI="http://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 +xls"
-
-RDEPEND=">=dev-db/sqlite-3.7.5:3[extensions(+)]
- geos? ( >=sci-libs/geos-3.3 )
- proj? ( sci-libs/proj )
- xls? ( dev-libs/freexl )
-"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-validator.patch"
-}
-
-src_configure() {
- econf \
- --disable-static \
- --enable-geocallbacks \
- --enable-epsg \
- --disable-examples \
- $(use_enable geos) \
- $(use_enable geos geosadvanced) \
- $(use_enable iconv) \
- $(use_enable proj) \
- $(use_enable xls freexl)
-}
-
-src_install() {
- default
-
- find "${ED}" -name '*.la' -exec rm -f {} +
-}