2001-02-01 14:25:14 +01:00
|
|
|
# New ports collection makefile for: Ruby-NArray
|
|
|
|
# Date created: 1 Feb 2001
|
|
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= narray
|
2011-10-28 16:30:32 +02:00
|
|
|
PORTVERSION= 0.6.0.1
|
2001-02-01 14:25:14 +01:00
|
|
|
CATEGORIES= math ruby
|
2009-01-09 16:28:55 +01:00
|
|
|
MASTER_SITES= RF
|
2001-02-01 14:25:14 +01:00
|
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
|
|
DIST_SUBDIR= ruby
|
|
|
|
|
2009-06-16 17:53:25 +02:00
|
|
|
MAINTAINER= ruby@FreeBSD.org
|
2003-02-18 06:42:05 +01:00
|
|
|
COMMENT= Numerical N-dimensional array library for Ruby
|
2001-02-01 14:25:14 +01:00
|
|
|
|
|
|
|
LIB_DEPENDS= fftw.2:${PORTSDIR}/math/fftw
|
|
|
|
|
|
|
|
USE_RUBY= yes
|
|
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
|
|
|
|
INSTALL_TARGET= site-install
|
|
|
|
|
|
|
|
DOC_EN= ChangeLog README.en SPEC.en
|
2003-03-05 17:11:23 +01:00
|
|
|
DOC_JA= README.ja SPEC.ja
|
2001-02-01 14:25:14 +01:00
|
|
|
|
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
2002-10-06 23:38:34 +02:00
|
|
|
${MKDIR} ${RUBY_MODDOCDIR}/ja
|
2001-02-01 14:25:14 +01:00
|
|
|
.for f in ${DOC_EN}
|
2002-10-06 23:38:34 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
2001-02-01 14:25:14 +01:00
|
|
|
.endfor
|
|
|
|
.for f in ${DOC_JA}
|
2002-10-06 23:38:34 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
|
2001-02-01 14:25:14 +01:00
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|