Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Dec 2013 19:21:09 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r335532 - in head/audio/x11amp: . files
Message-ID:  <201312021921.rB2JL9c4039144@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@scphys.kyoto-u.ac.jp
+MAINTAINER=	ports@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))



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312021921.rB2JL9c4039144>