diff options
author | 2021-03-03 16:47:44 +0000 | |
---|---|---|
committer | 2021-03-03 16:47:44 +0000 | |
commit | 57886bda6e353c22d82fabe40a140b638484ce77 (patch) | |
tree | 469ef8d53e9d807686cc94ea12b103cf7d5f569f /dev-db/spatialite-tools/spatialite-tools-5.0.1-r1.ebuild | |
parent | sci-libs/coinor-couenne: add missing ipopt[lapack] USE dep (diff) | |
download | gentoo-57886bda6e353c22d82fabe40a140b638484ce77.tar.gz gentoo-57886bda6e353c22d82fabe40a140b638484ce77.tar.bz2 gentoo-57886bda6e353c22d82fabe40a140b638484ce77.zip |
dev-db/spatialite-tools: tighten + improve spatialite dep
Thanks-to: Ionen Wolkens <sudinave@gmail.com>
Closes: https://bugs.gentoo.org/774003
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db/spatialite-tools/spatialite-tools-5.0.1-r1.ebuild')
-rw-r--r-- | dev-db/spatialite-tools/spatialite-tools-5.0.1-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-db/spatialite-tools/spatialite-tools-5.0.1-r1.ebuild b/dev-db/spatialite-tools/spatialite-tools-5.0.1-r1.ebuild new file mode 100644 index 000000000000..c94599641d67 --- /dev/null +++ b/dev-db/spatialite-tools/spatialite-tools-5.0.1-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A collection of CLI tools supporting SpatiaLite" +HOMEPAGE="https://www.gaia-gis.it/spatialite" +SRC_URI="https://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="readline" + +RDEPEND=" + dev-db/sqlite:3[extensions(+)] + >=dev-db/spatialite-5.0.1[iconv,geos,xls] + dev-libs/expat + dev-libs/libxml2 + >=sci-geosciences/readosm-1.1.0 + sci-libs/geos + sci-libs/proj + readline? ( + sys-libs/ncurses:= + sys-libs/readline:= + ) +" +DEPEND="${RDEPEND}" + +src_configure() { + econf \ + $(use_enable readline) +} |