1
0
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:
Akinori MUSHA 2002-09-12 09:23:36 +00:00
parent 87ea8c6e18
commit 64397db3f4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=66182
6 changed files with 46 additions and 0 deletions

View File

@ -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

View 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>

View File

@ -0,0 +1 @@
MD5 (ruby/rbtree-0.0.2.tar.gz) = 75f0e293fb68c3caed431cf7a2cb1686

View File

@ -0,0 +1 @@
An implementation of Red-Black Tree for Ruby

View 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

View 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