Use off' instead of no' for the default value of OPTION.

Add an explicit --disable-gui to CONFIGURE_ARGS, when no GUI
is requested. Without this, vendors software would still build
with GUI-support, if fltk is present on the system.

Submitted by:	 Eygene Ryabinkin
PR:	ports/113020
This commit is contained in:
Mikhail Teterin 2007-05-28 14:37:53 +00:00
parent c9ffbfd76d
commit 6bfcbbe2ce
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=192183

View File

@ -19,7 +19,7 @@ COMMENT= Converts HTML to PDF and/or PostScript
LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \
png:${PORTSDIR}/graphics/png
OPTIONS= HTMLDOCGUI "Build GUI front-end" no
OPTIONS= HTMLDOCGUI "Build GUI front-end" off
# .bz2 file is available since Aug 2, but we don't want to
# start mirroring _in addition to_ the .gz variant. When the
# vendor's release is updated again, we should switch to .bz2
@ -51,5 +51,7 @@ post-configure:
.if !defined(WITHOUT_HTMLDOCGUI)
LIB_DEPENDS+= fltk:${PORTSDIR}/x11-toolkits/fltk
CONFIGURE_ARGS+=--enable-gui
.else
CONFIGURE_ARGS+=--disable-gui
.endif
.include <bsd.port.post.mk>