svn commit: r333649 - head/games/xevil
Danilo Egea Gondolfo
danilo at FreeBSD.org
Wed Nov 13 02:47:39 UTC 2013
Author: danilo
Date: Wed Nov 13 02:47:39 2013
New Revision: 333649
URL: http://svnweb.freebsd.org/changeset/ports/333649
Log:
- Add stage support
Modified:
head/games/xevil/Makefile
Modified: head/games/xevil/Makefile
==============================================================================
--- head/games/xevil/Makefile Wed Nov 13 02:40:08 2013 (r333648)
+++ head/games/xevil/Makefile Wed Nov 13 02:47:39 2013 (r333649)
@@ -28,20 +28,15 @@ ALL_TARGET= ${OPSYS:L}
PORTDOCS= *
PLIST_FILES= bin/${PORTNAME}
-NO_STAGE= yes
-.include <bsd.port.options.mk>
-
post-patch:
@${FIND} ${WRKSRC} -name "*.xpm" | ${XARGS} ${REINPLACE_CMD} -e \
's|^static char|static const char|'
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/x11/${OPSYS:U}/${PORTNAME} ${PREFIX}/bin
-.if ${PORT_OPTIONS:MDOCS}
- @${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR}
- @${MKDIR} ${DOCSDIR}/instructions
- ${INSTALL_DATA} ${WRKSRC}/instructions/* ${DOCSDIR}/instructions
-.endif
+ ${INSTALL_PROGRAM} ${WRKSRC}/x11/${OPSYS:U}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR}
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}/instructions
+ ${INSTALL_DATA} ${WRKSRC}/instructions/* ${STAGEDIR}${DOCSDIR}/instructions
.include <bsd.port.mk>
More information about the svn-ports-head
mailing list