svn commit: r305232 - head/x11/avant-window-navigator

Baptiste Daroussin bapt at FreeBSD.org
Thu Oct 4 06:47:06 UTC 2012


Author: bapt
Date: Thu Oct  4 06:30:40 2012
New Revision: 305232
URL: http://svn.freebsd.org/changeset/ports/305232

Log:
  Convert to new options framework

Modified:
  head/x11/avant-window-navigator/Makefile

Modified: head/x11/avant-window-navigator/Makefile
==============================================================================
--- head/x11/avant-window-navigator/Makefile	Thu Oct  4 06:28:21 2012	(r305231)
+++ head/x11/avant-window-navigator/Makefile	Thu Oct  4 06:30:40 2012	(r305232)
@@ -42,21 +42,21 @@ PKGNAMESUFFIX=	-gnome
 CONFLICTS=	${PORTNAME}-xfce4-[0-9]* ${PORTNAME}-[0-9]*
 WITH_GCONF=	yes
 .elif ${AWN_DESKTOP} == "xfce4"
-OPTIONS=	GCONF "Use GConf to store configuration information" off
+OPTIONS_DEFINE=	GCONF
 USE_XFCE+=	thunar
 CONFIGURE_ARGS+=	--with-desktop=xfce4
 PKGNAMESUFFIX=	-xfce4
 CONFLICTS=	${PORTNAME}-gnome-[0-9]* ${PORTNAME}-[0-9]*
 .else
 # agnostic desktop
-OPTIONS=	GCONF "Use GConf to store configuration information" off
+OPTIONS_DEFINE=	GCONF
 CONFIGURE_ARGS+=	--with-desktop=agnostic
 CONFLICTS=	${PORTNAME}-gnome-[0-9]* ${PORTNAME}-xfce4-[0-9]*
 .endif
 
 .include <bsd.port.options.mk>
 
-.if defined(WITH_GCONF)
+.if ${PORT_OPTIONS:MGCONF}
 USE_GNOME+=	gconf2
 GCONF_SCHEMAS=	awn.schemas awn-applets-shared.schemas
 CONFIGURE_ARGS+=	--with-gconf



More information about the svn-ports-all mailing list