aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/ruby-rss/Makefile
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-03-10 11:46:19 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-03-10 11:46:19 +0000
commit065c096fb3eba997d404c7cb56540eb1a9407516 (patch)
tree38878e4d789abdf5819a85247cd64f3b55c2c35a /textproc/ruby-rss/Makefile
parentb186eff16299e1c0f90675d1ddf71599c13c00f4 (diff)
Add ruby-rss, a Ruby library for parsing, creating, downloading, and
caching RSS.
Diffstat (limited to 'textproc/ruby-rss/Makefile')
-rw-r--r--textproc/ruby-rss/Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/textproc/ruby-rss/Makefile b/textproc/ruby-rss/Makefile
new file mode 100644
index 000000000000..1004e5e06050
--- /dev/null
+++ b/textproc/ruby-rss/Makefile
@@ -0,0 +1,42 @@
+# New ports collection makefile for: Ruby/RSS
+# Date created: 10 March 2001
+# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= rss
+PORTVERSION= 0.9.1
+CATEGORIES= textproc ruby
+MASTER_SITES= http://www.chadfowler.com/ruby/rss/
+PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
+DISTNAME= ${PORTNAME}-ruby-${PORTVERSION}
+DIST_SUBDIR= ruby
+
+MAINTAINER= knu@FreeBSD.org
+
+RUN_DEPENDS= ${RUBY_SITELIBDIR}/xmlparser.rb:${PORTSDIR}/textproc/ruby-xmlparser
+
+USE_RUBY= yes
+
+NO_BUILD= yes
+INSTALL_TARGET= site-install
+
+RUBY_SHEBANG_FILES= ${WRKSRC}/rssdrb.rb ${WRKSRC}/samples/rsstest.rb
+DOCS= ChangeLog README
+
+do-install:
+ ${INSTALL_DATA} ${WRKSRC}/rss*.rb ${RUBY_SITELIBDIR}/
+ ${CHMOD} +x ${RUBY_SITELIBDIR}/rssdrb.rb
+ ${LN} -fs ${RUBY_SITELIBDIR}/rssdrb.rb ${PREFIX}/sbin/
+ ${LN} -fs rssdrb.rb ${PREFIX}/sbin/rssdrb
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
+ ${INSTALL_DATA} ${WRKSRC}/samples/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
+ ${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
+.for f in ${DOCS}
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
+.endfor
+.endif
+
+.include <bsd.port.mk>