diff options
Diffstat (limited to 'math/ruby-gsl/Makefile')
-rw-r--r-- | math/ruby-gsl/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/math/ruby-gsl/Makefile b/math/ruby-gsl/Makefile new file mode 100644 index 000000000000..f62d2729c6d7 --- /dev/null +++ b/math/ruby-gsl/Makefile @@ -0,0 +1,45 @@ +# New ports collection makefile for: Ruby/GSL +# Date created: 22 December 2001 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= gsl +PORTVERSION= 0.1 +CATEGORIES= math ruby +MASTER_SITES= http://www5d.biglobe.ne.jp/~ytsune/ +PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} +DISTNAME= rb-${PORTNAME}-${PORTVERSION} +DIST_SUBDIR= ruby + +MAINTAINER= knu@FreeBSD.org + +LIB_DEPENDS= gsl.0:${.CURDIR}/../gsl + +USE_RUBY= yes +USE_RUBY_SETUP= yes +RUBY_SETUP= install.rb + +CONFIGURE_ARGS= -- --with-opt-dir="${LOCALBASE}" + +EXAMPLES_EN= test/* +DOCS_EN= AUTHORS ChangeLog README.html README.rd doc/* +DOCS_JA= README.ja.html README.ja.rd + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME} +.for f in ${EXAMPLES_EN} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_EXAMPLESDIR}/${PORTNAME}/ +.endfor + ${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}/ja +.for f in ${DOCS_EN} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/ +.endfor +.for f in ${DOCS_JA} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/ja/ +.endfor +.endif + +.include <bsd.port.mk> |