From owner-svn-ports-head@freebsd.org Sun Mar 25 21:48:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51622F71480; Sun, 25 Mar 2018 21:48:33 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 016187B0A8; Sun, 25 Mar 2018 21:48:33 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F058423BE3; Sun, 25 Mar 2018 21:48:32 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2PLmWnk016643; Sun, 25 Mar 2018 21:48:32 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2PLmWOa016635; Sun, 25 Mar 2018 21:48:32 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201803252148.w2PLmWOa016635@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Sun, 25 Mar 2018 21:48:32 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: brd X-SVN-Commit-Paths: in head: editors/gedit editors/gedit-plugins editors/pluma math/gnome-calculator x11-fm/sushi x11-toolkits/gtksourceview3 x11/mate-applets X-SVN-Commit-Revision: 465547 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Mar 2018 21:48:33 -0000 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