View | Details | Raw Unified | Return to bug 123057
Collapse All | Expand All

(-)gxmms/Makefile (-2 / +1 lines)
Lines 18-27 Link Here
18
BUILD_DEPENDS=	xmms:${PORTSDIR}/multimedia/xmms
18
BUILD_DEPENDS=	xmms:${PORTSDIR}/multimedia/xmms
19
RUN_DEPENDS=	xmms:${PORTSDIR}/multimedia/xmms
19
RUN_DEPENDS=	xmms:${PORTSDIR}/multimedia/xmms
20
20
21
BROKEN=		Does not compile
22
23
USE_GMAKE=	yes
21
USE_GMAKE=	yes
24
USE_GNOME=	gnomehack gnomepanel gnomeprefix intlhack
22
USE_GNOME=	gnomehack gnomepanel gnomeprefix intlhack
23
USE_GETTEXT=	yes
25
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
26
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
25
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
27
		LDFLAGS="-L${LOCALBASE}/lib"
26
		LDFLAGS="-L${LOCALBASE}/lib"
(-)gxmms/files/patch-src-interface.c (+11 lines)
Line 0 Link Here
1
--- src/interface.c.orig	2008-04-24 15:30:43.000000000 +0200
2
+++ src/interface.c	2008-04-24 15:31:31.000000000 +0200
3
@@ -224,7 +224,7 @@
4
     gdouble width;
5
     GtkWidget *progress;
6
     BonoboUIComponent *popup;
7
-    gchar info[256] = _("No track");
8
+    gchar info[256] = "No track";
9
 
10
     progress = xmms->track_control.progress;
11
     if (!xmms_remote_is_running(xmms->session))
(-)gxmms/files/patch-src-xmmsctrl.c (-4 / +8 lines)
Lines 1-7 Link Here
1
--- src/xmmsctrl.c.orig	Fri Sep  3 00:19:54 2004
1
--- src/xmmsctrl.c.orig	2004-09-03 00:19:54.000000000 +0200
2
+++ src/xmmsctrl.c	Thu Nov  4 14:36:56 2004
2
+++ src/xmmsctrl.c	2008-04-24 15:36:57.000000000 +0200
3
@@ -48,13 +48,14 @@
3
@@ -45,16 +45,17 @@
4
     static gchar *msg_error = _("Sorry, unable to launch XMMS.");
4
 xmms_start(XMMSData *xmms)
5
 {
6
     static gchar *exec_cmd = "xmms";
7
-    static gchar *msg_error = _("Sorry, unable to launch XMMS.");
8
+    gchar *msg_error = _("Sorry, unable to launch XMMS.");
5
     gint timer;
9
     gint timer;
6
     time_t lt;
10
     time_t lt;
7
+    gchar *exec_this;
11
+    gchar *exec_this;

Return to bug 123057