forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-db/spatialite-tools: bump to 4.3.0
Package-Manager: portage-2.2.28
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST spatialite-tools-3.1.0.tar.gz 439019 SHA256 7e12a3b23ad5163257b7c8585091ead1046e8d5b56ac3130de42490693b5e160 SHA512 27f725fefcbc75894d6d14e81093deaa95b6a1cce7e15eb8fc3130ed7580f664bbb8ffd7e95f4de94b38cc8548cc82f2ed830fa8bcf3173e460a9b0666e9e0cc WHIRLPOOL 01a432a872c7ddb801edee969c3a6467cddacdb014690e669c75a1238c753f3f2d825a8e2f7370410431adc471ced0bb949291d868befa2d8d4947d08b39609e | ||
DIST spatialite-tools-4.3.0.tar.gz 540811 SHA256 f739859bc04f38735591be2f75009b98a2359033675ae310dffc3114a17ccf89 SHA512 e1de27c1c65ff2ff0b08583113517bea74edf33fff59ad6e9c77492ea3ae87d9c0f17d7670ee6602b32eea73ad3678bb5410ef2c6fac6e213bf2e341a907db88 WHIRLPOOL 24414efc61454bdde4fde4120503b9568821af20ced44cfae88696e099a7778f4311d556da7c48d6c13785eca9caa436dcd2d0666e371b12470b74b7fe77dbcc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit multilib | ||
|
||
DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite" | ||
HOMEPAGE="http://www.gaia-gis.it/spatialite" | ||
SRC_URI="http://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz" | ||
|
||
LICENSE="MPL-1.1" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="readline" | ||
|
||
RDEPEND=">=dev-db/spatialite-3.0.1[geos,xls] | ||
dev-libs/expat | ||
>=sci-libs/geos-3.3 | ||
sci-libs/proj | ||
sci-geosciences/readosm | ||
readline? ( | ||
sys-libs/ncurses:= | ||
sys-libs/readline:= | ||
) | ||
" | ||
DEPEND="${RDEPEND}" | ||
|
||
src_configure() { | ||
econf \ | ||
$(use_enable readline) | ||
} |