diff options
author | martti <martti@pkgsrc.org> | 2006-10-12 05:43:20 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2006-10-12 05:43:20 +0000 |
commit | b38496f668170eccb59e6175311d016a7c99444e (patch) | |
tree | 0770b3651aaef9f9c6edd7c71b872b6212f914c2 | |
parent | a095e0f6ff745c9496669d0ddc2d8f1550e121e3 (diff) | |
download | pkgsrc-b38496f668170eccb59e6175311d016a7c99444e.tar.gz |
Fixed test ==
-rw-r--r-- | audio/xfce4-xmms-plugin/distinfo | 4 | ||||
-rw-r--r-- | audio/xfce4-xmms-plugin/patches/patch-aa | 22 | ||||
-rw-r--r-- | audio/xfce4-xmms-plugin/patches/patch-ab | 22 |
3 files changed, 47 insertions, 1 deletions
diff --git a/audio/xfce4-xmms-plugin/distinfo b/audio/xfce4-xmms-plugin/distinfo index 0ee24a88e2b..bdb8f088233 100644 --- a/audio/xfce4-xmms-plugin/distinfo +++ b/audio/xfce4-xmms-plugin/distinfo @@ -1,5 +1,7 @@ -$NetBSD: distinfo,v 1.3 2005/06/23 07:23:56 martti Exp $ +$NetBSD: distinfo,v 1.4 2006/10/12 05:43:20 martti Exp $ SHA1 (xfce4-xmms-plugin-0.3.1.tar.bz2) = f59c799d672941dfadd19272daff6f6e5b1c02fd RMD160 (xfce4-xmms-plugin-0.3.1.tar.bz2) = 955f0ffcce94480d1144416076e3bfd8de76ac00 Size (xfce4-xmms-plugin-0.3.1.tar.bz2) = 518730 bytes +SHA1 (patch-aa) = 4fb80effa95987e87ae305db886cfc34cffb4292 +SHA1 (patch-ab) = b24664d40d4c05b872bdb5696a4182cd55ec088e diff --git a/audio/xfce4-xmms-plugin/patches/patch-aa b/audio/xfce4-xmms-plugin/patches/patch-aa new file mode 100644 index 00000000000..a3f914aea77 --- /dev/null +++ b/audio/xfce4-xmms-plugin/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1 2006/10/12 05:43:20 martti Exp $ + +--- configure.ac.orig 2006-10-12 08:38:23.000000000 +0000 ++++ configure.ac 2006-10-12 08:38:33.000000000 +0000 +@@ -35,7 +35,7 @@ + dnl check for player + AC_MSG_CHECKING([what player to link with]) + AC_ARG_WITH([player], [ --with-player=xmms/beep Specify player to link with [default=xmms]]) +-if test x"$with_player" == x"beep"; then ++if test x"$with_player" = x"beep"; then + AC_MSG_RESULT([Beep media player]) + BM_DEPEND([PLAYER], [beep], [0.9.6.0]) + +@@ -44,7 +44,7 @@ + AC_MSG_RESULT([XMMS media player]) + + AC_CHECK_PROGS([XMMS_CONFIG], [xmms-config], [no]) +- if test x"$XMMS_CONFIG" == x"no"; then ++ if test x"$XMMS_CONFIG" = x"no"; then + AC_MSG_ERROR([*** XMMS not found. Please install XMMS first. ***]) + fi + diff --git a/audio/xfce4-xmms-plugin/patches/patch-ab b/audio/xfce4-xmms-plugin/patches/patch-ab new file mode 100644 index 00000000000..869a2c40476 --- /dev/null +++ b/audio/xfce4-xmms-plugin/patches/patch-ab @@ -0,0 +1,22 @@ +$NetBSD: patch-ab,v 1.1 2006/10/12 05:43:20 martti Exp $ + +--- configure.orig 2006-10-12 08:39:06.000000000 +0000 ++++ configure 2006-10-12 08:39:35.000000000 +0000 +@@ -20790,7 +20790,7 @@ + withval="$with_player" + + fi; +-if test x"$with_player" == x"beep"; then ++if test x"$with_player" = x"beep"; then + echo "$as_me:$LINENO: result: Beep media player" >&5 + echo "${ECHO_T}Beep media player" >&6 + +@@ -20942,7 +20942,7 @@ + done + test -n "$XMMS_CONFIG" || XMMS_CONFIG="no" + +- if test x"$XMMS_CONFIG" == x"no"; then ++ if test x"$XMMS_CONFIG" = x"no"; then + { { echo "$as_me:$LINENO: error: *** XMMS not found. Please install XMMS first. ***" >&5 + echo "$as_me: error: *** XMMS not found. Please install XMMS first. ***" >&2;} + { (exit 1); exit 1; }; } |