diff options
author | marino <marino@pkgsrc.org> | 2011-11-21 07:12:24 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2011-11-21 07:12:24 +0000 |
commit | 68e78c888042d2620bf9a08b07c0e0f83c38679e (patch) | |
tree | 8cd7d7670e9ffd874e4ed78041b46bcb30dd67f1 /audio/libopenspc | |
parent | 0e3a7e026e2522a4de0fa1519c063df2e391f034 (diff) | |
download | pkgsrc-68e78c888042d2620bf9a08b07c0e0f83c38679e.tar.gz |
audio/libopenspc: Fix configure script bad grep pattern
DragonFly's modern gnu grep caught use of "[:space:]" rather than
the correct "[[:space:]]" in the Gentoo ltmain sanity check, and
returned an error breaking the configure script. The m4 file was
correct though, so the configure wasn't really generated. In any
case, this Gentoo error is widespread, so expect the same patch for
other packages as they are discovered.
It's possible platforms using BSD grep aren't affected.
No PKGREVISION bump required.
Diffstat (limited to 'audio/libopenspc')
-rw-r--r-- | audio/libopenspc/distinfo | 3 | ||||
-rw-r--r-- | audio/libopenspc/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/audio/libopenspc/distinfo b/audio/libopenspc/distinfo index 4f2473b929c..007b29f3695 100644 --- a/audio/libopenspc/distinfo +++ b/audio/libopenspc/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2007/01/26 16:44:00 drochner Exp $ +$NetBSD: distinfo,v 1.2 2011/11/21 07:12:24 marino Exp $ SHA1 (OpenSPC_snap-20050926.tar.bz2) = 5f12938f07612b0f0138557263338ad74f7a83d5 RMD160 (OpenSPC_snap-20050926.tar.bz2) = e7d64c9209f0acf376978cadf40724328daa038e Size (OpenSPC_snap-20050926.tar.bz2) = 240382 bytes +SHA1 (patch-aa) = d590025599d640a833fe28aac0d10fb6f33adff2 diff --git a/audio/libopenspc/patches/patch-aa b/audio/libopenspc/patches/patch-aa new file mode 100644 index 00000000000..7d19cc44ca4 --- /dev/null +++ b/audio/libopenspc/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2011/11/21 07:12:24 marino Exp $ + +--- configure.orig 2005-09-26 23:32:26.000000000 +0000 ++++ configure +@@ -6320,7 +6320,7 @@ echo "${ECHO_T}no" >&6 + exit 1 + fi + gentoo_lt_version="1.5.18" +-gentoo_ltmain_version=`grep '^[:space:]*VERSION=' $ltmain | sed -e 's|^[:space:]*VERSION=||'` ++gentoo_ltmain_version=`grep '^[[:space:]]*VERSION=' $ltmain | sed -e 's|^[[:space:]]*VERSION=||'` + if test "$gentoo_lt_version" != "$gentoo_ltmain_version"; then + echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6 |