diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-02-22 10:35:29 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-02-22 10:35:29 +0000 |
commit | dd50ebd7235194cf6b801d86dce3e81a9e287cdc (patch) | |
tree | fd7a1f486894e73982a5f02310b9edf315b31303 | |
parent | 1c4caf7f92048b089ed9622bc494b4ac83853991 (diff) | |
download | freebsd-ports-dd50ebd7235194cf6b801d86dce3e81a9e287cdc.zip |
- Stage support
-rw-r--r-- | devel/ruby-byaccr/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/devel/ruby-byaccr/Makefile b/devel/ruby-byaccr/Makefile index 07ca39baa4b8..5011a758503e 100644 --- a/devel/ruby-byaccr/Makefile +++ b/devel/ruby-byaccr/Makefile @@ -17,7 +17,6 @@ RUBY_NO_RUN_DEPENDS= yes DOCS= README README.html -NO_STAGE= yes post-patch: ${REINPLACE_CMD} 's,^#include <malloc\.h>,#include <stdlib.h>,' ${WRKSRC}/*.[ch] @@ -25,13 +24,11 @@ pre-build: ${CP} ${FILESDIR}/Makefile ${WRKSRC}/ post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${RUBY_MODEXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/sample/* ${RUBY_MODEXAMPLESDIR}/ - ${MKDIR} ${RUBY_MODDOCDIR} + ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/sample/* ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ + ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} .for f in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor -.endif .include <bsd.port.mk> |