From owner-svn-ports-head@FreeBSD.ORG Sun Dec 29 20:37:29 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C0238E2; Sun, 29 Dec 2013 20:37:29 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C2641674; Sun, 29 Dec 2013 20:37:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBTKbTsi005579; Sun, 29 Dec 2013 20:37:29 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBTKbSF8005573; Sun, 29 Dec 2013 20:37:28 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201312292037.rBTKbSF8005573@svn.freebsd.org> From: Koop Mast Date: Sun, 29 Dec 2013 20:37:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r338041 - in head/databases: . vsqlite 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.17 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: Sun, 29 Dec 2013 20:37:29 -0000 Author: kwm Date: Sun Dec 29 20:37:27 2013 New Revision: 338041 URL: http://svnweb.freebsd.org/changeset/ports/338041 Log: Add vsqlite, a well designed and portable SQLite3 Wrapper for C++. Added: head/databases/vsqlite/ head/databases/vsqlite/Makefile (contents, props changed) head/databases/vsqlite/distinfo (contents, props changed) head/databases/vsqlite/pkg-descr (contents, props changed) head/databases/vsqlite/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sun Dec 29 20:25:29 2013 (r338040) +++ head/databases/Makefile Sun Dec 29 20:37:27 2013 (r338041) @@ -919,6 +919,7 @@ SUBDIR += usogres SUBDIR += vfront SUBDIR += virtuoso + SUBDIR += vsqlite SUBDIR += wfb2sql SUBDIR += wmjsql SUBDIR += xapian-bindings Added: head/databases/vsqlite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/vsqlite/Makefile Sun Dec 29 20:37:27 2013 (r338041) @@ -0,0 +1,33 @@ +# Created by: Koop Mast +# $FreeBSD$ + +PORTNAME= vsqlite +PORTVERSION= 0.3.12 +CATEGORIES= databases + +MAINTAINER= kwm@FreeBSD.org +COMMENT= Well designed and portable SQLite3 Wrapper for C++ + +LICENSE= BSD3CLAUSE + +LIB_DEPENDS= libboost_random.so:${PORTSDIR}/devel/boost-libs + +USE_GITHUB= yes +GH_ACCOUNT= vinzenz +GH_PROJECT= vsqlite-- +GH_TAGNAME= 3fa8d32 +GH_COMMIT= 3fa8d32 + +USE_AUTOTOOLS= libtool autoconf automake +USE_SQLITE= 3 +USE_LDCONFIG= yes +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +pre-configure: + @cd ${WRKSRC} && ${SH} autogen.sh + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libvsqlitepp.so.3 + +.include Added: head/databases/vsqlite/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/vsqlite/distinfo Sun Dec 29 20:37:27 2013 (r338041) @@ -0,0 +1,2 @@ +SHA256 (vsqlite-0.3.12.tar.gz) = 722d0a077c690e2e21e880602690c35b5c1eb2a491911ec44a28b92106ea8459 +SIZE (vsqlite-0.3.12.tar.gz) = 23733 Added: head/databases/vsqlite/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/vsqlite/pkg-descr Sun Dec 29 20:37:27 2013 (r338041) @@ -0,0 +1,3 @@ +Well designed and portable SQLite3 Wrapper for C++ + +WWW: https://github.com/vinzenz/vsqlite-- Added: head/databases/vsqlite/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/vsqlite/pkg-plist Sun Dec 29 20:37:27 2013 (r338041) @@ -0,0 +1,15 @@ +include/sqlite/command.hpp +include/sqlite/connection.hpp +include/sqlite/database_exception.hpp +include/sqlite/execute.hpp +include/sqlite/ext/variant.hpp +include/sqlite/query.hpp +include/sqlite/result.hpp +include/sqlite/transaction.hpp +include/sqlite/view.hpp +lib/libvsqlitepp.a +lib/libvsqlitepp.la +lib/libvsqlitepp.so +lib/libvsqlitepp.so.3 +@dirrmtry include/sqlite/ext +@dirrmtry include/sqlite