diff options
author | bapt <bapt@FreeBSD.org> | 2012-10-04 14:30:40 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-10-04 14:30:40 +0800 |
commit | 0dbc32d23f10f4fed472760dda6950e7ea72e73b (patch) | |
tree | ef2b260af626de148986c1beff5c364323f74ffb /x11 | |
parent | 363d1b946575336b2f8151f06f3901ab3618af38 (diff) | |
download | freebsd-ports-gnome-0dbc32d23f10f4fed472760dda6950e7ea72e73b.tar.gz freebsd-ports-gnome-0dbc32d23f10f4fed472760dda6950e7ea72e73b.tar.zst freebsd-ports-gnome-0dbc32d23f10f4fed472760dda6950e7ea72e73b.zip |
Convert to new options framework
Diffstat (limited to 'x11')
-rw-r--r-- | x11/avant-window-navigator/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/avant-window-navigator/Makefile b/x11/avant-window-navigator/Makefile index 80a8d6e9cdf1..cf90b3cc02a8 100644 --- a/x11/avant-window-navigator/Makefile +++ b/x11/avant-window-navigator/Makefile @@ -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 |