Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Feb 2015 13:58:03 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r379514 - in head/databases: . virtualpg
Message-ID:  <201502211358.t1LDw3WB066695@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pawel
Date: Sat Feb 21 13:58:02 2015
New Revision: 379514
URL: https://svnweb.freebsd.org/changeset/ports/379514
QAT: https://qat.redports.org/buildarchive/r379514/

Log:
  VirtualPG is a loadable dynamic extension to both SQLite and SpatiaLite.
  
  Its intended scope is supporting direct SQL access to PostgreSQL and PostGIS own
  tables, so to make any possible kind of data exchange between these two popular
  open source Spatial DBMSes as straightforward and simple as possible.
  
  WWW: http://www.gaia-gis.it/fossil/virtualpg/index
  
  PR:		197261
  Submitted by:	Loïc BARTOLETTI <coder@tuxfamily.org>

Added:
  head/databases/virtualpg/
  head/databases/virtualpg/Makefile   (contents, props changed)
  head/databases/virtualpg/distinfo   (contents, props changed)
  head/databases/virtualpg/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Sat Feb 21 13:46:22 2015	(r379513)
+++ head/databases/Makefile	Sat Feb 21 13:58:02 2015	(r379514)
@@ -931,6 +931,7 @@
     SUBDIR += useracc
     SUBDIR += usogres
     SUBDIR += vfront
+    SUBDIR += virtualpg
     SUBDIR += virtuoso
     SUBDIR += vsqlite
     SUBDIR += wfb2sql

Added: head/databases/virtualpg/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/virtualpg/Makefile	Sat Feb 21 13:58:02 2015	(r379514)
@@ -0,0 +1,28 @@
+# Created by: Loïc BARTOLETTI <coder@tuxfamily.org>
+# $FreeBSD$
+
+PORTNAME=	virtualpg
+PORTVERSION=	1.0.1
+CATEGORIES=	databases geography
+MASTER_SITES=	http://www.gaia-gis.it/gaia-sins/
+
+MAINTAINER=	coder@tuxfamily.org
+COMMENT=	Loadable dynamic extension to both SQLite and SpatiaLite
+
+LICENSE=	MPL LGPL21 GPLv2
+LICENSE_COMB=	dual
+
+GNU_CONFIGURE=	yes
+USES=		gmake iconv pathfix pkgconfig libtool pgsql
+USE_SQLITE=	yes
+USE_LDCONFIG=	yes
+
+CFLAGS+=	-I${WRKSRC}/src/headers -I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
+CONFIGURE_ARGS+=	CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+
+PLIST_FILES=	lib/mod_virtualpg.so \
+		lib/mod_virtualpg.so.1 \
+		lib/mod_virtualpg.so.1.0.0
+
+.include <bsd.port.mk>

Added: head/databases/virtualpg/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/virtualpg/distinfo	Sat Feb 21 13:58:02 2015	(r379514)
@@ -0,0 +1,2 @@
+SHA256 (virtualpg-1.0.1.tar.gz) = 9e6c4c6c1556b2ea2a1e4deda28909626c3a8b047c81d6b82c042abdb9a99ec8
+SIZE (virtualpg-1.0.1.tar.gz) = 345147

Added: head/databases/virtualpg/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/virtualpg/pkg-descr	Sat Feb 21 13:58:02 2015	(r379514)
@@ -0,0 +1,7 @@
+VirtualPG is a loadable dynamic extension to both SQLite and SpatiaLite.
+
+Its intended scope is supporting direct SQL access to PostgreSQL and PostGIS own
+tables, so to make any possible kind of data exchange between these two popular
+open source Spatial DBMSes as straightforward and simple as possible.
+
+WWW: http://www.gaia-gis.it/fossil/virtualpg/index



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502211358.t1LDw3WB066695>