diff options
author | Jason Helfman <jgh@FreeBSD.org> | 2012-07-24 07:01:12 +0000 |
---|---|---|
committer | Jason Helfman <jgh@FreeBSD.org> | 2012-07-24 07:01:12 +0000 |
commit | 0b55e60fb88a4131a3f511d87b52a52a4c8d9054 (patch) | |
tree | a233d7859f6ea32ff823a17d44f3ea6c2f4ccbf0 /x11/terminator | |
parent | 645742aa8df5747c2a0287934cf88b7318509393 (diff) | |
download | ports-0b55e60fb88a4131a3f511d87b52a52a4c8d9054.tar.gz ports-0b55e60fb88a4131a3f511d87b52a52a4c8d9054.zip |
Notes
Diffstat (limited to 'x11/terminator')
-rw-r--r-- | x11/terminator/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/x11/terminator/Makefile b/x11/terminator/Makefile index c847317057ae..7598dcc3bcdb 100644 --- a/x11/terminator/Makefile +++ b/x11/terminator/Makefile @@ -17,8 +17,9 @@ COMMENT= Multiple GNOME terminals in one window LICENSE= GPLv2 -OPTIONS= NLS "Native language support" on \ - GCONF "Use GNOME Terminal settings" on +OPTIONS_DEFINE= NLS GCONF +GCONF_DESC= Use GNOME Terminal settings +OPTIONS_DEFAULT= NLS GCONF USE_PYTHON= 2.5+ USE_PYDISTUTILS= yes @@ -31,7 +32,7 @@ WANT_GNOME= yes .include <bsd.port.pre.mk> PYSETUP+= --without-icon-cache -.ifdef(WITHOUT_NLS) +.if empty(PORT_OPTIONS:MNLS) PLIST_SUB+= NLS="@comment " PYSETUP+= --without-gettext .else @@ -40,7 +41,7 @@ PLIST_SUB+= NLS="" .endif RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/vtemodule.so:${PORTSDIR}/x11-toolkits/py-vte -.if defined(WITH_GCONF) +.if ${PORT_OPTIONS:MGCONF} USE_GNOME+= pygnome2 .endif USE_GNOME+= pygtk2 |