d58550a569
- add and update URLs of MASTER_SITES - add LICENSE related lines - update author's email address - use @dirrmtry Note: narray *is* required PR: ports/165231 Submitted by: Shin-ya Murakami <murashin@gfd-dennou.org> (maintainer) Sponsored by: RideCharge Inc. / TaxiMagic
41 lines
1 KiB
Makefile
41 lines
1 KiB
Makefile
# New ports collection makefile for: Ruby-FFTW3
|
|
# Date created: 25 June 2004
|
|
# Whom: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fftw3
|
|
PORTVERSION= 0.4
|
|
CATEGORIES= math ruby
|
|
MASTER_SITES= http://ruby.gfd-dennou.org/products/ruby-fftw3/release/ \
|
|
http://dennou-h.gfd-dennou.org/library/ruby/products/ruby-fftw3/release/ \
|
|
http://dennou-q.gfd-dennou.org/library/ruby/products/ruby-fftw3/release/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= murashin@gfd-dennou.org
|
|
COMMENT= A Ruby interface to the FFTW ver.3
|
|
|
|
LICENSE= BSD
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
LIB_DEPENDS= fftw3:${PORTSDIR}/math/fftw3
|
|
BUILD_DEPENDS= ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
DOCS= LICENSE.txt doc/*
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_MODDOCDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|