69c2b843a2
Release 0.94.0, a new stable branch This is the last release which will support old-style multipolygons. Upgrading to this version requires a reimport for the slim table changes. Major changes since 0.92.0 are - Coordinates are now stored unprojected in slim tables, and an osmium dense file array is used for flat nodes. This dense file array can be read by other libosmium-based programs. - Libosmium is used for geometry building instead of GEOS This offers speed increases, improves code, and avoids relying on a large library for a small portion of its functionality. Other changes are - Tile expiry has been rewritten, fixing bugs, including one that dropped large portions of expiry lists. - Node tags are no longer stored in slim tables, consistent with flat-nodes. THis reduces space required for --slim imports without --flat-nodes. - A default database name of gis is no longer assumed. An explicit -d option is recommended if compatibility with 0.92 and earlier.
30 lines
883 B
Makefile
30 lines
883 B
Makefile
# $NetBSD: Makefile,v 1.11 2017/10/08 12:28:55 wiedi Exp $
|
|
|
|
DISTNAME= osm2pgsql-0.94.0
|
|
CATEGORIES= geography
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=openstreetmap/}
|
|
GITHUB_TAG= ${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= wiedi@frubar.net
|
|
HOMEPAGE= https://github.com/openstreetmap/osm2pgsql/
|
|
COMMENT= OpenStreetMap data to PostgreSQL converter
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
WRKSRC= ${WRKDIR}/osm2pgsql-${PKGVERSION_NOREV}
|
|
USE_CMAKE= yes
|
|
USE_LANGUAGES= c c++
|
|
|
|
CONFIGURE_DIRS= ${WRKDIR}/build
|
|
CMAKE_ARG_PATH= ${WRKSRC}
|
|
|
|
post-extract:
|
|
${RUN} mkdir -p ${WRKDIR}/build
|
|
|
|
.include "../../geography/proj/buildlink3.mk"
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../devel/boost-libs/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../lang/lua/buildlink3.mk"
|
|
.include "../../mk/pgsql.buildlink3.mk"
|
|
.include "../../textproc/expat/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|