diff options
author | dan <dan@pkgsrc.org> | 2006-03-06 22:58:57 +0000 |
---|---|---|
committer | dan <dan@pkgsrc.org> | 2006-03-06 22:58:57 +0000 |
commit | eeb69c6e730136a2396c70a90f8bb2865a00b3ca (patch) | |
tree | d6772d4e0e882a4ec7115c22c055b31123cc62de /devel/monotone-viz | |
parent | 87d861b796f4fc1ca80243ab47d248db9736b5fb (diff) | |
download | pkgsrc-eeb69c6e730136a2396c70a90f8bb2865a00b3ca.tar.gz |
update to 0.14.
we use a shared sqlite, but new-sqlite can read old-sqlite files for
users of monotone 0.25 which still uses the pre-3.3 internal sqlite.
From the NEWS file:
0.14:
- support new format of monotone db (using BLOBs instead of base64 encoding)
/!\ these newer monotones (after 0.26pre2) use sqlite 3.3, if you're building
monotone-viz with a shared sqlite lib, make sure it is compatible !
- display a nice dialog when the database is locked (e.g. during netsync)
- when a revision has a tag cert, use it as label instead of the revision's id
0.13:
- support monotone 0.26pre1 (it still works fine with monotone <= 0.25)
- stop displaying `disapprove' nodes in a special way (this allows a faster
loading of the database)
Diffstat (limited to 'devel/monotone-viz')
-rw-r--r-- | devel/monotone-viz/Makefile | 7 | ||||
-rw-r--r-- | devel/monotone-viz/distinfo | 10 | ||||
-rw-r--r-- | devel/monotone-viz/patches/patch-aa | 15 |
3 files changed, 16 insertions, 16 deletions
diff --git a/devel/monotone-viz/Makefile b/devel/monotone-viz/Makefile index 61462d8472a..2a74d767b22 100644 --- a/devel/monotone-viz/Makefile +++ b/devel/monotone-viz/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2006/03/04 21:29:18 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2006/03/06 22:58:57 dan Exp $ # -DISTNAME= monotone-viz-0.12 -PKGREVISION= 6 +DISTNAME= monotone-viz-0.14 CATEGORIES= devel MASTER_SITES= http://oandrieu.nerim.net/monotone-viz/ @@ -12,7 +11,7 @@ COMMENT= Visualize monotone ancestry graphs GNU_CONFIGURE= yes CONFIGURE_ARGS+= --without-local-lablgtk --with-shared-sqlite -USE_TOOLS+= gmake +USE_TOOLS+= gmake pkg-config BUILD_TARGET= monotone-viz BUILD_ENV+= BUILDLINK_DIR=${BUILDLINK_DIR} INSTALLATION_DIRS= bin diff --git a/devel/monotone-viz/distinfo b/devel/monotone-viz/distinfo index 461aaa55dcd..6592fcdb2da 100644 --- a/devel/monotone-viz/distinfo +++ b/devel/monotone-viz/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2005/11/08 03:24:32 dan Exp $ +$NetBSD: distinfo,v 1.3 2006/03/06 22:58:57 dan Exp $ -SHA1 (monotone-viz-0.12.tar.gz) = 143223fa703a749d52adb29e39e4f0eb8c6798b9 -RMD160 (monotone-viz-0.12.tar.gz) = bd54312d47c8e7d8d9277bb23f9b34f93be774b1 -Size (monotone-viz-0.12.tar.gz) = 501151 bytes -SHA1 (patch-aa) = c030924dc07d43bb5c7a9844408f4925ca6a9dda +SHA1 (monotone-viz-0.14.tar.gz) = 582d9967e6b84d063dfcde9be538793acd7ec219 +RMD160 (monotone-viz-0.14.tar.gz) = fb828bc8d083c5f213bdb71ec27156368a625ee6 +Size (monotone-viz-0.14.tar.gz) = 504439 bytes +SHA1 (patch-aa) = 8ec270a4c866e1f0bfdbd372684beda5b2f5d1c3 diff --git a/devel/monotone-viz/patches/patch-aa b/devel/monotone-viz/patches/patch-aa index 13df277ae95..cdd5fa87173 100644 --- a/devel/monotone-viz/patches/patch-aa +++ b/devel/monotone-viz/patches/patch-aa @@ -1,9 +1,9 @@ -$NetBSD: patch-aa,v 1.2 2005/11/08 03:24:32 dan Exp $ +$NetBSD: patch-aa,v 1.3 2006/03/06 22:58:57 dan Exp $ ---- configure.orig 2005-11-08 14:01:54.000000000 +1100 -+++ configure 2005-11-08 14:02:48.000000000 +1100 -@@ -2061,32 +2061,6 @@ - +--- configure.orig 2006-03-07 09:36:18.000000000 +1100 ++++ configure 2006-03-07 09:36:24.000000000 +1100 +@@ -2178,33 +2178,6 @@ + fi fi -if test "$SHARED_SQLITE" != "yes" ; then @@ -28,10 +28,11 @@ $NetBSD: patch-aa,v 1.2 2005/11/08 03:24:32 dan Exp $ - { (exit 1); exit 1; }; } - fi - if test "${MONOTONE_DIR:0:1}" != "/" ; then -- MONOTONE_DIR=$(pwd)/$MONOTONE_DIR +- MONOTONE_DIR="$(pwd)/$MONOTONE_DIR" - fi -fi - - +- # Check for libcrypto using pkg-config, defaulting to /usr/lib + CRYPTO_LIB_DIR="$(pkg-config openssl --variable=libdir)" |