diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-02 14:51:15 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-02 14:51:15 +0000 |
commit | 0df819be4276d6e4ccbefe97898296388e88a589 (patch) | |
tree | 593a6a9e45c57e5cdeb29cecd373495be1cc4fbf /devel/libextractor | |
parent | f690fb781ef201eba0136078cc7a99b7c99d8818 (diff) | |
download | pkgsrc-0df819be4276d6e4ccbefe97898296388e88a589.tar.gz |
Fixed insufficient variable expansion by the configure script.
PKGREVISION++
Diffstat (limited to 'devel/libextractor')
-rw-r--r-- | devel/libextractor/Makefile | 4 | ||||
-rw-r--r-- | devel/libextractor/distinfo | 4 | ||||
-rw-r--r-- | devel/libextractor/patches/patch-ae | 16 |
3 files changed, 18 insertions, 6 deletions
diff --git a/devel/libextractor/Makefile b/devel/libextractor/Makefile index e5f71d2c6b3..b29f1929442 100644 --- a/devel/libextractor/Makefile +++ b/devel/libextractor/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.25 2006/12/06 16:29:59 joerg Exp $ +# $NetBSD: Makefile,v 1.26 2007/01/02 14:51:15 rillig Exp $ DISTNAME= libextractor-0.5.15 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= http://gnunet.org/libextractor/download/ diff --git a/devel/libextractor/distinfo b/devel/libextractor/distinfo index d772b940236..a101223b2dd 100644 --- a/devel/libextractor/distinfo +++ b/devel/libextractor/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.17 2006/10/22 21:26:19 adam Exp $ +$NetBSD: distinfo,v 1.18 2007/01/02 14:51:15 rillig Exp $ SHA1 (libextractor-0.5.15.tar.gz) = 1b4fb66ac5d8df9725be60098ef80f2ef13b280f RMD160 (libextractor-0.5.15.tar.gz) = 69bf2979a4e1bed16241cd794921d2d9b481353d @@ -7,5 +7,5 @@ SHA1 (patch-aa) = f0923e6cba8e6bb327a7959a3d7679bb78a530b2 SHA1 (patch-ab) = 1516691329cd367d2378ddda6e997f10ef09902f SHA1 (patch-ac) = 93aa17c9698d5d05e1c739e450d85df13031524d SHA1 (patch-ad) = 724032cdb58017ecb139cc77efc20ff455b87a36 -SHA1 (patch-ae) = 3d3a0ea2139ecd5f8a085f667dbec764d0d7186f +SHA1 (patch-ae) = e7f6e33ce08209f69c88d28a268644b06ce9fc49 SHA1 (patch-af) = 4baac079d2a7fba264fcbc6b965245dc23d3e3ab diff --git a/devel/libextractor/patches/patch-ae b/devel/libextractor/patches/patch-ae index 19285da2782..15781a90508 100644 --- a/devel/libextractor/patches/patch-ae +++ b/devel/libextractor/patches/patch-ae @@ -1,7 +1,19 @@ -$NetBSD: patch-ae,v 1.4 2006/10/22 21:26:19 adam Exp $ +$NetBSD: patch-ae,v 1.5 2007/01/02 14:51:15 rillig Exp $ + +The double eval fixes an insufficient variable expansion in the shell, +caused by the buggy AC_DEFINE_DIR macro. --- configure.orig 2006-09-06 23:07:19.000000000 +0200 -+++ configure ++++ configure 2007-01-02 15:41:52.000000000 +0100 +@@ -24730,7 +24730,7 @@ _ACEOF + exec_prefix_NONE= + test "x$prefix" = xNONE && prefix_NONE=yes && prefix=$ac_default_prefix + test "x$exec_prefix" = xNONE && exec_prefix_NONE=yes && exec_prefix=$prefix +- eval ac_define_dir="\"$datadir/locale\"" ++ eval eval ac_define_dir="\"$datadir/locale\"" + LOCALEDIR="$ac_define_dir" + + @@ -30949,7 +30949,7 @@ fi if test x$without_glib != xtrue |