diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-09-28 22:57:37 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-09-28 22:57:37 +0000 |
commit | b7b1f0ffb7e9751d028654b9a49afacdd52ea169 (patch) | |
tree | 02b8d8139110b1a84a8de9d72d7cdaa660349b1f /devel | |
parent | 19039c97822cba653a278d84d52b5e562b928bde (diff) |
Notes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rubygem-rubyinlineaccel/Makefile | 33 | ||||
-rw-r--r-- | devel/rubygem-rubyinlineaccel/distinfo | 3 | ||||
-rw-r--r-- | devel/rubygem-rubyinlineaccel/pkg-descr | 5 | ||||
-rw-r--r-- | devel/rubygem-rubyinlineaccel/pkg-plist | 7 |
5 files changed, 49 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index c4c1db31d53f..d79a23816a14 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -2146,6 +2146,7 @@ SUBDIR += rubygem-ruby-prof SUBDIR += rubygem-ruby2ruby SUBDIR += rubygem-rubyforge + SUBDIR += rubygem-rubyinlineaccel SUBDIR += rubygem-stream SUBDIR += rubygem-transactionsimple SUBDIR += rubygem-tzinfo diff --git a/devel/rubygem-rubyinlineaccel/Makefile b/devel/rubygem-rubyinlineaccel/Makefile new file mode 100644 index 000000000000..5afd40c22d94 --- /dev/null +++ b/devel/rubygem-rubyinlineaccel/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: rubygem-rubyinlineaccel +# Date created: 2007-09-28 +# Whom: TAKATSU Tomonari <tota@rtfm.jp> +# +# $FreeBSD$ +# + +PORTNAME= rubyinlineaccel +PORTVERSION= 0.0.1 +CATEGORIES= devel rubygems +MASTER_SITES= ${MASTER_SITE_RUBYFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= RubyInlineAcceleration-${PORTVERSION} + +MAINTAINER= tota@rtfm.jp +COMMENT= An extension to RubyInline + +BUILD_DEPENDS= rubygem-inline>=3.6.3:${PORTSDIR}/devel/rubygem-inline +RUN_DEPENDS= ${BUILD_DEPENDS} + +GEM_NAME= ${DISTNAME} + +x-generate-plist: + ${ECHO} %%GEM_CACHE%% > pkg-plist.new + ${FIND} ${PREFIX}/${GEM_DOC_DIR} -type f | ${SED} -e 's,${PREFIX}/${GEM_DOC_DIR},%%GEM_DOC_DIR%%,' >> pkg-plist.new + ${FIND} ${PREFIX}/${GEM_LIB_DIR} -type f | ${SED} -e 's,${PREFIX}/${GEM_LIB_DIR},%%GEM_LIB_DIR%%,' >> pkg-plist.new + ${ECHO} %%GEM_SPEC%% >> pkg-plist.new + ${FIND} ${PREFIX}/${GEM_LIB_DIR} -type d -depth | ${SED} -e 's,${PREFIX}/${GEM_LIB_DIR},@dirrm %%GEM_LIB_DIR%%,' >> pkg-plist.new + ${FIND} ${PREFIX}/${GEM_DOC_DIR} -type d -depth | ${SED} -e 's,${PREFIX}/${GEM_DOC_DIR},@dirrm %%GEM_DOC_DIR%%,' >> pkg-plist.new + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/ruby-gems/Makefile.common" +.include <bsd.port.post.mk> diff --git a/devel/rubygem-rubyinlineaccel/distinfo b/devel/rubygem-rubyinlineaccel/distinfo new file mode 100644 index 000000000000..7a47aefd19ae --- /dev/null +++ b/devel/rubygem-rubyinlineaccel/distinfo @@ -0,0 +1,3 @@ +MD5 (rubygem/RubyInlineAcceleration-0.0.1.gem) = 24f986a925075ef0b7876ba47036fa60 +SHA256 (rubygem/RubyInlineAcceleration-0.0.1.gem) = 0ac83ae7bb35639971c7b50c07331d3bad24a36554ead021261e1b6baad1e7dc +SIZE (rubygem/RubyInlineAcceleration-0.0.1.gem) = 13824 diff --git a/devel/rubygem-rubyinlineaccel/pkg-descr b/devel/rubygem-rubyinlineaccel/pkg-descr new file mode 100644 index 000000000000..12f4a40a0be9 --- /dev/null +++ b/devel/rubygem-rubyinlineaccel/pkg-descr @@ -0,0 +1,5 @@ +RubyInlineAcceleration is an extension to RubyInline +which provides an easy way to use C libraries +in Ruby by directly wrapping methods, structures and fields. + +WWW: http://rubyforge.org/projects/rubyinlineaccel/ diff --git a/devel/rubygem-rubyinlineaccel/pkg-plist b/devel/rubygem-rubyinlineaccel/pkg-plist new file mode 100644 index 000000000000..26fbc4a2c600 --- /dev/null +++ b/devel/rubygem-rubyinlineaccel/pkg-plist @@ -0,0 +1,7 @@ +%%GEM_CACHE%% +%%GEM_LIB_DIR%%/GPL.txt +%%GEM_LIB_DIR%%/lib/inline_acceleration.rb +%%GEM_SPEC%% +@dirrm %%GEM_LIB_DIR%%/lib +@dirrm %%GEM_LIB_DIR%% +@dirrm %%GEM_DOC_DIR%% |