diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2020-11-22 21:11:46 -0500 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2020-11-22 21:13:42 -0500 |
commit | 75a6025f101ccd4c03120850213e9734d7551428 (patch) | |
tree | f3deeb251e418c2ee1fc66000441806c30299686 /sci-geosciences/osm2pgsql/osm2pgsql-1.3.0.ebuild | |
parent | sys-cluster/kube-scheduler: 1.18.12 bump (diff) | |
download | gentoo-75a6025f101ccd4c03120850213e9734d7551428.tar.gz gentoo-75a6025f101ccd4c03120850213e9734d7551428.tar.bz2 gentoo-75a6025f101ccd4c03120850213e9734d7551428.zip |
sci-geosciences/osm2pgsql: Bump to 1.3.0, fixes
Bug: https://bugs.gentoo.org/688110
Bug: https://bugs.gentoo.org/720916
Signed-off-by: Aaron W. Swenson <titanofold@gentoo.org>
Diffstat (limited to 'sci-geosciences/osm2pgsql/osm2pgsql-1.3.0.ebuild')
-rw-r--r-- | sci-geosciences/osm2pgsql/osm2pgsql-1.3.0.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sci-geosciences/osm2pgsql/osm2pgsql-1.3.0.ebuild b/sci-geosciences/osm2pgsql/osm2pgsql-1.3.0.ebuild new file mode 100644 index 000000000000..ded439c9e692 --- /dev/null +++ b/sci-geosciences/osm2pgsql/osm2pgsql-1.3.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Converts OSM planet.osm data to a PostgreSQL/PostGIS database" +HOMEPAGE="https://osm2pgsql.org/" +SRC_URI="https://github.com/openstreetmap/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+lua luajit" + +COMMON_DEPEND=" + app-arch/bzip2 + dev-db/postgresql:= + dev-libs/expat + sci-libs/proj:= + sys-libs/zlib + lua? ( dev-lang/lua:= ) + luajit? ( dev-lang/luajit:= ) +" +DEPEND="${COMMON_DEPEND} + dev-libs/boost +" +RDEPEND="${COMMON_DEPEND} + dev-db/postgis +" + +# Tries to connect to local postgres server and other shenanigans +RESTRICT="test" + +src_configure() { + local mycmakeargs=( + -DWITH_LUA=$(usex lua) + -DWITH_LUAJIT=$(usex luajit) + -DBUILD_TESTS=OFF + ) + cmake_src_configure +} |