summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-08-12 05:37:42 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-08-12 05:37:42 +0000
commit04bd272ac5c3c7918160401e97da81cb554a2d91 (patch)
treefb248f2cc6ce2ad0eae5b71c0b3ffb81d6db2cd3 /devel
parentChase an installer-only update. Keep PORTREVISION unbumped. (diff)
Utilize the PORTNAME variable.
Notes
Notes: svn path=/head/; revision=46106
Diffstat (limited to 'devel')
-rw-r--r--devel/ruby-textbuf/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/devel/ruby-textbuf/Makefile b/devel/ruby-textbuf/Makefile
index 9d9bd840d164..2716d3129fbb 100644
--- a/devel/ruby-textbuf/Makefile
+++ b/devel/ruby-textbuf/Makefile
@@ -24,15 +24,15 @@ DOCS_JA= README.ja
do-install:
.if !defined(NOPORTDOCS)
- ${MKDIR} ${RUBY_EXAMPLESDIR}/textbuf/ja
- ${INSTALL_DATA} ${WRKSRC}/stest.rb ${RUBY_EXAMPLESDIR}/textbuf/
- ${INSTALL_DATA} ${WRKSRC}/test.rb ${RUBY_EXAMPLESDIR}/textbuf/ja/
- ${MKDIR} ${RUBY_DOCDIR}/textbuf/ja
+ ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}/ja
+ ${INSTALL_DATA} ${WRKSRC}/stest.rb ${RUBY_EXAMPLESDIR}/${PORTNAME}/
+ ${INSTALL_DATA} ${WRKSRC}/test.rb ${RUBY_EXAMPLESDIR}/${PORTNAME}/ja/
+ ${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}/ja
.for f in ${DOCS_EN}
- ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/textbuf/
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
.endfor
.for f in ${DOCS_JA}
- ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/textbuf/ja/
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/ja/
.endfor
.endif