diff options
author | seanc <seanc@FreeBSD.org> | 2003-01-31 13:57:06 +0800 |
---|---|---|
committer | seanc <seanc@FreeBSD.org> | 2003-01-31 13:57:06 +0800 |
commit | 90cc4b5af32cb059e71981fa59a889e683bfe156 (patch) | |
tree | 49675635c65eaaac6925c7208cc0b242626dd5e8 /devel/ruby-inline | |
parent | f4e8db7343b5ef4c109d4446bfe0c20724358457 (diff) | |
download | freebsd-ports-gnome-90cc4b5af32cb059e71981fa59a889e683bfe156.tar.gz freebsd-ports-gnome-90cc4b5af32cb059e71981fa59a889e683bfe156.tar.zst freebsd-ports-gnome-90cc4b5af32cb059e71981fa59a889e683bfe156.zip |
Add Perl's Inline::C counterpart for Ruby, named oddly enough: Inline::C
Diffstat (limited to 'devel/ruby-inline')
-rw-r--r-- | devel/ruby-inline/Makefile | 36 | ||||
-rw-r--r-- | devel/ruby-inline/distinfo | 1 | ||||
-rw-r--r-- | devel/ruby-inline/pkg-comment | 1 | ||||
-rw-r--r-- | devel/ruby-inline/pkg-descr | 11 | ||||
-rw-r--r-- | devel/ruby-inline/pkg-plist | 7 |
5 files changed, 56 insertions, 0 deletions
diff --git a/devel/ruby-inline/Makefile b/devel/ruby-inline/Makefile new file mode 100644 index 000000000000..9970e51cb54e --- /dev/null +++ b/devel/ruby-inline/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: ruby-inline +# Date created: 2003-01-30 +# Whom: Sean Chittenden <seanc@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= inline +PORTVERSION= 2.2.0 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ruby${PORTNAME} +PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} +DISTNAME= RubyInline-${PORTVERSION} +DIST_SUBDIR= devel ruby + +MAINTAINER= seanc@FreeBSD.org + +USE_RUBY= yes + +NO_BUILD= yes + +DOCS= README.txt +EXAMPLES= example.rb tutorial/example1.rb tutorial/example2.rb + +post-install: + ${MKDIR} ${RUBY_MODDOCDIR} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR} +.endfor + ${MKDIR} ${RUBY_MODEXAMPLESDIR} +.for f in ${EXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR} +.endfor + +.include <bsd.port.mk> diff --git a/devel/ruby-inline/distinfo b/devel/ruby-inline/distinfo new file mode 100644 index 000000000000..68a309035ec7 --- /dev/null +++ b/devel/ruby-inline/distinfo @@ -0,0 +1 @@ +MD5 (ruby/RubyInline-2.2.0.tar.gz) = f2c8184b7c0511723bfb94c8fe42ceb2 diff --git a/devel/ruby-inline/pkg-comment b/devel/ruby-inline/pkg-comment new file mode 100644 index 000000000000..f3c86c8a0d00 --- /dev/null +++ b/devel/ruby-inline/pkg-comment @@ -0,0 +1 @@ +Inline::C allows you to embed C/Ruby directly in ruby scripts diff --git a/devel/ruby-inline/pkg-descr b/devel/ruby-inline/pkg-descr new file mode 100644 index 000000000000..78257e6966b6 --- /dev/null +++ b/devel/ruby-inline/pkg-descr @@ -0,0 +1,11 @@ +Inline::C allows for quick and use of inlined C code in Ruby scripts. +This library automatically: + +* provides rudimentary automatic conversion between Ruby and C basic + types: (unsigned)? (char|int|long|char *) +* provides compilation of inline code +* only recompiles if the C code has changed +* can easily provide speedups in excess of 25x for tight loops when + objects are being recycled too quickly. + +WWW: http://sourceforge.net/projects/rubyinline diff --git a/devel/ruby-inline/pkg-plist b/devel/ruby-inline/pkg-plist new file mode 100644 index 000000000000..42a5570d1a21 --- /dev/null +++ b/devel/ruby-inline/pkg-plist @@ -0,0 +1,7 @@ +%%RUBY_SITELIBDIR%%/inline.rb +%%RUBY_MODDOCDIR%%/README.txt +@dirrm %%RUBY_MODDOCDIR%% +%%RUBY_MODEXAMPLESDIR%%/example.rb +%%RUBY_MODEXAMPLESDIR%%/example1.rb +%%RUBY_MODEXAMPLESDIR%%/example2.rb +@dirrm %%RUBY_MODEXAMPLESDIR%% |