diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-06-14 13:56:04 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-06-14 13:56:04 +0000 |
commit | eabcca80473abbe6b353d9a4e36910d8f878ae7a (patch) | |
tree | 4735a532d8c22b792e7a825ec167ced6dd62050c /devel/fossil | |
parent | 35e526f4fe5ca28b6e0b33dbdec805c11d1168cf (diff) | |
download | ports-eabcca80473abbe6b353d9a4e36910d8f878ae7a.tar.gz ports-eabcca80473abbe6b353d9a4e36910d8f878ae7a.zip |
Notes
Diffstat (limited to 'devel/fossil')
-rw-r--r-- | devel/fossil/Makefile | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/devel/fossil/Makefile b/devel/fossil/Makefile index d4150f03cf87..df43fb23fb31 100644 --- a/devel/fossil/Makefile +++ b/devel/fossil/Makefile @@ -23,19 +23,9 @@ OPTIONS_DEFINE= JSON MARKDOWN STATIC JSON_DESC= JSON API support MARKDOWN_DESC= Markdown format support -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MJSON} -CONFIGURE_ARGS+= --json -.endif - -.if ${PORT_OPTIONS:MMARKDOWN} -CONFIGURE_ARGS+= --markdown -.endif - -.if ${PORT_OPTIONS:MSTATIC} -CONFIGURE_ARGS+= --static -.endif +JSON_CONFIGURE_ON= --json +MARKDOWN_CONFIGURE_ON= --markdown +STATIC_CONFIGURE_ON= --static do-install: @${INSTALL_PROGRAM} ${WRKSRC}/fossil ${PREFIX}/bin/fossil |