42 lines
985 B
Makefile
42 lines
985 B
Makefile
# New ports collection makefile for: Ruby/Algebra
|
|
# Date created: 8 May 2001
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= algebra
|
|
PORTVERSION= 0.56
|
|
CATEGORIES= math ruby
|
|
MASTER_SITES= http://blade.nagaokaut.ac.jp/~sinara/ruby/math/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
USE_RUBY= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
DOCS_EN= doc/*.txt doc/*.rd doc/*.html
|
|
DOCS_JA= doc-jp/*.txt doc-jp/*.rd doc-jp/*.html
|
|
|
|
post-extract:
|
|
${RM} ${WRKSRC}/test1.rb ${WRKSRC}/m-index-*.rb
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/*.rb ${RUBY_SITELIBDIR}/
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
|
|
${INSTALL_DATA} ${WRKSRC}/sample/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
|
|
${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>
|