Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Oct 2017 15:57:51 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r451901 - in head: . Mk Mk/Uses audio/xmixer audio/xmms-faad audio/xmp comms/cqrlog databases/sqlrelay deskutils/planner devel/distcc devel/mono-addins devel/pwlib editors/libreoffice e...
Message-ID:  <201710121557.v9CFvp2V064171@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Thu Oct 12 15:57:51 2017
New Revision: 451901
URL: https://svnweb.freebsd.org/changeset/ports/451901

Log:
  Remove WANT_GNOME and HAVE_GNOME.
  
  Approved by:	bapt kwm
  Sponsored by:	Absolight
  Differential Revision:	  https://reviews.freebsd.org/D12643

Modified:
  head/CHANGES
  head/Mk/Uses/gnome.mk
  head/Mk/bsd.sanity.mk   (contents, props changed)
  head/audio/xmixer/Makefile   (contents, props changed)
  head/audio/xmms-faad/Makefile   (contents, props changed)
  head/audio/xmp/Makefile   (contents, props changed)
  head/comms/cqrlog/Makefile   (contents, props changed)
  head/databases/sqlrelay/Makefile   (contents, props changed)
  head/deskutils/planner/Makefile   (contents, props changed)
  head/devel/distcc/Makefile   (contents, props changed)
  head/devel/mono-addins/Makefile   (contents, props changed)
  head/devel/pwlib/Makefile   (contents, props changed)
  head/editors/libreoffice/Makefile   (contents, props changed)
  head/emulators/visualboyadvance-m/Makefile   (contents, props changed)
  head/java/classpath/Makefile   (contents, props changed)
  head/java/icedtea-web/Makefile   (contents, props changed)
  head/misc/magicpoint/Makefile   (contents, props changed)
  head/multimedia/gpodder/Makefile   (contents, props changed)
  head/multimedia/mplayer/Makefile.common   (contents, props changed)
  head/multimedia/transcode/Makefile   (contents, props changed)
  head/net-im/libpurple/Makefile   (contents, props changed)
  head/net-im/pidgin/Makefile   (contents, props changed)
  head/net/unison-devel/Makefile   (contents, props changed)
  head/net/unison/Makefile   (contents, props changed)
  head/net/unison232/Makefile   (contents, props changed)
  head/net/unison240/Makefile   (contents, props changed)
  head/net/yate/Makefile   (contents, props changed)
  head/print/ghostscript7-base/Makefile   (contents, props changed)
  head/sysutils/cdrdao/Makefile   (contents, props changed)
  head/sysutils/gkrellm2/Makefile   (contents, props changed)
  head/sysutils/thefish/Makefile   (contents, props changed)
  head/sysutils/xcdroast/Makefile   (contents, props changed)
  head/textproc/uim/Makefile   (contents, props changed)
  head/www/linux-opera/Makefile   (contents, props changed)
  head/www/nginx-devel/Makefile   (contents, props changed)
  head/www/nginx/Makefile   (contents, props changed)
  head/x11-fm/doublecmd/Makefile   (contents, props changed)
  head/x11-themes/gnome-icons-jini/Makefile   (contents, props changed)
  head/x11-themes/gnome-icons/bsd.gnome-icons.mk   (contents, props changed)
  head/x11/eaglemode/Makefile   (contents, props changed)
  head/x11/metisse/Makefile   (contents, props changed)
  head/x11/xvattr/Makefile   (contents, props changed)

Modified: head/CHANGES
==============================================================================
--- head/CHANGES	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/CHANGES	Thu Oct 12 15:57:51 2017	(r451901)
@@ -10,6 +10,12 @@ in the release notes and/or placed into UPDATING.
 
 All ports committers are allowed to commit to this file.
 
+20171012:
+AUTHOR: mat@FreeBSD.org
+
+  Remove WANT_GNOME and HAVE_GNOME, they were in disuse, and made useless by
+  options.
+
 20171011:
 AUTHOR: bapt@FreeBSD.org
 

Modified: head/Mk/Uses/gnome.mk
==============================================================================
--- head/Mk/Uses/gnome.mk	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/Mk/Uses/gnome.mk	Thu Oct 12 15:57:51 2017	(r451901)
@@ -477,70 +477,6 @@ USE_GNOME+=	gtk-update-icon-cache
 
 # End component definition section
 
