diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2012-05-30 16:49:12 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2012-05-30 16:49:12 +0000 |
commit | 4b68fc723bc6478544954fa1a7554ca5c269f611 (patch) | |
tree | 752bd2703b89f85a96b337b223e14ab4bb621705 /sysutils/xfce4-settings | |
parent | 66521294b08078847ba4c56a6423c20cf34d68f8 (diff) |
Notes
Diffstat (limited to 'sysutils/xfce4-settings')
-rw-r--r-- | sysutils/xfce4-settings/Makefile | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/sysutils/xfce4-settings/Makefile b/sysutils/xfce4-settings/Makefile index df7993eecccd..e7e55163acd9 100644 --- a/sysutils/xfce4-settings/Makefile +++ b/sysutils/xfce4-settings/Makefile @@ -16,13 +16,6 @@ COMMENT= Xfce 4 settings application LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib -OPTIONS= XKLAVIER "Keyboard layout settings" off \ - XCURSOR "Enable cursor themes support" on \ - XRANDR "Enable Xrandr support" on \ - NOTIFY "Enable notification support" on \ - NLS "Enable Native Language Support" on \ - SOUND "Enable sound control" off - USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes INSTALLS_ICONS= yes @@ -34,25 +27,29 @@ USE_XFCE= configenv garcon libexo libmenu libutil xfconf USE_XORG= inputproto x11 xi CONFIGURE_ARGS= --enable-pluggable-dialogs \ - --enable-gio-unix + --enable-gio-unix + +OPTIONS_DEFINE= XKLAVIER XCURSOR XRANDR NOTIFY NLS SOUND +OPTIONS_DEFAULT= XCURSOR XRANDR NOTIFY NLS SOUND +SOUND_DESC= Enable sound control -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_XKLAVIER) +.if ${PORT_OPTIONS:MXKLAVIER} LIB_DEPENDS+= xklavier.12:${PORTSDIR}/x11/libxklavier CONFIGURE_ARGS+=--enable-libxklavier .else CONFIGURE_ARGS+=--disable-libxklavier .endif -.if defined(WITH_XCURSOR) +.if ${PORT_OPTIONS:MXCURSOR} USE_XORG+= xcursor CONFIGURE_ARGS+=--enable-xcursor .else CONFIGURE_ARGS+=--disable-xcursor .endif -.if defined(WITH_XRANDR) +.if ${PORT_OPTIONS:MXRANDR} USE_XORG+= xrandr CONFIGURE_ARGS+=--enable-xrandr PLIST_SUB+= XRANDR="" @@ -61,14 +58,14 @@ CONFIGURE_ARGS+=--disable-xrandr PLIST_SUB+= XRANDR="@comment " .endif -.if defined(WITH_NOTIFY) +.if ${PORT_OPTIONS:MNOTIFY} LIB_DEPENDS+= notify.4:${PORTSDIR}/devel/libnotify CONFIGURE_ARGS+=--enable-libnotify .else CONFIGURE_ARGS+=--disable-libnotify .endif -.if !defined(WITHOUT_NLS) +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes CONFIGURE_ARGS+=--enable-nls PLIST_SUB+= NLS="" @@ -77,7 +74,7 @@ CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " .endif -.if defined(WITH_SOUND) +.if ${PORT_OPTIONS:MSOUND} LIB_DEPENDS+= canberra.0:${PORTSDIR}/audio/libcanberra CONFIGURE_ARGS+=--enable-sound-settings .else @@ -96,4 +93,4 @@ post-patch: post-install: @-update-desktop-database -.include <bsd.port.post.mk> +.include <bsd.port.mk> |