diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-09-01 14:14:53 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-09-01 14:14:53 +0000 |
commit | d29939a1d6e94b846ba77db2975029567418c2d2 (patch) | |
tree | 71e6a5a78eee1cb4dc2e58d95fca20f9961b8b8a | |
parent | 969c3e9260703b2e5512380a1d3837b52032fb33 (diff) | |
download | freebsd-ports-d29939a1d6e94b846ba77db2975029567418c2d2.zip |
- Switch to options helpers
-rw-r--r-- | x11/xmangekyou/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/x11/xmangekyou/Makefile b/x11/xmangekyou/Makefile index ec56ef0bdb40..5a8ac20101c2 100644 --- a/x11/xmangekyou/Makefile +++ b/x11/xmangekyou/Makefile @@ -19,8 +19,6 @@ PLIST_FILES= bin/xmangekyou lib/X11/XMangekyou/animation.dat \ OPTIONS_DEFINE= DOCS -.include <bsd.port.options.mk> - post-patch: @${REINPLACE_CMD} -e 's|= /usr/X11R6|= $${PREFIX}|g ; \ s|gcc |$${CC} |g ; \ @@ -33,9 +31,9 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/xmangekyou.1.gz ${STAGEDIR}${MANPREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${PREFIX}/lib/X11/XMangekyou ${INSTALL_DATA} ${WRKSRC}/animation.dat ${STAGEDIR}${PREFIX}/lib/X11/XMangekyou -.if ${PORT_OPTIONS:MDOCS} + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/*.euc ${STAGEDIR}${DOCSDIR} -.endif .include <bsd.port.mk> |