diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-10-08 17:12:53 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-10-08 17:12:53 +0000 |
commit | 4033b14cd7b19202e39ccbc4e64e663362f9f2ef (patch) | |
tree | c4f2e2020315aaea8c0b23983aa007ddab44de26 | |
parent | 9fa786dc0da42f769199af12af06ad26a217fab2 (diff) | |
download | ports-4033b14cd7b19202e39ccbc4e64e663362f9f2ef.tar.gz ports-4033b14cd7b19202e39ccbc4e64e663362f9f2ef.zip |
Notes
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/ruby-sary/Makefile | 50 | ||||
-rw-r--r-- | textproc/ruby-sary/distinfo | 1 | ||||
-rw-r--r-- | textproc/ruby-sary/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/ruby-sary/pkg-descr | 3 | ||||
-rw-r--r-- | textproc/ruby-sary/pkg-plist | 13 |
6 files changed, 69 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 14e3c7fad567..667fe4ed0101 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -320,6 +320,7 @@ SUBDIR += ruby-rexml SUBDIR += ruby-rss SUBDIR += ruby-sablot + SUBDIR += ruby-sary SUBDIR += ruby-xmlparser SUBDIR += ruby-xmlscan SUBDIR += ruby-xslt 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> diff --git a/textproc/ruby-sary/distinfo b/textproc/ruby-sary/distinfo new file mode 100644 index 000000000000..22ac249a0cd1 --- /dev/null +++ b/textproc/ruby-sary/distinfo @@ -0,0 +1 @@ +MD5 (ruby/sary-ruby-0.4.tar.gz) = 755868feefbc530e9e0211d1448ffcaa diff --git a/textproc/ruby-sary/pkg-comment b/textproc/ruby-sary/pkg-comment new file mode 100644 index 000000000000..bbe6107eb1f2 --- /dev/null +++ b/textproc/ruby-sary/pkg-comment @@ -0,0 +1 @@ +A Ruby interface to the Sary library diff --git a/textproc/ruby-sary/pkg-descr b/textproc/ruby-sary/pkg-descr new file mode 100644 index 000000000000..c625d2cbba1c --- /dev/null +++ b/textproc/ruby-sary/pkg-descr @@ -0,0 +1,3 @@ +This module is a Ruby interface to the Sary library. + +WWW: http://sary.namazu.org/index.html.en diff --git a/textproc/ruby-sary/pkg-plist b/textproc/ruby-sary/pkg-plist new file mode 100644 index 000000000000..996ea25602fd --- /dev/null +++ b/textproc/ruby-sary/pkg-plist @@ -0,0 +1,13 @@ +bin/rsary.rb +%%RUBY_SITEARCHLIBDIR%%/sary.so +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ChangeLog +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README.en.html +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README.en.rd +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/Reference.en.html +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/Reference.en.rd +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ja/README.ja.html +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ja/README.ja.rd +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ja/Reference.ja.html +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ja/Reference.ja.rd +%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%%/ja +%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%% |