2002-09-12 11:23:36 +02:00
|
|
|
# New ports collection makefile for: Ruby/RBTree
|
|
|
|
# Date created: 12 September 2002
|
|
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= rbtree
|
2004-12-25 19:32:47 +01:00
|
|
|
PORTVERSION= 0.1.3
|
2002-09-12 11:23:36 +02:00
|
|
|
CATEGORIES= devel ruby
|
|
|
|
MASTER_SITES= http://www.geocities.co.jp/SiliconValley-PaloAlto/3388/rbtree/
|
|
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
|
|
DIST_SUBDIR= ruby
|
|
|
|
|
2005-11-11 02:18:01 +01:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-02-18 06:04:59 +01:00
|
|
|
COMMENT= An implementation of Red-Black Tree for Ruby
|
2002-09-12 11:23:36 +02:00
|
|
|
|
|
|
|
USE_RUBY= yes
|
|
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
|
|
|
|
INSTALL_TARGET= site-install
|
|
|
|
|
|
|
|
# MIT license
|
|
|
|
DOCS= ChangeLog LICENSE README
|
|
|
|
|
2004-05-13 10:54:50 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
|
|
BROKEN= "Does not compile on sparc64"
|
|
|
|
.endif
|
|
|
|
|
2002-09-12 11:23:36 +02:00
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
2002-10-06 23:08:30 +02:00
|
|
|
${MKDIR} ${RUBY_MODDOCDIR}
|
2002-09-12 11:23:36 +02:00
|
|
|
.for f in ${DOCS}
|
2002-10-06 23:08:30 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
2002-09-12 11:23:36 +02:00
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
2004-05-13 10:54:50 +02:00
|
|
|
.include <bsd.port.post.mk>
|