Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Mar 2018 21:48:32 +0000 (UTC)
From:      Brad Davis <brd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r465547 - in head: editors/gedit editors/gedit-plugins editors/pluma math/gnome-calculator x11-fm/sushi x11-toolkits/gtksourceview3 x11/mate-applets
Message-ID:  <201803252148.w2PLmWOa016635@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brd
Date: Sun Mar 25 21:48:32 2018
New Revision: 465547
URL: https://svnweb.freebsd.org/changeset/ports/465547

Log:
  Fix build on ppc64 by specifying what is needed from the compiler.
  
  PR:		225635
  Submitted by:	jhibbits
  Approved by:	maintainer timeout

Modified:
  head/editors/gedit-plugins/Makefile
  head/editors/gedit/Makefile
  head/editors/pluma/Makefile
  head/math/gnome-calculator/Makefile
  head/x11-fm/sushi/Makefile
  head/x11-toolkits/gtksourceview3/Makefile
  head/x11/mate-applets/Makefile

Modified: head/editors/gedit-plugins/Makefile
==============================================================================
--- head/editors/gedit-plugins/Makefile	Sun Mar 25 20:49:08 2018	(r465546)
+++ head/editors/gedit-plugins/Makefile	Sun Mar 25 21:48:32 2018	(r465547)
@@ -20,8 +20,9 @@ RUN_DEPENDS=	gedit>=0:editors/gedit
 
 PORTSCOUT=	limitw:1,even
 
-USES=		gettext gmake gnome libtool pathfix pkgconfig \
+USES=		compiler:c11 gettext gmake gnome libtool pathfix pkgconfig \
 		python:3.4+ tar:xz
+USE_CSTD=	c11
 USE_GNOME=	gtk30 gtksourceview3 intlhack
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes

Modified: head/editors/gedit/Makefile
==============================================================================
--- head/editors/gedit/Makefile	Sun Mar 25 20:49:08 2018	(r465546)
+++ head/editors/gedit/Makefile	Sun Mar 25 21:48:32 2018	(r465547)
@@ -28,8 +28,9 @@ RUN_DEPENDS=	iso-codes>=0:misc/iso-codes \
 
 PORTSCOUT=	limitw:1,even
 
-USES=		desktop-file-utils gettext gmake gnome libtool localbase \
-		pathfix pkgconfig python:3.2+ shebangfix tar:xz
+USES=		compiler:c11 desktop-file-utils gettext gmake gnome libtool \
+		localbase pathfix pkgconfig python:3.2+ shebangfix tar:xz
+USE_CSTD=	c11
 USE_GNOME=	cairo gdkpixbuf2 gtksourceview3 intlhack introspection \
 		libxml2 pygobject3
 SHEBANG_FILES=	plugins/externaltools/data/send-to-fpaste.tool.in

Modified: head/editors/pluma/Makefile
==============================================================================
--- head/editors/pluma/Makefile	Sun Mar 25 20:49:08 2018	(r465546)
+++ head/editors/pluma/Makefile	Sun Mar 25 21:48:32 2018	(r465547)
@@ -21,7 +21,7 @@ RUN_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/iso-codes.
 
 PORTSCOUT=	limitw:1,even
 
-USES=		desktop-file-utils gmake libtool localbase \
+USES=		compiler:c11 desktop-file-utils gmake libtool localbase \
 		pathfix pkgconfig python:3.3+ shebangfix tar:xz
 USE_XORG=	ice sm x11
 USE_GNOME=	cairo gdkpixbuf2 gnomeprefix gtk30 gtksourceview3 \

Modified: head/math/gnome-calculator/Makefile
==============================================================================
--- head/math/gnome-calculator/Makefile	Sun Mar 25 20:49:08 2018	(r465546)
+++ head/math/gnome-calculator/Makefile	Sun Mar 25 21:48:32 2018	(r465547)
@@ -23,7 +23,7 @@ LIB_DEPENDS=	libmpfr.so:math/mpfr \
 
 PORTSCOUT=	limitw:1,even
 
-USES=		gettext gmake gnome libtool localbase pkgconfig tar:xz
+USES=		compiler:c11 gettext gmake gnome libtool localbase pkgconfig tar:xz
 USE_GNOME=	cairo gdkpixbuf2 gtk30 gtksourceview3 intltool
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip

Modified: head/x11-fm/sushi/Makefile
==============================================================================
--- head/x11-fm/sushi/Makefile	Sun Mar 25 20:49:08 2018	(r465546)
+++ head/x11-fm/sushi/Makefile	Sun Mar 25 21:48:32 2018	(r465547)
@@ -21,7 +21,8 @@ RUN_DEPENDS=	nautilus:x11-fm/nautilus
 
 PORTSCOUT=	limitw:1,even
 
-USES=		gettext gmake gnome libtool pathfix pkgconfig tar:xz
+USES=		compiler:c11 gettext gmake gnome libtool pathfix pkgconfig tar:xz
+USE_CSTD=	c11
 INSTALLS_ICONS=	yes
 USE_GNOME=	gnomeprefix gtksourceview3 intlhack introspection:build
 USE_LDCONFIG=	yes

Modified: head/x11-toolkits/gtksourceview3/Makefile
==============================================================================
--- head/x11-toolkits/gtksourceview3/Makefile	Sun Mar 25 20:49:08 2018	(r465546)
+++ head/x11-toolkits/gtksourceview3/Makefile	Sun Mar 25 21:48:32 2018	(r465547)
@@ -19,7 +19,8 @@ PORTSCOUT=	limitw:1,even
 
 BUILD_DEPENDS=	vala:lang/vala
 
-USES+=		gettext gmake gnome libtool pathfix pkgconfig
+USES+=		compiler:c11 gettext gmake gnome libtool pathfix pkgconfig
+USE_CSTD=	c11
 USE_GNOME=	cairo gdkpixbuf2 gnomeprefix gtk30 intlhack \
 		introspection:build libxml2 referencehack
 GNU_CONFIGURE=	yes

Modified: head/x11/mate-applets/Makefile
==============================================================================
--- head/x11/mate-applets/Makefile	Sun Mar 25 20:49:08 2018	(r465546)
+++ head/x11/mate-applets/Makefile	Sun Mar 25 21:48:32 2018	(r465547)
@@ -26,7 +26,9 @@ PORTSCOUT=	limitw:1,even
 
 #USES=		autoreconf:build gettext gmake libtool localbase pathfix \
 #		pkgconfig python shebangfix tar:xz
-USES=		gettext gmake libtool localbase pkgconfig python:2.7 shebangfix tar:xz
+USES=		compiler:c11 gettext gmake libtool localbase pkgconfig \
+		python:2.7 shebangfix tar:xz
+USE_CSTD=	c11
 #USE_MATE=	desktop icontheme libmateweather panel polkit settingsdaemon
 USE_MATE=	libmateweather panel
 USE_XORG=	ice sm x11



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