diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-07-13 02:56:48 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-07-13 02:56:48 +0000 |
commit | 67c224c57fa8f47906ed0374bc98bb0fb61c9edc (patch) | |
tree | 8f96eb6d901640220d36133798ce8ac09f1e841d /lang/ruby14-irb | |
parent | e714d6ac145fd7bea94b624ec5972655bb6ea8e5 (diff) | |
download | FreeBSD-ports-67c224c57fa8f47906ed0374bc98bb0fb61c9edc.zip FreeBSD-ports-67c224c57fa8f47906ed0374bc98bb0fb61c9edc.tar.gz |
irb: Interactive Ruby. A tool to input and evaulate expressions
of Ruby from standard input.
PR: 12125
Submitted by: Yasuhiro Fukuma <yasuf@big.or.jp>
Diffstat (limited to 'lang/ruby14-irb')
-rw-r--r-- | lang/ruby14-irb/Makefile | 39 | ||||
-rw-r--r-- | lang/ruby14-irb/distinfo | 1 | ||||
-rw-r--r-- | lang/ruby14-irb/pkg-comment | 1 | ||||
-rw-r--r-- | lang/ruby14-irb/pkg-descr | 6 | ||||
-rw-r--r-- | lang/ruby14-irb/pkg-plist | 18 |
5 files changed, 65 insertions, 0 deletions
diff --git a/lang/ruby14-irb/Makefile b/lang/ruby14-irb/Makefile new file mode 100644 index 0000000..96e886d --- /dev/null +++ b/lang/ruby14-irb/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: irb +# Version required: 0.5.1 +# Date created: 19 April 1999 +# Whom: Yasuhiro Fukuma <yasuf@big.or.jp> +# +# $Id $ +# + +DISTNAME= irb-0.5.1 +CATEGORIES= lang +MASTER_SITES= ftp://ftp.netlab.co.jp/pub/lang/ruby/contrib/ \ + ftp://ftp.TokyoNet.AD.JP/pub/misc/ruby/contrib/ \ + ftp://ftp.iij.ad.jp/pub/lang/ruby/contrib/ \ + ftp://blade.nagaokaut.ac.jp/pub/lang/ruby/contrib/ \ + ftp://ftp.krnet.ne.jp/pub/ruby/contrib/ \ + ftp://mirror.nucba.ac.jp/mirror/ruby/contrib/ +EXTRACT_SUFX= .tgz + +MAINTAINER= yasuf@big.or.jp + +RUN_DEPENDS= ruby:${PORTSDIR}/lang/ruby + +WRKSRC= ${WRKDIR}/irb + +RUBY= ${LOCALBASE}/bin/ruby + +do-build: + ( cd ${WRKSRC}; \ + ${MV} irb.rb irb.tmpl; \ + ${SED} -e '1s,^#!.*$$,#!${RUBY},' irb.tmpl > irb ) + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/irb ${PREFIX}/bin + ${MKDIR} ${PREFIX}/lib/ruby/irb + ${INSTALL_DATA} ${WRKSRC}/*.rb ${PREFIX}/lib/ruby/irb + ${MKDIR} ${PREFIX}/share/doc/ruby/irb + ${INSTALL_DATA} ${WRKSRC}/README* ${PREFIX}/share/doc/ruby/irb + +.include <bsd.port.mk> diff --git a/lang/ruby14-irb/distinfo b/lang/ruby14-irb/distinfo new file mode 100644 index 0000000..fca7772 --- /dev/null +++ b/lang/ruby14-irb/distinfo @@ -0,0 +1 @@ +MD5 (irb-0.5.1.tgz) = d504dca29617614bfa8f0b96b3ca85f4 diff --git a/lang/ruby14-irb/pkg-comment b/lang/ruby14-irb/pkg-comment new file mode 100644 index 0000000..4b7b5bd --- /dev/null +++ b/lang/ruby14-irb/pkg-comment @@ -0,0 +1 @@ +Interactive Ruby diff --git a/lang/ruby14-irb/pkg-descr b/lang/ruby14-irb/pkg-descr new file mode 100644 index 0000000..4df2700 --- /dev/null +++ b/lang/ruby14-irb/pkg-descr @@ -0,0 +1,6 @@ +Irb is an abbrevation of "interactive ruby." +It's a tool to input and evaluate expressions of Ruby +from standard input easily. + +- Yasuhiro Fukuma +yasuf@big.or.jp diff --git a/lang/ruby14-irb/pkg-plist b/lang/ruby14-irb/pkg-plist new file mode 100644 index 0000000..b348aa0 --- /dev/null +++ b/lang/ruby14-irb/pkg-plist @@ -0,0 +1,18 @@ +bin/irb +lib/ruby/irb/frame.rb +lib/ruby/irb/input-method.rb +lib/ruby/irb/loader.rb +lib/ruby/irb/main.rb +lib/ruby/irb/multi-irb.rb +lib/ruby/irb/rtags.rb +lib/ruby/irb/ruby-lex.rb +lib/ruby/irb/ruby-token.rb +lib/ruby/irb/slex.rb +lib/ruby/irb/version.rb +lib/ruby/irb/xmp.rb +@dirrm lib/ruby/irb +share/doc/ruby/irb/README +share/doc/ruby/irb/README-add +share/doc/ruby/irb/README-install +@dirrm share/doc/ruby/irb +@unexec /bin/rmdir %D/share/doc/ruby >/dev/null 2>&1 || true |