[Lunar-commits] r17188 - in moonbase/trunk/sql: . sqlite2

Auke Kok sofar at lunar-linux.org
Sun Nov 6 06:15:32 UTC 2005


Author: sofar
Date: 2005-11-06 06:15:26 +0000 (Sun, 06 Nov 2005)
New Revision: 17188

Added:
   moonbase/trunk/sql/sqlite2/
   moonbase/trunk/sql/sqlite2/CONFIGURE
   moonbase/trunk/sql/sqlite2/DEPENDS
   moonbase/trunk/sql/sqlite2/DETAILS
Log:
Adding the old v2 of sqlite - needed for php5 sqlite dbs - php5s sqlite support cannot handle sqlite3

Added: moonbase/trunk/sql/sqlite2/CONFIGURE
===================================================================
--- moonbase/trunk/sql/sqlite2/CONFIGURE	2005-11-06 06:11:10 UTC (rev 17187)
+++ moonbase/trunk/sql/sqlite2/CONFIGURE	2005-11-06 06:15:26 UTC (rev 17188)
@@ -0,0 +1,10 @@
+if  !  grep  -q  CONFIGURED  $MODULE_CONFIG;  then
+
+  if  query  "Enable UTF8 characterset?" y;  then
+    OPTS="$OPTS --enable-utf8"
+  fi
+
+  echo  'CONFIGURED="y"'  >>  $MODULE_CONFIG
+  echo  'OPTS='\"$OPTS\"    >>  $MODULE_CONFIG
+
+fi

Added: moonbase/trunk/sql/sqlite2/DEPENDS
===================================================================
--- moonbase/trunk/sql/sqlite2/DEPENDS	2005-11-06 06:11:10 UTC (rev 17187)
+++ moonbase/trunk/sql/sqlite2/DEPENDS	2005-11-06 06:15:26 UTC (rev 17188)
@@ -0,0 +1 @@
+optional_depends "tcl"  "--with-tcl=/usr/lib"  ""  "SQLite TCL Binding"

Added: moonbase/trunk/sql/sqlite2/DETAILS
===================================================================
--- moonbase/trunk/sql/sqlite2/DETAILS	2005-11-06 06:11:10 UTC (rev 17187)
+++ moonbase/trunk/sql/sqlite2/DETAILS	2005-11-06 06:15:26 UTC (rev 17188)
@@ -0,0 +1,24 @@
+          MODULE=sqlite2
+             PKG=sqlite
+         VERSION=2.8.16
+          SOURCE=$PKG-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$PKG-$VERSION
+      SOURCE_URL=http://www.sqlite.org/
+      SOURCE_VFY=sha1:7bef329f78628de252c289bda7cea6f86adcc42e
+        WEB_SITE=http://www.sqlite.org/
+         ENTERED=20051103
+         UPDATED=20051103
+           SHORT="Old version of the SQLite"
+
+cat << EOF
+SQLite is a C library that implements an SQL database engine. A large
+subset of SQL92 is supported. A complete database is stored in a single
+disk file. The API is designed for convenience and ease of use.
+Applications that link against SQLite can enjoy the power and flexiblity
+of an SQL database without the administrative hassles of supporting a
+separate database server. Because it omits the client-server interaction
+overhead and writes directly to disk, SQLite is also faster than the big
+database servers for most operations. In addition to the C library, the
+SQLite distribution includes a command-line tool for interacting with
+SQLite databases and SQLite bindings for Tcl/Tk. 
+EOF



More information about the Lunar-commits mailing list