Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Nov 2013 15:49:35 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r334326 - in head/audio/musica: . files
Message-ID:  <201311191549.rAJFnZ0H066373@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gahr
Date: Tue Nov 19 15:49:35 2013
New Revision: 334326
URL: http://svnweb.freebsd.org/changeset/ports/334326

Log:
  - Fix CONFIGURE error with clang
  - Add LICENSE (GPLv2)
  - STAGE-clean

Added:
  head/audio/musica/files/patch-configure   (contents, props changed)
Modified:
  head/audio/musica/Makefile

Modified: head/audio/musica/Makefile
==============================================================================
--- head/audio/musica/Makefile	Tue Nov 19 15:25:08 2013	(r334325)
+++ head/audio/musica/Makefile	Tue Nov 19 15:49:35 2013	(r334326)
@@ -10,8 +10,9 @@ MASTER_SITES=	http://ict.ewi.tudelft.nl/
 MAINTAINER=	gahr@FreeBSD.org
 COMMENT=	GTK based midi player
 
+LICENSE=	GPLv2
+
 USE_GNOME=	gtk12
-NO_STAGE=	yes
 
 GNU_CONFIGURE=	yes
 USES=		gmake

Added: head/audio/musica/files/patch-configure
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/musica/files/patch-configure	Tue Nov 19 15:49:35 2013	(r334326)
@@ -0,0 +1,38 @@
+--- configure.orig	2013-11-19 16:47:26.000000000 +0100
++++ configure	2013-11-19 16:47:26.000000000 +0100
+@@ -1108,7 +1108,7 @@
+ cat > conftest.$ac_ext <<EOF
+ #line 1110 "configure"
+ #include "confdefs.h"
+-main(){return(0);}
++int main(){return(0);}
+ EOF
+ if { (eval echo configure:1114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+   ac_cv_prog_cc_works=yes
+@@ -1524,7 +1524,7 @@
+ cat > conftest.$ac_ext <<EOF
+ #line 1526 "configure"
+ #include "confdefs.h"
+-main(){return(0);}
++int main(){return(0);}
+ EOF
+ if { (eval echo configure:1530: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+   ac_cv_prog_cc_works=yes
+@@ -1650,7 +1650,7 @@
+ cat > conftest.$ac_ext <<EOF
+ #line 1652 "configure"
+ #include "confdefs.h"
+-main(){return(0);}
++int main(){return(0);}
+ EOF
+ if { (eval echo configure:1656: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+   ac_cv_prog_cxx_works=yes
+@@ -2639,7 +2639,7 @@
+ #line 2640 "configure"
+ #include "confdefs.h"
+ 
+-main()
++int main()
+ {
+   char c0 = 0x40, c1 = 0x80, c2 = 0x81;
+   exit(memcmp(&c0, &c2, 1) < 0 && memcmp(&c1, &c2, 1) < 0 ? 0 : 1);



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