-# This section defines tests for optional software.  These work off four
-# types of variables:  WANT_GNOME, WITH_GNOME, HAVE_GNOME and USE_GNOME.
-# The logic of this is that a port can WANT support for a package; a user
-# specifies if they want ports compiled WITH certain features; this section
-# tests if we HAVE these features; and the port is then free to USE them.
-
-# The logic of this section is like this:
-#
-# .if defined(WANT_GNOME) && !defined(WITHOUT_GNOME)
-#   .for foo in ALL_GNOME_COMPONENTS
-#     .if defined(WITH_GNOME)
-#       HAVE_GNOME += foo
-#     .elif (foo installed)
-#       HAVE_GNOME += foo
-#     .else
-#       Print option message
-#     .endif
-#   .endfor
-# .endif
-#
-# Although it appears a little more convoluted in the tests.
-
-# Ports can make use of this like so:
-#
-# WANT_GNOME=		yes
-#
-# .include <bsd.port.pre.mk>
-#
-# .if ${HAVE_GNOME:Mfoo}!=""
-# ... Do some things ...
-# USE_GNOME=		foo
-# .else
-# ... Do some other things ...
-# .endif
-
-# We also check each component to see if it has a desktop requirement.  If
-# it does, and its requirement disagrees with the user's chosen desktop,
-# do not add the component to the HAVE_GNOME list.
-
-_USE_GNOME_SAVED:=${USE_GNOME}
-HAVE_GNOME?=
-.if (defined(WANT_GNOME) && !defined(WITHOUT_GNOME))
-. for component in ${_USE_GNOME_ALL}
-.         if exists(${${component}_DETECT})
-HAVE_GNOME+=	${component}
-.         elif defined(WITH_GNOME)
-.            if ${WITH_GNOME}=="yes" || ${WITH_GNOME:M${component}}!="" \
-		|| ${WITH_GNOME}=="1"
-HAVE_GNOME+=	${component}
-.            endif
-.         endif
-. endfor
-.elif defined(WITHOUT_GNOME)
-.  if ${WITHOUT_GNOME}!="yes" && ${WITHOUT_GNOME}!="1"
-.    for component in ${_USE_GNOME_ALL}
-.      if ${WITHOUT_GNOME:M${component}}==""
-.        if exists(${${component}_DETECT})
-HAVE_GNOME+=	${component}
-.        endif
-.      endif
-.    endfor
-.  endif
-.endif
-
 .if defined(USE_GNOME)
 # First of all expand all USE_GNOME_IMPL recursively
 . for component in ${_USE_GNOME_ALL}
@@ -627,15 +563,6 @@ GNOME_PRE_PATCH+=	; ${${component}_PRE_PATCH}
 . if defined(GCONF_SCHEMAS)
 MAKE_ENV+=	GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
 . endif
-.endif
-
-.if defined(WANT_GNOME)
-USE_GNOME?=
-.  if ${_USE_GNOME_SAVED}==${USE_GNOME}
-PLIST_SUB+=	GNOME:="@comment " NOGNOME:=""
-.  else
-PLIST_SUB+=	GNOME:="" NOGNOME:="@comment "
-.  endif
 .endif
 
 .if defined(USE_GNOME_SUBR)

Modified: head/Mk/bsd.sanity.mk
==============================================================================
--- head/Mk/bsd.sanity.mk	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/Mk/bsd.sanity.mk	Thu Oct 12 15:57:51 2017	(r451901)
@@ -179,7 +179,7 @@ SANITY_UNSUPPORTED=	USE_OPENAL USE_FAM USE_MAKESELF US
 		USE_PYTHON_PREFIX USE_BZIP2 USE_XZ USE_PGSQL NEED_ROOT \
 		UNIQUENAME LATEST_LINK USE_SQLITE USE_FIREBIRD USE_PHPEXT \
 		USE_ZENDEXT USE_PHP_BUILD USE_BDB PLIST_DIRSTRY USE_RCORDER \
-		USE_OPENSSL
+		USE_OPENSSL WANT_GNOME
 SANITY_DEPRECATED=	PYTHON_PKGNAMESUFFIX USE_AUTOTOOLS \
 			USE_MYSQL WANT_MYSQL_VER \
 			USE_PHPIZE WANT_PHP_CLI WANT_PHP_CGI WANT_PHP_MOD \
