diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-02-22 10:33:16 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-02-22 10:33:16 +0000 |
commit | abad98ae1db856729a4043d2fc201116c8fdb717 (patch) | |
tree | 9a37258d95d126a587029aa1bacabc50d653fb59 | |
parent | a575e85278ed6fe5e528b1d4f9bf3419dc615aab (diff) | |
download | freebsd-ports-abad98ae1db856729a4043d2fc201116c8fdb717.zip |
- Stage support
-rw-r--r-- | security/ruby-camellia/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/security/ruby-camellia/Makefile b/security/ruby-camellia/Makefile index dc7d8cd066ab..e7f5cf99a682 100644 --- a/security/ruby-camellia/Makefile +++ b/security/ruby-camellia/Makefile @@ -20,17 +20,14 @@ INSTALL_TARGET= site-install DOCS= README.txt History.txt License.txt EXAMPLES= ext/camellia-example.rb -NO_STAGE= yes post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${RUBY_MODEXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} .for f in ${EXAMPLES} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR}/ + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ .endfor - ${MKDIR} ${RUBY_MODDOCDIR} + ${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> |