svn commit: r335532 - in head/audio/x11amp: . files
Antoine Brodin
antoine at FreeBSD.org
Mon Dec 2 19:21:10 UTC 2013
Author: antoine
Date: Mon Dec 2 19:21:09 2013
New Revision: 335532
URL: http://svnweb.freebsd.org/changeset/ports/335532
Log:
- Fix build with clang
- Drop maintainership
- Stage support
PR: ports/184206
Submitted by: Tsurutani Naoki (maintainer)
Added:
head/audio/x11amp/files/patch-x11amp__controlsocket.c (contents, props changed)
head/audio/x11amp/files/patch-x11amp__playlist.c (contents, props changed)
Modified:
head/audio/x11amp/Makefile
Modified: head/audio/x11amp/Makefile
==============================================================================
--- head/audio/x11amp/Makefile Mon Dec 2 18:53:10 2013 (r335531)
+++ head/audio/x11amp/Makefile Mon Dec 2 19:21:09 2013 (r335532)
@@ -9,11 +9,12 @@ MASTER_SITES= LOCAL
MASTER_SITE_SUBDIR= hrs
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/-beta/}
-MAINTAINER= turutani at scphys.kyoto-u.ac.jp
+MAINTAINER= ports at FreeBSD.org
COMMENT= X11-based MP3 player with nice graphical interface
+LICENSE= GPLv2
+
USE_GNOME= gtk12 esound
-NO_STAGE= yes
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-static
Added: head/audio/x11amp/files/patch-x11amp__controlsocket.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/x11amp/files/patch-x11amp__controlsocket.c Mon Dec 2 19:21:09 2013 (r335532)
@@ -0,0 +1,11 @@
+--- ./x11amp/controlsocket.c.orig 1999-04-11 23:26:04.000000000 +0000
++++ ./x11amp/controlsocket.c 2013-12-02 19:13:07.000000000 +0000
+@@ -178,7 +178,7 @@
+ if(!select(fd+1,&set,NULL,NULL,&tv))
+ {
+ close(fd);
+- return;
++ pthread_exit(NULL);
+ }
+ pkt = g_malloc0(sizeof(PacketNode));
+ read(fd,&pkt->hdr,sizeof(ClientPktHeader));
Added: head/audio/x11amp/files/patch-x11amp__playlist.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/x11amp/files/patch-x11amp__playlist.c Mon Dec 2 19:21:09 2013 (r335532)
@@ -0,0 +1,11 @@
+--- ./x11amp/playlist.c.orig 1999-04-13 20:26:35.000000000 +0000
++++ ./x11amp/playlist.c 2013-12-02 19:12:21.000000000 +0000
+@@ -224,7 +224,7 @@
+ }
+ g_list_free(list);
+ playlist_generate_shuffle_list();
+- return;
++ return 0;
+ }
+ g_free(temp);
+ if(dir=opendir(path))
More information about the svn-ports-all
mailing list