From cede561db6029df02083f9b9285ca9d679817c01 Mon Sep 17 00:00:00 2001 From: bapt Date: Tue, 29 May 2012 09:54:27 +0000 Subject: New options framework for the ports for maintainers: it introduces 3 different types of options: simple, multi and single: - simple options are the same as the current options (i.e. on or off.) - multi options are options where at least one must be set (1-N). - single options are options where one and only one must be set (exclusive options). for users: - OPTIONS_SET: globally enable some options - OPTIONS_UNSET: globally disable some options - ${UNIQUENAME}_SET: enable per-port choice of options - ${UNIQUENAME}_UNSET: disable per-port choice of options For compatibility the old OPTIONS framework is now working on top of the new one The options previously set with old OPTIONS are imported and converted transparently. A new knob NO_DIALOG if defined in the the config-conditional target is ignored (prevent the dialog(1) ui to show up. Thanks to all people involved: beat@, crees@, Bryan Drewery, linimon@, novel@ and others, for testing, comments, patches --- print/ghostscript9/Makefile.drivers | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'print/ghostscript9') diff --git a/print/ghostscript9/Makefile.drivers b/print/ghostscript9/Makefile.drivers index a728706b35b..959394334a2 100644 --- a/print/ghostscript9/Makefile.drivers +++ b/print/ghostscript9/Makefile.drivers @@ -1,5 +1,9 @@ -# $FreeBSD: /tmp/pcvs/ports/print/ghostscript9/Makefile.drivers,v 1.2 2012-02-12 18:10:49 hrs Exp $ +# $FreeBSD: /tmp/pcvs/ports/print/ghostscript9/Makefile.drivers,v 1.3 2012-05-29 09:54:27 bapt Exp $ +OPTIONS_X11_DEFAULT= off +OPTIONS_ICONV_DEFAULT= off +OPTIONS_CUPS_DEFAULT= off +OPTIONS_SVGALIB_DEFAULT= off OPTIONS_GS_DEFAULT_ON= on OPTIONS_GS_DEFAULT_OFF= off -- cgit