summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2006-10-12 05:43:20 +0000
committermartti <martti@pkgsrc.org>2006-10-12 05:43:20 +0000
commit992d014d29bc0e5ca85786402bb45abdc99f57d5 (patch)
tree0770b3651aaef9f9c6edd7c71b872b6212f914c2 /audio
parent65fad84e214222610967607ac677c6ccfbc1fd5c (diff)
downloadpkgsrc-992d014d29bc0e5ca85786402bb45abdc99f57d5.tar.gz
Fixed test ==
Diffstat (limited to 'audio')
-rw-r--r--audio/xfce4-xmms-plugin/distinfo4
-rw-r--r--audio/xfce4-xmms-plugin/patches/patch-aa22
-rw-r--r--audio/xfce4-xmms-plugin/patches/patch-ab22
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; }; }