diff options
| author | Akinori MUSHA <knu@FreeBSD.org> | 2004-12-25 19:25:59 +0000 |
|---|---|---|
| committer | Akinori MUSHA <knu@FreeBSD.org> | 2004-12-25 19:25:59 +0000 |
| commit | 9065dd74d48c763aa1de5af9c239846a5e32b1ed (patch) | |
| tree | 7e25fa1d3753580e6d652abaefbd7c9ada2dcde8 /textproc/ruby-xml-script/Makefile | |
| parent | Back out my previous commit because it keeps this from packaging (diff) | |
Add ruby-xml-script, a Ruby module for scripting an XML stream using
an ASP-like notation.
Diffstat (limited to 'textproc/ruby-xml-script/Makefile')
| -rw-r--r-- | textproc/ruby-xml-script/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/textproc/ruby-xml-script/Makefile b/textproc/ruby-xml-script/Makefile new file mode 100644 index 000000000000..2552d408babd --- /dev/null +++ b/textproc/ruby-xml-script/Makefile @@ -0,0 +1,43 @@ +# New ports collection makefile for: Ruby/XML/Script +# Date created: 26 December 2004 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= xml-script +PORTVERSION= 0.1.0 +CATEGORIES= textproc ruby +MASTER_SITES= http://gregoire.lejeune.free.fr/ +PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} +DISTNAME= ruby-${PORTNAME}_${PORTVERSION} +DIST_SUBDIR= ruby + +MAINTAINER= knu@FreeBSD.org +COMMENT= A Ruby module for scripting an XML stream using an ASP-like notation + +RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/js.so:${PORTSDIR}/lang/ruby-js \ + ${RUBY_SITEARCHLIBDIR}/lua.so:${PORTSDIR}/lang/ruby-lua4 + +USE_RUBY= yes +USE_RUBY_SETUP= yes + +WRKSRC= ${WRKDIR}/ruby-${PORTNAME} + +DOCS= AUTHORS \ + README +EXAMPLES= tests/* + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${RUBY_MODEXAMPLESDIR} +.for f in ${EXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR}/ +.endfor + ${MKDIR} ${RUBY_MODDOCDIR} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ +.endfor +.endif + +.include <bsd.port.mk> |
