Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Oct 2012 06:30:41 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r305232 - head/x11/avant-window-navigator
Message-ID:  <201210040630.q946Ufro083314@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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