@@ -239,6 +239,7 @@ WANT_PHP_MOD_ALT=	USES=php:mod
 WANT_PHP_WEB_ALT=	USES=php:web
 WANT_PHP_EMB_ALT=	USES=php:embed
 USE_RCORDER_ALT=	USE_RC_SUBR=${USE_RCORDER}
+WANT_GNOME_ALT=		USES=gnome
 
 .for a in ${SANITY_DEPRECATED}
 .if defined(${a})

Modified: head/audio/xmixer/Makefile
==============================================================================
--- head/audio/xmixer/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/audio/xmixer/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -12,7 +12,6 @@ COMMENT=	Audio mixer (gtk and Xlib) for X11R6
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
-WANT_GNOME=	yes
 GNU_CONFIGURE=	yes
 ALL_TARGET=	${PROGRAMS}
 

Modified: head/audio/xmms-faad/Makefile
==============================================================================
--- head/audio/xmms-faad/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/audio/xmms-faad/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -21,7 +21,6 @@ WRKSRC_SUBDIR=	plugins/xmms/src
 
 USE_GNOME=	gtk12
 USES=		pkgconfig tar:bzip2
-WANT_GNOME=	yes
 EXTRA_CFLAGS=	`xmms-config --cflags`
 EXTRA_LDFLAGS=	`xmms-config --libs`
 

Modified: head/audio/xmp/Makefile
==============================================================================
--- head/audio/xmp/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/audio/xmp/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -16,7 +16,6 @@ LICENSE=	GPLv2
 LIB_DEPENDS=	libxmp.so:audio/libxmp
 
 USES=		gmake localbase:ldflags pkgconfig
-WANT_GNOME=	yes
 GNU_CONFIGURE=	yes
 
 CONFIGURE_ARGS+=	--sysconfdir=${PREFIX}/etc

Modified: head/comms/cqrlog/Makefile
==============================================================================
--- head/comms/cqrlog/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/comms/cqrlog/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -25,7 +25,6 @@ SHEBANG_FILES=	tools/cqrlog-apparmor-fix \
 USE_FPC=	cairo fcl-base fcl-db fcl-image fcl-json fcl-net fcl-web \
 		fcl-registry rtl-extra fcl-xml mysql numlib openssl pasjpeg x11
 
-WANT_GNOME=	yes
 ALL_TARGET=	${PORTNAME}
 
 LAZARUS_VER=	1.6.4

Modified: head/databases/sqlrelay/Makefile
==============================================================================
--- head/databases/sqlrelay/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/databases/sqlrelay/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -16,7 +16,6 @@ LIB_DEPENDS=	librudiments.so:devel/rudiments \
 		libkrb5.so:security/krb5 \
 		libcurl.so:ftp/curl
 
-WANT_GNOME=	yes
 USES=		gmake libtool pathfix python readline
 PATHFIX_MAKEFILEIN=	Makefile
 CPPFLAGS+=	-I${LOCALBASE}/include

Modified: head/deskutils/planner/Makefile
==============================================================================
--- head/deskutils/planner/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/deskutils/planner/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -16,7 +16,6 @@ USES=		desktop-file-utils gettext gmake libtool pathfi
 		shared-mime-info tar:xz
 USE_GNOME=	gnomeprefix intlhack libgnomeui libgnomeprintui \
 		libgsf
-WANT_GNOME=	yes
 INSTALLS_OMF=	yes
 INSTALLS_ICONS=	yes
 INSTALL_TARGET=	install-strip

Modified: head/devel/distcc/Makefile
==============================================================================
--- head/devel/distcc/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/devel/distcc/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -20,7 +20,6 @@ USES=		autoreconf alias gmake libtool pkgconfig
 USE_GITHUB=	yes
 GH_ACCOUNT=     distcc
 GH_TAGNAME=	9a09372
-WANT_GNOME=	yes
 
 GROUPS=		distcc
 USERS=		distcc

Modified: head/devel/mono-addins/Makefile
==============================================================================
--- head/devel/mono-addins/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/devel/mono-addins/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -16,7 +16,6 @@ GH_ACCOUNT=	mono
 GNU_CONFIGURE=	yes
 CONFIGURE_ENV=	ac_cv_path_MCS=${LOCALBASE}/bin/mcs
 USES=		autoreconf gmake mono pkgconfig
