summaryrefslogtreecommitdiff
path: root/dev-db/spatialite
diff options
context:
space:
mode:
authorAlfred Wingate <parona@protonmail.com>2025-05-03 16:55:17 +0300
committerSam James <sam@gentoo.org>2025-06-09 04:09:43 +0100
commit47df555c1c2d4474674ac27a4951a1077dab697a (patch)
tree8b41009f9a92375ae5074c03869fc2c9427d6bdf /dev-db/spatialite
parent09ac30bd60274f60518d88d9e51b39a532cb5557 (diff)
downloadgentoo-47df555c1c2d4474674ac27a4951a1077dab697a.tar.gz
gentoo-47df555c1c2d4474674ac27a4951a1077dab697a.tar.bz2
gentoo-47df555c1c2d4474674ac27a4951a1077dab697a.zip
dev-db/spatialite: drop 5.1.0-r1
Signed-off-by: Alfred Wingate <parona@protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/41919 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db/spatialite')
-rw-r--r--dev-db/spatialite/spatialite-5.1.0-r1.ebuild62
1 files changed, 0 insertions, 62 deletions
diff --git a/dev-db/spatialite/spatialite-5.1.0-r1.ebuild b/dev-db/spatialite/spatialite-5.1.0-r1.ebuild
deleted file mode 100644
index b0f3024366a8..000000000000
--- a/dev-db/spatialite/spatialite-5.1.0-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit libtool
-
-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"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86"
-IUSE="+geos iconv +proj rttopo test +xls"
-# Further poking required
-RESTRICT="test"
-
-RDEPEND="
- >=dev-db/sqlite-3.7.5:3[extensions(+)]
- dev-libs/libxml2
- sys-libs/zlib[minizip]
- geos? ( >=sci-libs/geos-3.11.0 )
- proj? ( sci-libs/proj:= )
- xls? ( >=dev-libs/freexl-2.0.0[xml(+)] )
- rttopo? ( sci-geosciences/librttopo )
-"
-DEPEND="${RDEPEND}"
-
-REQUIRED_USE="test? ( iconv )"
-
-src_prepare() {
- default
- elibtoolize
-}
-
-src_configure() {
- # 1) gcp disabled for now to preserve MPL licence
- econf \
- --disable-gcp \
- --disable-examples \
- --disable-static \
- --enable-epsg \
- --enable-libxml2 \
- $(use_enable rttopo) \
- $(use_enable geos) \
- $(use_enable geos geosadvanced) \
- $(use_enable geos geos3100) \
- $(use_enable geos geos3110) \
- $(use_enable iconv) \
- $(use_enable proj) \
- $(use_enable xls freexl)
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}