diff options
author | bapt <bapt@FreeBSD.org> | 2012-05-31 19:19:32 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-05-31 19:19:32 +0800 |
commit | 68b530317704ed344f567080786046479ed054fb (patch) | |
tree | 93fe9eebc56e2451ba426603948adb8749cb38e9 /textproc/p5-XML-SAX | |
parent | aedee365f6b7833ae31d4b673dcd979c369e4ac2 (diff) | |
download | freebsd-ports-gnome-68b530317704ed344f567080786046479ed054fb.tar.gz freebsd-ports-gnome-68b530317704ed344f567080786046479ed054fb.tar.zst freebsd-ports-gnome-68b530317704ed344f567080786046479ed054fb.zip |
Convert to new options framework
Diffstat (limited to 'textproc/p5-XML-SAX')
-rw-r--r-- | textproc/p5-XML-SAX/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/textproc/p5-XML-SAX/Makefile b/textproc/p5-XML-SAX/Makefile index b676b948c4d0..4327db8de935 100644 --- a/textproc/p5-XML-SAX/Makefile +++ b/textproc/p5-XML-SAX/Makefile @@ -25,11 +25,13 @@ MAN3= XML::SAX.3 XML::SAX::DocumentLocator.3 XML::SAX::Intro.3 \ XML::SAX::ParserFactory.3 XML::SAX::PurePerl.3 \ XML::SAX::PurePerl::Reader.3 -OPTIONS= WRITE_INI_OK "Alter ParserDetails.ini with relevant information" on +OPTIONS_DEFINE= WRITE_INI_OK + +WRITE_INI_OK_DESC= Alter ParserDetails.ini with relevant information .include <bsd.port.options.mk> -.if defined(WITH_WRITE_INI_OK) +.if ${PORT_OPTIONS:MWRITE_INI_OK} WRITE_INI_OK= 1 .else WRITE_INI_OK= 0 |