-WANT_GNOME=	yes
 
 OPTIONS_DEFINE=	GTK2 GTK3
 OPTIONS_DEFAULT=GTK2

Modified: head/devel/pwlib/Makefile
==============================================================================
--- head/devel/pwlib/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/devel/pwlib/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -25,7 +25,6 @@ WRKSRC=		${WRKDIR}/ptlib_v${PORTVERSION:S/./_/g}
 USES=		bison gmake ssl
 USE_GCC=	any
 USE_AUTOTOOLS=	autoconf
-WANT_GNOME=	yes
 USE_LDCONFIG=	yes
 MAKE_JOBS_UNSAFE=	yes
 

Modified: head/editors/libreoffice/Makefile
==============================================================================
--- head/editors/libreoffice/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/editors/libreoffice/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -103,7 +103,6 @@ USE_QT4=	# empty but required
 USE_XORG=	xaw xrandr
 USES=		autoreconf:build bison compiler:c++11-lib cpe gmake jpeg \
 		perl5 pkgconfig python shared-mime-info tar:xz
-WANT_GNOME=	yes
 
 OPTIONS_DEFINE=	CUPS GNOME GTK2 GTK3 JAVA KDE4 MMEDIA PGSQL SDK SYSTRAY \
 		TEST WEBDAV

Modified: head/emulators/visualboyadvance-m/Makefile
==============================================================================
--- head/emulators/visualboyadvance-m/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/emulators/visualboyadvance-m/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -35,7 +35,6 @@ DEBUGGER_DESC=	Enable the debugger
 ASMCORE_DESC=	Enable x86 ASM CPU cores (i386 only)
 ASMSCALERS_DESC=	Enable x86 ASM graphic filters (i386 only)
 
-WANT_GNOME=	yes
 DOS2UNIX_REGEX=	.*\.(c|cpp|h|ypp)
 USE_XORG=	x11 xext
 USE_GL=		gl glu

Modified: head/java/classpath/Makefile
==============================================================================
--- head/java/classpath/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/java/classpath/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -24,7 +24,6 @@ USES=		gmake iconv libtool perl5 pkgconfig
 USE_LDCONFIG=	yes
 USE_PERL5=	build
 USE_XORG=	x11 ice xtst xaw xproto xext
-WANT_GNOME=	yes
 
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib

Modified: head/java/icedtea-web/Makefile
==============================================================================
--- head/java/icedtea-web/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/java/icedtea-web/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -28,8 +28,6 @@ USE_XORG=	x11
 USES=		desktop-file-utils gmake perl5 pkgconfig shebangfix
 SHEBANG_FILES=	jrunscript.in launcher/launchers.in
 
-WANT_GNOME=	yes
-
 CONFIGURE_ARGS=		--with-hamcrest="${HAMCREST_JAR}"
 CONFIGURE_ARGS+=	--with-jdk-home="${JAVA_HOME}"
 CONFIGURE_ARGS+=	--with-jre-home="${JAVA_HOME}/jre"

Modified: head/misc/magicpoint/Makefile
==============================================================================
--- head/misc/magicpoint/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/misc/magicpoint/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -21,7 +21,6 @@ MAKE_JOBS_UNSAFE=	yes
 USES=		imake:env perl5 pkgconfig
 USE_PERL5=	run
 USE_XORG=	x11 xext xmu xt sm ice xi xtst
-WANT_GNOME=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-vflib --enable-locale
 CONFIGURE_ENV=	mgp_cv_path_perl=${PERL}

