mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
Add ruby-rbtree, an implementation of Red-Black Tree for Ruby.
This commit is contained in:
parent
87ea8c6e18
commit
64397db3f4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=66182
@ -696,6 +696,7 @@
|
||||
SUBDIR += ruby-property
|
||||
SUBDIR += ruby-racc
|
||||
SUBDIR += ruby-rbison
|
||||
SUBDIR += ruby-rbtree
|
||||
SUBDIR += ruby-rreadline
|
||||
SUBDIR += ruby-rudl
|
||||
SUBDIR += ruby-sdl
|
||||
|
33
devel/ruby-rbtree/Makefile
Normal file
33
devel/ruby-rbtree/Makefile
Normal file
@ -0,0 +1,33 @@
|
||||
# New ports collection makefile for: Ruby/RBTree
|
||||
# Date created: 12 September 2002
|
||||
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= rbtree
|
||||
PORTVERSION= 0.0.2
|
||||
CATEGORIES= devel ruby
|
||||
MASTER_SITES= http://www.geocities.co.jp/SiliconValley-PaloAlto/3388/rbtree/
|
||||
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||||
DIST_SUBDIR= ruby
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
USE_RUBY= yes
|
||||
USE_RUBY_EXTCONF= yes
|
||||
|
||||
INSTALL_TARGET= site-install
|
||||
|
||||
# MIT license
|
||||
DOCS= ChangeLog LICENSE README
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
|
||||
.for f in ${DOCS}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
devel/ruby-rbtree/distinfo
Normal file
1
devel/ruby-rbtree/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (ruby/rbtree-0.0.2.tar.gz) = 75f0e293fb68c3caed431cf7a2cb1686
|
1
devel/ruby-rbtree/pkg-comment
Normal file
1
devel/ruby-rbtree/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
An implementation of Red-Black Tree for Ruby
|
5
devel/ruby-rbtree/pkg-descr
Normal file
5
devel/ruby-rbtree/pkg-descr
Normal file
@ -0,0 +1,5 @@
|
||||
Ruby/RBTree is an implementation of Red-Black Tree for Ruby. It's
|
||||
something like ordered Hash.
|
||||
|
||||
Author: takuma ozawa <metal@mine.ne.jp>
|
||||
WWW: http://www.geocities.co.jp/SiliconValley-PaloAlto/3388/rbtree/README.html
|
5
devel/ruby-rbtree/pkg-plist
Normal file
5
devel/ruby-rbtree/pkg-plist
Normal file
@ -0,0 +1,5 @@
|
||||
%%RUBY_SITEARCHLIBDIR%%/rbtree.so
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/rbtree/ChangeLog
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/rbtree/LICENSE
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/rbtree/README
|
||||
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/rbtree
|
Loading…
Reference in New Issue
Block a user