f317303f52
Street Map input file. Such OSM files come in two different formats: * files identified by the .osm suffix simply are plain XML files. * files identified by the .osm.pbf suffix does containt the same identical data, but adopting the Google's Protocol Buffer serialization format and thus requiring much less storage space. WWW: https://www.gaia-gis.it/fossil/readosm/index PR: 197262 Submitted by: coder@tuxfamily.org
26 lines
649 B
Makefile
26 lines
649 B
Makefile
# Created by: Loïc BARTOLETTI <coder@tuxfamily.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= readosm
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= astro geography devel
|
|
MASTER_SITES= http://www.gaia-gis.it/gaia-sins/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}d
|
|
|
|
MAINTAINER= coder@tuxfamily.org
|
|
COMMENT= Extract valid data from within an Open Street Map input file
|
|
|
|
LICENSE= MPL LGPL21 GPLv2
|
|
LICENSE_COMB= dual
|
|
|
|
LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}d
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake libtool pkgconfig pathfix
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB}
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.mk>
|