Modified: head/multimedia/gpodder/Makefile
==============================================================================
--- head/multimedia/gpodder/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/multimedia/gpodder/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -38,7 +38,6 @@ MAKEFILE=	makefile
 NO_ARCH=	yes
 USES=		gettext gmake python:-2.7 shebangfix
 SHEBANG_FILES=	src/gpodder/*.py share/gpodder/examples/*.py share/gpodder/extensions/*.py
-WANT_GNOME=	yes
 INSTALLS_ICONS=	yes
 PLIST_SUB+=	PORTVERSION=${PORTVERSION}
 PORTDOCS=	PKG-INFO README

Modified: head/multimedia/mplayer/Makefile.common
==============================================================================
--- head/multimedia/mplayer/Makefile.common	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/multimedia/mplayer/Makefile.common	Thu Oct 12 15:57:51 2017	(r451901)
@@ -50,8 +50,6 @@ CONFIGURE_ARGS=	--cc="${CC}" \
 		--disable-real \
 		--yasm=''
 
-WANT_GNOME=	yes
-
 common-post-patch:
 	@${REINPLACE_CMD} \
 		-e 's|/dev/dvd|${DEFAULT_DVD_DEVICE}|; \

Modified: head/multimedia/transcode/Makefile
==============================================================================
--- head/multimedia/transcode/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/multimedia/transcode/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -16,7 +16,6 @@ LIB_DEPENDS=	libavcodec.so:multimedia/ffmpeg
 
 USE_LDCONFIG=	yes
 USES=		gmake libtool pkgconfig tar:bzip2
-WANT_GNOME=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--enable-oss
 CPPFLAGS+=	-I${LOCALBASE}/include

Modified: head/net-im/libpurple/Makefile
==============================================================================
--- head/net-im/libpurple/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/net-im/libpurple/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -28,12 +28,10 @@ INSTALL_TARGET=	install-strip
 # set these macros themselves.
 USES+=		iconv python shebangfix
 USE_LDCONFIG=	yes
-WANT_GNOME=	yes
 SHEBANG_FILES=	libpurple/purple-remote \
 		libpurple/purple-url-handler
 
 .if defined(PACKAGE_BUILDING)
-.undef WITHOUT_GNOME
 WITH_GNOME=	yes
 .endif
 
@@ -126,7 +124,7 @@ USE_GNOME+=	gconf2
 GCONF_SCHEMAS=	purple.schemas
 .endif
 
-#.if defined(WITH_GTKUI) && ${HAVE_GNOME:Mevolutiondataserver}!=""
+#.if defined(WITH_GTKUI)
 #USE_GNOME+=		evolutiondataserver
 #PLIST_SUB+=		EVO=""
 #CONFIGURE_ARGS+=	--enable-gevolution

Modified: head/net-im/pidgin/Makefile
==============================================================================
--- head/net-im/pidgin/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/net-im/pidgin/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -24,7 +24,6 @@ USES=		python:build
 USE_LDCONFIG=	yes
 USE_GNOME=	gnomeprefix gtk20 intltool
 USE_XORG=	xscrnsaver sm
-WANT_GNOME=	yes
 CONFIGURE_ARGS=	--disable-consoleui \
 		--disable-nm \
 		--enable-screensaver \

Modified: head/net/unison-devel/Makefile
==============================================================================
--- head/net/unison-devel/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/net/unison-devel/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -23,7 +23,6 @@ PLIST_SUB=	PORTVERSION=${PORTVERSION}
 USES=		gmake
 USE_OCAML=	yes
 NO_OCAML_RUNDEPENDS=yes
-WANT_GNOME=	yes
 MAKE_ARGS=	CFLAGS=""
 CONFLICTS=	unison-[0-9]* unison-nox11-[0-9]*
 

Modified: head/net/unison/Makefile
==============================================================================
--- head/net/unison/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/net/unison/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -20,7 +20,6 @@ USES=		gmake localbase
 USE_OCAML=	yes
 WRKSRC=		${WRKDIR}/src
 NO_OCAML_RUNDEPENDS=yes
-WANT_GNOME=	yes
 CONFLICTS?=	unison-devel-[0-9]* unison-nox11-[0-9]*
 MAKE_ENV=	CLIBS="${LIBS:S/^-/-ccopt -/}" COFLAGS="${CFLAGS:C/ *(-[^ ]*) */ -ccopt \"\1 \"/gW}"
 MAKE_JOBS_UNSAFE=	yes

Modified: head/net/unison232/Makefile
==============================================================================
--- head/net/unison232/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/net/unison232/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -21,7 +21,6 @@ PLIST_SUB=	PORTVERSION=${PORTVERSION}
 USES=		gmake
 USE_OCAML=	yes
 NO_OCAML_RUNDEPENDS=yes
-WANT_GNOME=	yes
 MAKE_ARGS=	CFLAGS=""
 
 MAKE_JOBS_UNSAFE=	yes

Modified: head/net/unison240/Makefile
==============================================================================
--- head/net/unison240/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/net/unison240/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -20,7 +20,6 @@ PLIST_SUB=	PORTVERSION=${PORTVERSION}
 USES=		gmake
 USE_OCAML=	yes
 NO_OCAML_RUNDEPENDS=yes
