diff options
author | Steve Wills <swills@FreeBSD.org> | 2012-06-11 02:46:35 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2012-06-11 02:46:35 +0000 |
commit | 67d34dd3ec9e35af3396bcb12783f6ea7f92b808 (patch) | |
tree | f0578257d7dfe00317de5a10a9fbc6dcc0330e42 /accessibility/redshift | |
parent | 11f3bf240196089bfa5acb0ddd308bc9f44c69fa (diff) | |
download | ports-67d34dd3ec9e35af3396bcb12783f6ea7f92b808.tar.gz ports-67d34dd3ec9e35af3396bcb12783f6ea7f92b808.zip |
Notes
Diffstat (limited to 'accessibility/redshift')
-rw-r--r-- | accessibility/redshift/Makefile | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/accessibility/redshift/Makefile b/accessibility/redshift/Makefile index 4ec80fb7ccfb..7270632402af 100644 --- a/accessibility/redshift/Makefile +++ b/accessibility/redshift/Makefile @@ -22,38 +22,41 @@ INSTALLS_ICONS= yes MAN1= redshift.1 MANCOMPRESSED= no -CONFIGURE_ARGS+=--disable-wingdi --disable-gnome-clock --disable-gui +CONFIGURE_ARGS+= --disable-wingdi -.if !defined(WITHOUT_NLS) +OPTIONS_DEFINE= GUI NLS RANDR VIDMODE +OPTIONS_DEFAULT= RANDR + +GUI_DESC= Tray icon and location via Gnome clock +RANDR_DESC= Support RANDR for changing colors +VIDMODE_DESC= Support VIDMODE for changing colors (NVIDIA) + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNLS) USE_GETTEXT= yes CONFIGURE_ARGS+=--with-libiconv-prefix=${LOCALBASE} \ - --with-libintl-prefix=${LOCALBASE} + --with-libintl-prefix=${LOCALBASE} PLIST_SUB= NLS="" .else CONFIGURE_ARGS+=--disable-nls PLIST_SUB= NLS="@comment " .endif -OPTIONS= GUI "Tray icon & location via Gnome clock" off \ - RANDR "Support RANDR for changing colors" on \ - VIDMODE "Support VIDMODE for changing colors (NVIDIA)" off - -.include <bsd.port.options.mk> - -.if defined(WITH_RANDR) +.if ${PORT_OPTIONS:MRANDR} CONFIGURE_ARGS+=--enable-randr USE_XORG= xrandr .else CONFIGURE_ARGS+=--disable-randr .endif -.if defined(WITH_VIDMODE) +.if ${PORT_OPTIONS:MVIDMODE} CONFIGURE_ARGS+=--enable-vidmode .else CONFIGURE_ARGS+=--disable-vidmode .endif -.if defined(WITH_GUI) +.if ${PORT_OPTIONS:MGUI} CONFIGURE_ARGS+=--enable-gui --enable-gnome-clock RUN_DEPENDS+= py-gtk2:${PORTSDIR}/x11-toolkits/py-gtk2 \ py-xdg:${PORTSDIR}/devel/py-xdg |