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-99999999.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-99999999.ebuild')
-rw-r--r-- | sci-geosciences/osm2pgsql/osm2pgsql-99999999.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sci-geosciences/osm2pgsql/osm2pgsql-99999999.ebuild b/sci-geosciences/osm2pgsql/osm2pgsql-99999999.ebuild index 78b4534c993e..87037136ac87 100644 --- a/sci-geosciences/osm2pgsql/osm2pgsql-99999999.ebuild +++ b/sci-geosciences/osm2pgsql/osm2pgsql-99999999.ebuild @@ -3,19 +3,18 @@ EAPI=7 -inherit cmake flag-o-matic git-r3 +inherit cmake git-r3 EGIT_REPO_URI="https://github.com/openstreetmap/${PN}.git" DESCRIPTION="Converts OSM planet.osm data to a PostgreSQL/PostGIS database" -HOMEPAGE="https://wiki.openstreetmap.org/wiki/Osm2pgsql - https://github.com/openstreetmap/osm2pgsql" +HOMEPAGE="https://osm2pgsql.org/" SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="+lua" +IUSE="+lua luajit" COMMON_DEPEND=" app-arch/bzip2 @@ -24,6 +23,7 @@ COMMON_DEPEND=" sci-libs/proj:= sys-libs/zlib lua? ( dev-lang/lua:= ) + luajit? ( dev-lang/luajit:= ) " DEPEND="${COMMON_DEPEND} dev-libs/boost @@ -36,9 +36,9 @@ RDEPEND="${COMMON_DEPEND} RESTRICT="test" src_configure() { - append-cppflags -DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1 local mycmakeargs=( -DWITH_LUA=$(usex lua) + -DWITH_LUAJIT=$(usex luajit) -DBUILD_TESTS=OFF ) cmake_src_configure |