-WANT_GNOME=	yes
 MAKE_ARGS=	CFLAGS=""
 
 MAKE_JOBS_UNSAFE=	yes

Modified: head/net/yate/Makefile
==============================================================================
--- head/net/yate/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/net/yate/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -26,7 +26,6 @@ SHEBANG_FILES=	share/scripts/banbrutes.php \
 		share/scripts/route.php \
 		share/scripts/voicemail.php
 USE_LDCONFIG=	yes
-WANT_GNOME=	yes
 GNU_CONFIGURE=	yes
 
 CONFIGURE_ARGS=	--without-fdsize \

Modified: head/print/ghostscript7-base/Makefile
==============================================================================
--- head/print/ghostscript7-base/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/print/ghostscript7-base/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -30,7 +30,6 @@ CONFLICTS_INSTALL= \
 USES=		autoreconf gmake jpeg shebangfix tar:bzip2
 USE_LDCONFIG=	yes
 SHEBANG_FILES=	lib/fixmswrd.pl
-WANT_GNOME=	yes
 # normazile WRKSRC so things like cups-pstoraster may work
 WRKSRC=		${WRKDIR}/${PORTNAME}
 MAKE_JOBS_UNSAFE=	yes

Modified: head/sysutils/cdrdao/Makefile
==============================================================================
--- head/sysutils/cdrdao/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/sysutils/cdrdao/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -37,7 +37,6 @@ TOC2MP3_DESC=		Build with toc2mp3 (requires audio/lame
 
 .if ${PORTNAME} == "gcdmaster"
 USES+=			pkgconfig shared-mime-info
-WANT_GNOME=		yes
 GCONF_SCHEMAS=		gcdmaster.schemas
 LIB_DEPENDS+=		${MP3OGG_LIB_DEPENDS} \
 			libgnomeuimm-2.6.so:x11-toolkits/libgnomeuimm26

Modified: head/sysutils/gkrellm2/Makefile
==============================================================================
--- head/sysutils/gkrellm2/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/sysutils/gkrellm2/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -15,7 +15,6 @@ LICENSE=	GPLv3
 
 USES=		gmake pkgconfig tar:bzip2
 USE_RC_SUBR=	gkrellmd
-WANT_GNOME=	yes
 
 OPTIONS_DEFINE=		DOCS CLIENT NLS NTLM OPENSSL
 OPTIONS_DEFAULT=	CLIENT NTLM OPENSSL

Modified: head/sysutils/thefish/Makefile
==============================================================================
--- head/sysutils/thefish/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/sysutils/thefish/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -12,7 +12,6 @@ COMMENT=	Gtk+/ncurses rc.conf editor/management tool
 LICENSE=	BSD2CLAUSE
 
 USES=		pkgconfig tar:xz
-WANT_GNOME=	yes
 
 OPTIONS_SINGLE=		X11
 OPTIONS_SINGLE_X11=	GTK2

Modified: head/sysutils/xcdroast/Makefile
==============================================================================
--- head/sysutils/xcdroast/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/sysutils/xcdroast/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -22,7 +22,6 @@ BUILD_DEPENDS=	cdrecord:sysutils/cdrtools
 
 USES=		gettext gmake iconv pkgconfig
 GNU_CONFIGURE=	yes
-WANT_GNOME=	yes
 
 CONFIGURE_ENV+=	GTK_CONFIG="${GTK_CONFIG}" \
 		GLIB_CONFIG="${GLIB_CONFIG}"

Modified: head/textproc/uim/Makefile
==============================================================================
--- head/textproc/uim/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/textproc/uim/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -16,7 +16,6 @@ COMMENT?=	Input method library
 BROKEN_aarch64=	Fails to build: The collector has not been ported to this machine/OS combination
 
 USE_LDCONFIG=	yes
-WANT_GNOME=	yes
 USE_GNOME+=	glib20 intltool
 USES+=		gettext gmake iconv libedit libtool pathfix pkgconfig perl5 tar:bzip2
 USE_PERL5=	build

Modified: head/www/linux-opera/Makefile
==============================================================================
--- head/www/linux-opera/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/www/linux-opera/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -24,7 +24,6 @@ RUN_DEPENDS=	update-mime-database:misc/shared-mime-inf
 USES=		desktop-file-utils linux shared-mime-info tar:xz
 USE_LINUX=	gtk2 sqlite3 xorglibs
 ONLY_FOR_ARCHS=	i386 amd64
-WANT_GNOME=	yes
 INSTALLS_ICONS=	yes
 
 NO_BUILD=	yes

Modified: head/www/nginx-devel/Makefile
==============================================================================
--- head/www/nginx-devel/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/www/nginx-devel/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -236,8 +236,6 @@ X11_DESC=			graphics/ImageMagick[-nox11] dependency
 XSS_DESC=			3rd party xss module
 VIDEO_DESC=			Video module support
 
-WANT_GNOME=	yes
-
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MX11}

