Date: Fri, 23 Oct 2020 16:24:33 +0000 (UTC) From: =?UTF-8?Q?Lo=c3=afc_Bartoletti?= <lbartoletti@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r553110 - in head/devel: . librttopo Message-ID: <202010231624.09NGOXTS098185@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lbartoletti Date: Fri Oct 23 16:24:33 2020 New Revision: 553110 URL: https://svnweb.freebsd.org/changeset/ports/553110 Log: [NEW PORT] devel/librttopo: RT Topology Library exposes an API to create and manage standard (ISO 13249 aka SQL/MM) topologies The RT Topology Library exposes an API to create and manage standard (ISO 13249 aka SQL/MM) topologies using user-provided data stores. The code is derived from PostGIS liblwgeom library enhanced to provide thread-safety, have less dependencies and be independent from PostGIS release cycles. Added: head/devel/librttopo/ head/devel/librttopo/Makefile (contents, props changed) head/devel/librttopo/distinfo (contents, props changed) head/devel/librttopo/pkg-descr (contents, props changed) head/devel/librttopo/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 23 16:21:49 2020 (r553109) +++ head/devel/Makefile Fri Oct 23 16:24:33 2020 (r553110) @@ -1276,6 +1276,7 @@ SUBDIR += librevisa-vish SUBDIR += librevisa-vxi SUBDIR += librolegen + SUBDIR += librttopo SUBDIR += libruin SUBDIR += libs11n SUBDIR += libsavitar Added: head/devel/librttopo/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/librttopo/Makefile Fri Oct 23 16:24:33 2020 (r553110) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= librttopo +DISTVERSION= 1.1.0 +CATEGORIES= devel geography +MASTER_SITES= http://download.osgeo.org/librttopo/src/ + +MAINTAINER= lbartoletti@FreeBSD.org +COMMENT= RT Topology Library + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libgeos_c.so:graphics/geos + +USES= libtool localbase +USE_LDCONFIG= yes +GNU_CONFIGURE= yes + +INSTALL_TARGET=install-strip + +PLIST_SUB= SHL3=${PORTVERSION} SHL1=${PORTVERSION:R:R} + +.include <bsd.port.mk> Added: head/devel/librttopo/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/librttopo/distinfo Fri Oct 23 16:24:33 2020 (r553110) @@ -0,0 +1,3 @@ +TIMESTAMP = 1603465744 +SHA256 (librttopo-1.1.0.tar.gz) = a77d8b787ba13f685de819348d5146f9f6ec56fd3bcf71e880dfc5e0086d4cb0 +SIZE (librttopo-1.1.0.tar.gz) = 697489 Added: head/devel/librttopo/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/librttopo/pkg-descr Fri Oct 23 16:24:33 2020 (r553110) @@ -0,0 +1,9 @@ +The RT Topology Library exposes an API to create and manage standard (ISO 13249 +aka SQL/MM) topologies using user-provided data stores and released under the +GNU GPL license (version 2 or later). + +The code is derived from PostGIS liblwgeom library enhanced to provide +thread-safety, have less dependencies and be independent from PostGIS release +cycles. + +WWW: https://git.osgeo.org/gitea/rttopo/librttopo Added: head/devel/librttopo/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/librttopo/pkg-plist Fri Oct 23 16:24:33 2020 (r553110) @@ -0,0 +1,7 @@ +include/librttopo.h +include/librttopo_geom.h +lib/librttopo.a +lib/librttopo.so +lib/librttopo.so.%%SHL1%% +lib/librttopo.so.%%SHL3%% +libdata/pkgconfig/rttopo.pc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010231624.09NGOXTS098185>