diff options
author | salo <salo@pkgsrc.org> | 2004-09-08 15:55:48 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2004-09-08 15:55:48 +0000 |
commit | cbd502dc97483fc0e4c7a2dc49fac99252df0916 (patch) | |
tree | 7df77eae9ef2c17e667941486f0076fb38378fa0 | |
parent | 4a58a84a0a5de8549a00a34319ce2f7e67e15081 (diff) | |
download | pkgsrc-cbd502dc97483fc0e4c7a2dc49fac99252df0916.tar.gz |
PKGREVISION++
Point to correct location of VERSION file so we save the correct version
into pkgconfig file.
Addresses PR pkg/26875 by Ian Zagorskih.
-rw-r--r-- | databases/sqlite/Makefile | 3 | ||||
-rw-r--r-- | databases/sqlite/distinfo | 3 | ||||
-rw-r--r-- | databases/sqlite/patches/patch-ab | 15 |
3 files changed, 19 insertions, 2 deletions
diff --git a/databases/sqlite/Makefile b/databases/sqlite/Makefile index 04d4700b497..59a52a433f2 100644 --- a/databases/sqlite/Makefile +++ b/databases/sqlite/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.26 2004/08/04 19:59:58 jlam Exp $ +# $NetBSD: Makefile,v 1.27 2004/09/08 15:55:48 salo Exp $ DISTNAME= sqlite-2.8.15 +PKGREVISION= 1 CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ http://www.sqlite.org/ diff --git a/databases/sqlite/distinfo b/databases/sqlite/distinfo index 01750faab26..cd736a30528 100644 --- a/databases/sqlite/distinfo +++ b/databases/sqlite/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.17 2004/08/04 19:59:58 jlam Exp $ +$NetBSD: distinfo,v 1.18 2004/09/08 15:55:48 salo Exp $ SHA1 (sqlite-2.8.15.tar.gz) = 53c8a6dd2f87c500c6944987988053acacaee05b Size (sqlite-2.8.15.tar.gz) = 963232 bytes SHA1 (patch-aa) = 8f8f3608b10ed93b52c2dba6b70c93ba4aa6c485 +SHA1 (patch-ab) = e1dda14c980b8c014292ce46989bf210aaa2e10f diff --git a/databases/sqlite/patches/patch-ab b/databases/sqlite/patches/patch-ab new file mode 100644 index 00000000000..5b5d7345aa2 --- /dev/null +++ b/databases/sqlite/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.7 2004/09/08 15:55:48 salo Exp $ + +--- ../sqlite/configure.orig 2004-02-29 16:18:31.000000000 +0100 ++++ ../sqlite/configure 2004-09-08 06:17:32.000000000 +0200 +@@ -18376,8 +18376,8 @@ + fi + + +-if test -f VERSION; then +- VERSION=`cat VERSION` ++if test -f $srcdir/VERSION; then ++ VERSION=`cat $srcdir/VERSION` + echo "Version set to $VERSION" + fi + |