Modified: head/www/nginx/Makefile
==============================================================================
--- head/www/nginx/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/www/nginx/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -246,8 +246,6 @@ X11_DESC=			graphics/ImageMagick[-nox11] dependency
 XSS_DESC=			3rd party xss module
 VIDEO_DESC=			Video module support
 
-WANT_GNOME=	yes
-
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MX11}

Modified: head/x11-fm/doublecmd/Makefile
==============================================================================
--- head/x11-fm/doublecmd/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/x11-fm/doublecmd/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -26,7 +26,6 @@ USE_FPC=	cairo fcl-base fcl-db fcl-image fcl-json fcl-
 		fcl-xml iconvenc pasjpeg rtl-extra x11
 USE_XORG=	x11
 DOS2UNIX_FILES=	src/dmhelpmanager.pas
-WANT_GNOME=	yes
 
 PLIST=		${WRKDIR}/pkg-plist
 

Modified: head/x11-themes/gnome-icons-jini/Makefile
==============================================================================
--- head/x11-themes/gnome-icons-jini/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/x11-themes/gnome-icons-jini/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -12,7 +12,6 @@ COMMENT=	Jini Icons for Gnome
 
 NO_BUILD=	yes
 WRKSRC=		${WRKDIR}
-WANT_GNOME=	yes
 INSTALLS_ICONS=	yes
 
 post-extract:

Modified: head/x11-themes/gnome-icons/bsd.gnome-icons.mk
==============================================================================
--- head/x11-themes/gnome-icons/bsd.gnome-icons.mk	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/x11-themes/gnome-icons/bsd.gnome-icons.mk	Thu Oct 12 15:57:51 2017	(r451901)
@@ -9,7 +9,6 @@ NO_ARCH=	yes
 REASON=		Themes may contain artwork not done by the author. \
 		Keep FreeBSD safe if theme author violated copyrights.
 
-WANT_GNOME=	yes
 INSTALLS_ICONS=	yes
 
 do-install: icon-do-install

Modified: head/x11/eaglemode/Makefile
==============================================================================
--- head/x11/eaglemode/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/x11/eaglemode/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -20,7 +20,6 @@ USES=		compiler:features jpeg perl5 pkgconfig shebangf
 USE_PERL5=	build
 USE_XORG=	x11 xext xxf86vm
 SUB_FILES=	eaglemode.sh
-WANT_GNOME=	yes
 
 BUILD_ARGS=	continue=no
 

Modified: head/x11/metisse/Makefile
==============================================================================
--- head/x11/metisse/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/x11/metisse/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -44,7 +44,6 @@ GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-fontdir=${LOCALBASE}/share/fonts
 USE_LDCONFIG=	yes
 USE_XORG=	xcursor xft xinerama xpm xrender xt xtst
-WANT_GNOME=	yes
 MAKE_ARGS=	METISSE_DOC_DIR="${DOCSDIR}"
 INSTALL_TARGET=	install-strip
 

Modified: head/x11/xvattr/Makefile
==============================================================================
--- head/x11/xvattr/Makefile	Thu Oct 12 15:50:06 2017	(r451900)
+++ head/x11/xvattr/Makefile	Thu Oct 12 15:57:51 2017	(r451901)
@@ -12,7 +12,6 @@ MAINTAINER=	cy@FreeBSD.org
 COMMENT=	Getting and setting Xv attributes
 
 USE_XORG=	x11 xv
-WANT_GNOME=	yes
 USES=		pkgconfig
 
 PLIST_FILES=	bin/${PORTNAME} bin/g${PORTNAME} \



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