diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-10 20:13:48 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-10 20:13:48 +0000 |
commit | 9686ac20306c91b052ec3619fcd635e63ce2039b (patch) | |
tree | d923fbe67ab454c13e3d2514e6bcac75f5e63c45 /audio | |
parent | f5f80b440d62e703329a03105f8d50f9796a8258 (diff) | |
download | pkgsrc-9686ac20306c91b052ec3619fcd635e63ce2039b.tar.gz |
Fixed "test ==".
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gnome-speech/distinfo | 3 | ||||
-rw-r--r-- | audio/gnome-speech/patches/patch-ab | 13 | ||||
-rw-r--r-- | audio/lmms/distinfo | 4 | ||||
-rw-r--r-- | audio/lmms/patches/patch-af | 15 |
4 files changed, 29 insertions, 6 deletions
diff --git a/audio/gnome-speech/distinfo b/audio/gnome-speech/distinfo index ca750f6283f..e1fd93b3f41 100644 --- a/audio/gnome-speech/distinfo +++ b/audio/gnome-speech/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.15 2006/09/15 15:20:44 jmmv Exp $ +$NetBSD: distinfo,v 1.16 2006/10/10 20:14:51 rillig Exp $ SHA1 (gnome-speech-0.4.5.tar.bz2) = 5b1371e24185b7d5c78ad28af830a7e6bb5cff75 RMD160 (gnome-speech-0.4.5.tar.bz2) = f7d0f5c42c8564ae4fd9f19a87f5a6909edfdc45 Size (gnome-speech-0.4.5.tar.bz2) = 313294 bytes SHA1 (patch-aa) = 039606f4e47be7d6e812687504a577fc149b5722 +SHA1 (patch-ab) = cb32d023cfdd791d779c772513c5a307d6ef654d diff --git a/audio/gnome-speech/patches/patch-ab b/audio/gnome-speech/patches/patch-ab new file mode 100644 index 00000000000..924e25b424a --- /dev/null +++ b/audio/gnome-speech/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2006/10/10 20:14:51 rillig Exp $ + +--- configure.orig 2006-10-10 21:31:46.000000000 +0200 ++++ configure 2006-10-10 22:14:15.000000000 +0200 +@@ -20953,7 +20953,7 @@ if test "${with_theta_dir+set}" = set; t + withval=$with_theta_dir; + fi + +-if test x$with_theta_dir == x ; then ++if test x$with_theta_dir = x ; then + # Check default location /opt/theta + + with_theta_dir="/opt/theta" diff --git a/audio/lmms/distinfo b/audio/lmms/distinfo index e4f9e2e2218..b211961b249 100644 --- a/audio/lmms/distinfo +++ b/audio/lmms/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.2 2006/08/22 14:29:07 joerg Exp $ +$NetBSD: distinfo,v 1.3 2006/10/10 20:13:48 rillig Exp $ SHA1 (lmms-0.2.0.tar.bz2) = 410647c860d140769ed1c56bb8a794cb2594658b RMD160 (lmms-0.2.0.tar.bz2) = c3e44e018303ed40d048542a8f66fbb785ea11f2 @@ -8,4 +8,4 @@ SHA1 (patch-ab) = 8a598eed529d609272419283e382ad2223dfe4d6 SHA1 (patch-ac) = f9be78b4c606e80c8b0bad78fafbd8ee07f2e65e SHA1 (patch-ad) = b62e49823415530354a01c43fc588338212aaf68 SHA1 (patch-ae) = de50ed87888b74a0d3ed0158dda3291af54595c9 -SHA1 (patch-af) = acb2752b501d3d286028ab85eae474759d921924 +SHA1 (patch-af) = c269ade81ba2e9951df18a9a04e2978572376e74 diff --git a/audio/lmms/patches/patch-af b/audio/lmms/patches/patch-af index af8d9ea3a7c..5ca03d52c48 100644 --- a/audio/lmms/patches/patch-af +++ b/audio/lmms/patches/patch-af @@ -1,7 +1,7 @@ -$NetBSD: patch-af,v 1.1 2006/08/22 14:29:07 joerg Exp $ +$NetBSD: patch-af,v 1.2 2006/10/10 20:13:48 rillig Exp $ ---- configure.orig 2006-08-22 16:22:55.000000000 +0000 -+++ configure +--- configure.orig 2006-07-19 10:34:35.000000000 +0200 ++++ configure 2006-10-10 22:12:44.000000000 +0200 @@ -21822,7 +21822,7 @@ fi if test x"$QT_IS_MT" = "xyes" ; then @@ -20,3 +20,12 @@ $NetBSD: patch-af,v 1.1 2006/08/22 14:29:07 joerg Exp $ # check for SDL-lib +@@ -28912,7 +28912,7 @@ lmmsdatadir="$datadir/$PACKAGE" + + #CFLAGS="$CXXFLAGS -g -O2" + #CXXFLAGS="$CXXFLAGS -g -O2" +-if test $CXX == "g++" ; then ++if test "$GCC" = "yes" ; then + CXXFLAGS="$CXXFLAGS -ansi -Wall -fno-exceptions" + fi + |