Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Mar 2013 21:19:46 +0000 (UTC)
From:      "Joseph S. Atkinson" <jsa@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r313423 - in head/databases: . sqlcipher sqlite3
Message-ID:  <201303042119.r24LJkEJ009167@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jsa
Date: Mon Mar  4 21:19:46 2013
New Revision: 313423
URL: http://svnweb.freebsd.org/changeset/ports/313423

Log:
  New port for sqlcipher.
  
  Sqlcipher is a drop in replacement for sqlite3. Sqlcipher creates encrypted
  sql databases.
  
  Sponsored by:	iXsystems
  Suggested by:	Isilon
  Approved by:	kwm (mentor)

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

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Mon Mar  4 19:53:50 2013	(r313422)
+++ head/databases/Makefile	Mon Mar  4 21:19:46 2013	(r313423)
@@ -860,6 +860,7 @@
     SUBDIR += spatialite_gui
     SUBDIR += sqlbuddy
     SUBDIR += sqlcached
+    SUBDIR += sqlcipher
     SUBDIR += sqlclient
     SUBDIR += sqldeveloper
     SUBDIR += sqlite-ext-miscfuncs

Added: head/databases/sqlcipher/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sqlcipher/Makefile	Mon Mar  4 21:19:46 2013	(r313423)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	sqlcipher
+PORTVERSION=	2.1.1
+CATEGORIES=	databases
+
+MAINTAINER=	jsa@FreeBSD.org
+COMMENT=	Encrypted sqlite database
+
+LICENSE=	BSD
+
+USE_LDCONFIG=	yes
+USE_TCL_BUILD=	85
+USE_GITHUB=	yes
+USE_GNOME=	gnomehack
+GH_ACCOUNT=	sqlcipher
+GH_TAGNAME=	v${PORTVERSION}
+GH_COMMIT=	ee2ce3e
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS+=--enable-tempstore=yes --disable-tcl --disable-readline
+CPPFLAGS+=	-DSQLITE_HAS_CODEC
+LDFLAGS+=	-lcrypto
+
+CONFLICTS=	sqlite3-3.*
+
+.include <bsd.port.mk>

Added: head/databases/sqlcipher/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sqlcipher/distinfo	Mon Mar  4 21:19:46 2013	(r313423)
@@ -0,0 +1,2 @@
+SHA256 (sqlcipher-2.1.1.tar.gz) = eac24bc5924f0a333615257d8e6175ab82dffdf73ee0eaae2e30fc7be3a17480
+SIZE (sqlcipher-2.1.1.tar.gz) = 4361800

Added: head/databases/sqlcipher/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sqlcipher/pkg-descr	Mon Mar  4 21:19:46 2013	(r313423)
@@ -0,0 +1,3 @@
+Allows the creation of encrypted sqlite databases
+
+WWW: http://www.sqlcipher.net

Added: head/databases/sqlcipher/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sqlcipher/pkg-plist	Mon Mar  4 21:19:46 2013	(r313423)
@@ -0,0 +1,8 @@
+bin/sqlite3
+include/sqlite3.h
+include/sqlite3ext.h
+lib/libsqlite3.so.8
+lib/libsqlite3.so
+lib/libsqlite3.la
+lib/libsqlite3.a
+libdata/pkgconfig/sqlite3.pc

Modified: head/databases/sqlite3/Makefile
==============================================================================
--- head/databases/sqlite3/Makefile	Mon Mar  4 19:53:50 2013	(r313422)
+++ head/databases/sqlite3/Makefile	Mon Mar  4 21:19:46 2013	(r313423)
@@ -15,7 +15,7 @@ LICENSE_NAME=	Public Domain
 LICENSE_TEXT=	Description of the license can be obtained from the following URL: http://www.sqlite.org/copyright.html
 LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
 
-CONFLICTS=	sqlite34-[0-9]*
+CONFLICTS=	sqlite34-[0-9]* sqlcipher-*
 
 USE_GNOME=	pkgconfig
 USE_LDCONFIG=	YES



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