summaryrefslogtreecommitdiff
path: root/sqlite3
diff options
context:
space:
mode:
authorJuergen Daubert <jue@jue.li>2009-02-18 16:25:44 +0100
committerJuergen Daubert <jue@jue.li>2009-02-18 16:25:44 +0100
commit3f97f97b1b448db2ad6db4a4b893ce249e7693eb (patch)
tree0b3faef55da203c6b482235a0e179bbaea4982c8 /sqlite3
parent6feabd84dd8b48456cc6fec3fba942d6cd93d2e8 (diff)
downloadopt-3f97f97b1b448db2ad6db4a4b893ce249e7693eb.tar.gz
opt-3f97f97b1b448db2ad6db4a4b893ce249e7693eb.tar.xz
sqlite3: update to 3.6.11
Diffstat (limited to 'sqlite3')
-rw-r--r--sqlite3/.md5sum3
-rw-r--r--sqlite3/Pkgfile16
-rw-r--r--sqlite3/sqlite3-pkgconfig.patch46
3 files changed, 7 insertions, 58 deletions
diff --git a/sqlite3/.md5sum b/sqlite3/.md5sum
index f7c71adea..6aabebf56 100644
--- a/sqlite3/.md5sum
+++ b/sqlite3/.md5sum
@@ -1,2 +1 @@
-0c3f1333cc3dd5179b59ee9f4b2ef4c3 sqlite-amalgamation-3.6.10.tar.gz
-06d5c38bac4e5589e559f1e1e9bb67ea sqlite3-pkgconfig.patch
+da1f95c6b173fd56d2760bcfd2a3c756 sqlite-amalgamation-3.6.11.tar.gz
diff --git a/sqlite3/Pkgfile b/sqlite3/Pkgfile
index ccf860523..a64011422 100644
--- a/sqlite3/Pkgfile
+++ b/sqlite3/Pkgfile
@@ -4,22 +4,18 @@
# Depends on: ncurses, readline
name=sqlite3
-version=3.6.10
+version=3.6.11
release=1
-source=(http://www.sqlite.org/sqlite-amalgamation-$version.tar.gz
- sqlite3-pkgconfig.patch)
+source=(http://www.sqlite.org/sqlite-amalgamation-$version.tar.gz)
build () {
- cd sqlite-amalgamation-$version
+ cd sqlite-$version
- patch -p1 -i $SRC/sqlite3-pkgconfig.patch
+ # http://www.sqlite.org/cvstrac/tktview?tn=3583
+ sed -i 's/@RELEASE@/@VERSION@/' sqlite3.pc.in
- autoreconf -f
- libtoolize -fq
-
- CFLAGS="$CFLAGS -DNDEBUG" \
- ./configure --prefix=/usr
+ ./configure --prefix=/usr CFLAGS="$CFLAGS -DNDEBUG"
make
make DESTDIR=$PKG install
diff --git a/sqlite3/sqlite3-pkgconfig.patch b/sqlite3/sqlite3-pkgconfig.patch
deleted file mode 100644
index 140efd419..000000000
--- a/sqlite3/sqlite3-pkgconfig.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-# Patch to add support for the pkgconfig-file sqlite3.pc, needed by at least firefox.
-# See my upstream bugreport here http://www.sqlite.org/cvstrac/tktview?tn=3583.
-# We want the amalgamation version of the sources, because we otherwise have to install
-# tcl to build sqlite3 with special options like -DSQLITE_ENABLE_FTS3=1
-#
-# 2009-01-14 jue
-
-diff -Nru sqlite-amalgamation-3.6.9.orig/Makefile.am sqlite-amalgamation-3.6.9/Makefile.am
---- sqlite-amalgamation-3.6.9.orig/Makefile.am 2009-01-14 14:13:11.000000000 +0100
-+++ sqlite-amalgamation-3.6.9/Makefile.am 2009-01-14 17:04:30.000000000 +0100
-@@ -12,3 +12,5 @@
-
- include_HEADERS = sqlite3.h sqlite3ext.h
-
-+pkgconfigdir = ${libdir}/pkgconfig
-+pkgconfig_DATA = sqlite3.pc
-diff -Nru sqlite-amalgamation-3.6.9.orig/configure.ac sqlite-amalgamation-3.6.9/configure.ac
---- sqlite-amalgamation-3.6.9.orig/configure.ac 2009-01-14 14:13:11.000000000 +0100
-+++ sqlite-amalgamation-3.6.9/configure.ac 2009-01-14 14:58:02.000000000 +0100
-@@ -24,7 +24,8 @@
- # Check for library functions that SQLite can optionally use.
- AC_CHECK_FUNCS([fdatasync usleep fullfsync localtime_r gmtime_r])
-
--AC_CONFIG_FILES([Makefile])
-+AC_CONFIG_FILES([Makefile sqlite3.pc])
-+AC_SUBST(BUILD_CFLAGS)
-
- #-----------------------------------------------------------------------
- # --enable-readline
-diff -Nru sqlite-amalgamation-3.6.9.orig/sqlite3.pc.in sqlite-amalgamation-3.6.9/sqlite3.pc.in
---- sqlite-amalgamation-3.6.9.orig/sqlite3.pc.in 1970-01-01 01:00:00.000000000 +0100
-+++ sqlite-amalgamation-3.6.9/sqlite3.pc.in 2009-01-14 12:49:13.000000000 +0100
-@@ -0,0 +1,13 @@
-+# Package Information for pkg-config
-+
-+prefix=@prefix@
-+exec_prefix=@exec_prefix@
-+libdir=@libdir@
-+includedir=@includedir@
-+
-+Name: SQLite
-+Description: SQL database engine
-+Version: @VERSION@
-+Libs: -L${libdir} -lsqlite3
-+Libs.private: @LIBS@
-+Cflags: -I${includedir}

Generated by cgit