svn commit: r379799 - in head/astro: . readosm
Dmitry Marakasov
amdmi3 at FreeBSD.org
Tue Feb 24 14:04:58 UTC 2015
Author: amdmi3
Date: Tue Feb 24 14:04:55 2015
New Revision: 379799
URL: https://svnweb.freebsd.org/changeset/ports/379799
QAT: https://qat.redports.org/buildarchive/r379799/
Log:
ReadOSM is an open source library to extract valid data from within an Open
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 at tuxfamily.org
Added:
head/astro/readosm/
head/astro/readosm/Makefile (contents, props changed)
head/astro/readosm/distinfo (contents, props changed)
head/astro/readosm/pkg-descr (contents, props changed)
head/astro/readosm/pkg-plist (contents, props changed)
Modified:
head/astro/Makefile
Modified: head/astro/Makefile
==============================================================================
--- head/astro/Makefile Tue Feb 24 14:04:51 2015 (r379798)
+++ head/astro/Makefile Tue Feb 24 14:04:55 2015 (r379799)
@@ -90,6 +90,7 @@
SUBDIR += pyephem
SUBDIR += pyweather
SUBDIR += qlandkartegt
+ SUBDIR += readosm
SUBDIR += rmap
SUBDIR += roadmap
SUBDIR += roadnav
Added: head/astro/readosm/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/astro/readosm/Makefile Tue Feb 24 14:04:55 2015 (r379799)
@@ -0,0 +1,26 @@
+# Created by: Loïc BARTOLETTI <coder at 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 at 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>
Added: head/astro/readosm/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/astro/readosm/distinfo Tue Feb 24 14:04:55 2015 (r379799)
@@ -0,0 +1,2 @@
+SHA256 (readosm-1.0.0d.tar.gz) = f056d26489610699802a2a44e315750383af303cf7dcdc580c52bb5ed4d136e3
+SIZE (readosm-1.0.0d.tar.gz) = 1095751
Added: head/astro/readosm/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/astro/readosm/pkg-descr Tue Feb 24 14:04:55 2015 (r379799)
@@ -0,0 +1,10 @@
+ReadOSM is an open source library to extract valid data from within an Open
+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
Added: head/astro/readosm/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/astro/readosm/pkg-plist Tue Feb 24 14:04:55 2015 (r379799)
@@ -0,0 +1,6 @@
+include/readosm.h
+lib/libreadosm.a
+lib/libreadosm.so
+lib/libreadosm.so.1
+lib/libreadosm.so.1.0.0
+libdata/pkgconfig/readosm.pc
More information about the svn-ports-all
mailing list