From owner-svn-ports-head@FreeBSD.ORG Sat Feb 21 13:58:04 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A38633AE; Sat, 21 Feb 2015 13:58:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8E24E94C; Sat, 21 Feb 2015 13:58:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1LDw4Aa066699; Sat, 21 Feb 2015 13:58:04 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1LDw3WB066695; Sat, 21 Feb 2015 13:58:03 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201502211358.t1LDw3WB066695@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sat, 21 Feb 2015 13:58:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379514 - in head/databases: . virtualpg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Feb 2015 13:58:04 -0000 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 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 +# $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 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