mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
5425357367
- Use USES=libtool - Fix USE_PYTHON - Convert to new options helper - Bump PORTREVISION for package change - Do not hard-coded PORTVERSION in PLIST - Bump PORTREVISION for graphics/geos shlib change
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= osm2pgsql
|
|
PORTVERSION= 0.84.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= converters geography
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Convert OSM XML data to PostgreSQL database
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libproj.so:${PORTSDIR}/graphics/proj \
|
|
libgeos.so:${PORTSDIR}/graphics/geos \
|
|
libprotobuf-c.so:${PORTSDIR}/devel/protobuf-c
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= openstreetmap
|
|
GH_COMMIT= 237b125
|
|
|
|
USES= gmake libtool lua pgsql tar:bzip2
|
|
USE_AUTOTOOLS= autoconf automake aclocal autoheader libtoolize
|
|
AUTOMAKE_ARGS= -a -c -f
|
|
CONFIGURE_ARGS= LUA="${LUA_CMD}" \
|
|
LUA_INCLUDE="-I${LUA_INCDIR}" \
|
|
LUA_LIB="-L${LUA_LIBDIR} -llua-${LUA_VER}"
|
|
USE_GNOME= libxml2
|
|
|
|
PLIST_FILES= bin/nodecachefilereader \
|
|
bin/osm2pgsql \
|
|
man/man1/nodecachefilereader.1.gz \
|
|
man/man1/osm2pgsql.1.gz
|
|
|
|
PORTDOCS= ChangeLog README AUTHORS TODO
|
|
PORTDATA= *
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/m4/*.m4
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|