aboutsummaryrefslogtreecommitdiff
path: root/net/spoofer
diff options
context:
space:
mode:
authorPhilippe Audeoud <jadawin@FreeBSD.org>2013-12-27 19:47:35 +0000
committerPhilippe Audeoud <jadawin@FreeBSD.org>2013-12-27 19:47:35 +0000
commit37f97ba9253cd819814f02b031e1bf2612c3f65f (patch)
treeaeea0e0808d31d98956d304bacfaf0a1ab60ff0c /net/spoofer
parent6c971867a61fe1762484d929e3eef91aff562cef (diff)
downloadports-37f97ba9253cd819814f02b031e1bf2612c3f65f.tar.gz
ports-37f97ba9253cd819814f02b031e1bf2612c3f65f.zip
- Support STAGE
Notes
Notes: svn path=/head/; revision=337794
Diffstat (limited to 'net/spoofer')
-rw-r--r--net/spoofer/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/net/spoofer/Makefile b/net/spoofer/Makefile
index eaf1c3a5e0ff..370140fdb722 100644
--- a/net/spoofer/Makefile
+++ b/net/spoofer/Makefile
@@ -14,14 +14,15 @@ PORTDOCS= README CHANGES
HAS_CONFIGURE= yes
-NO_STAGE= yes
+.include <bsd.port.options.mk>
+
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
-.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}
+.if ${PORT_OPTIONS:MDOCS}
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${PORTDOCS}
- ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
.endfor
.endif