summaryrefslogtreecommitdiff
path: root/textproc/ruby-sary/Makefile
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2002-10-08 17:12:53 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2002-10-08 17:12:53 +0000
commit4033b14cd7b19202e39ccbc4e64e663362f9f2ef (patch)
treec4f2e2020315aaea8c0b23983aa007ddab44de26 /textproc/ruby-sary/Makefile
parentcdindex.{com,org} is gone, so this port is useless (diff)
Add ruby-sary, a Ruby interface to the Sary library.
Notes
Notes: svn path=/head/; revision=67659
Diffstat (limited to 'textproc/ruby-sary/Makefile')
-rw-r--r--textproc/ruby-sary/Makefile50
1 files changed, 50 insertions, 0 deletions
diff --git a/textproc/ruby-sary/Makefile b/textproc/ruby-sary/Makefile
new file mode 100644
index 000000000000..f2ed6de3cc84
--- /dev/null
+++ b/textproc/ruby-sary/Makefile
@@ -0,0 +1,50 @@
+# New ports collection makefile for: Ruby/Sary
+# Date created: 8 October 2002
+# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= sary
+PORTVERSION= 0.4
+CATEGORIES= textproc ruby
+MASTER_SITES= ftp://ftp.namazu.org/sary/ruby/
+PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
+DISTNAME= ${PORTNAME}-ruby-${PORTVERSION}
+DIST_SUBDIR= ruby
+
+MAINTAINER= knu@FreeBSD.org
+
+LIB_DEPENDS= sary.8:${PORTSDIR}/textproc/sary
+
+USE_RUBY= yes
+USE_RUBY_EXTCONF= yes
+USE_RUBY_RDTOOL= yes
+
+RUBY_WITH_PTHREAD= yes
+
+INSTALL_TARGET= site-install
+
+DOCS_EN= ChangeLog *.en.*
+DOCS_JA= *.ja.*
+
+post-build:
+.if !defined(NOPORTDOCS)
+ cd ${WRKSRC}; for f in *.rd; do \
+ ${RUBY_RD2} $$f > $${f%.rd}.html; \
+ done
+.endif
+
+post-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/rsary.rb ${PREFIX}/bin/
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${RUBY_MODDOCDIR}/ja
+.for f in ${DOCS_EN}
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
+.endfor
+.for f in ${DOCS_JA}
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
+.endfor
+.endif
+
+.include <bsd.port.mk>