diff options
author | Alex Kozlov <ak@FreeBSD.org> | 2012-06-25 04:15:50 +0000 |
---|---|---|
committer | Alex Kozlov <ak@FreeBSD.org> | 2012-06-25 04:15:50 +0000 |
commit | 61ccb75449e934ce15c362e836abe764660824ab (patch) | |
tree | 58e4fc161366f0687e7bcdae86fd5ab3e027ca0c /games/evilfinder | |
parent | 092a8d14ba5861f91eb4a45e1d86172975728463 (diff) |
Notes
Diffstat (limited to 'games/evilfinder')
-rw-r--r-- | games/evilfinder/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/games/evilfinder/Makefile b/games/evilfinder/Makefile index 096209bcf476..7cfe70a0940b 100644 --- a/games/evilfinder/Makefile +++ b/games/evilfinder/Makefile @@ -18,11 +18,15 @@ COMMENT= Numerologically determine the evilness of things WRKSRC= ${WRKDIR}/${PORTNAME} -OPTIONS= WRAPPER "Evilfinder local wrapper" on +OPTIONS_DEFINE= WRAPPER -.include <bsd.port.pre.mk> +WRAPPER_DESC= Evilfinder local wrapper -.if !defined(WITHOUT_WRAPPER) +OPTIONS_DEFAULT= WRAPPER + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MWRAPPER} RUN_DEPENDS+= lynx:${PORTSDIR}/www/lynx PLIST_SUB+= WRAPPER="" .else @@ -55,4 +59,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |