blob: 66a8ca4dc54833f6d91afaea553a7f26f249bc1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# 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
}
|