diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2013-03-06 01:07:43 +0800 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2013-03-06 01:07:43 +0800 |
commit | fb3520254ab73be0aad04c3a63b781750cf26b5b (patch) | |
tree | 268d74f9d8738f78b0c895672044611aa6343387 /net/sqtop | |
parent | 4706739618b79681811e5b336a54032908638160 (diff) | |
download | freebsd-ports-gnome-fb3520254ab73be0aad04c3a63b781750cf26b5b.tar.gz freebsd-ports-gnome-fb3520254ab73be0aad04c3a63b781750cf26b5b.tar.zst freebsd-ports-gnome-fb3520254ab73be0aad04c3a63b781750cf26b5b.zip |
- Convert to OptionsNG
- Trim header
Reviewed by: beat, bapt, kwm
Diffstat (limited to 'net/sqtop')
-rw-r--r-- | net/sqtop/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/sqtop/Makefile b/net/sqtop/Makefile index 9dba70b48805..66dca5e3484a 100644 --- a/net/sqtop/Makefile +++ b/net/sqtop/Makefile @@ -22,12 +22,14 @@ PLIST_FILES= bin/sqtop MAN1= sqtop.1 GNU_CONFIGURE= yes +USE_NCURSES= yes -OPTIONS= NCURSES "Enable ncurses user interface" On +OPTIONS_DEFINE= NCURSES +OPTIONS_DEFAULT= NCURSES .include <bsd.port.options.mk> -.if defined(WITHOUT_NCURSES) +.if ! ${PORT_OPTIONS:MNCURSES} CONFIGURE_ARGS= --disable-ui .endif |