blob: 8812109b3fb4e2c4ebe914c191f7f743b82b3cfd (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/spatialite/spatialite-3.0.1.ebuild,v 1.3 2012/05/25 18:51:37 scarabeus Exp $
EAPI=4
MY_PN="lib${PN}"
MY_P="${MY_PN}-${PV}"
inherit multilib
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 ~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_configure() {
econf \
--disable-static \
--enable-geocallbacks \
--enable-epsg \
$(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 {} +
}
|