mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
6fe64890ab
- add and update URLs of MASTER_SITES - add LICENSE related lines - update author's email address PR: ports/165229 Submitted by: Shin-ya Murakami <murashin@gfd-dennou.org> (maintainer) Sponsored by: RideCharge Inc. / TaxiMagic
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# New ports collection makefile for: RubyNumruMisc
|
|
# Date created: 14 March 2004
|
|
# Whom: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= numru_misc
|
|
PORTVERSION= 0.1.1
|
|
CATEGORIES= math ruby
|
|
MASTER_SITES= http://ruby.gfd-dennou.org/products/numru-misc/release/ \
|
|
http://dennou-h.gfd-dennou.org/library/ruby/products/numru-misc/release/ \
|
|
http://dennou-q.gfd-dennou.org/library/ruby/products/numru-misc/release/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= numru-misc-${PORTVERSION}
|
|
DIST_SUBDIR= ruby
|
|
|
|
LICENSE= BSD
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
MAINTAINER= murashin@gfd-dennou.org
|
|
COMMENT= Collection of misc functions and classes to facilitate programming
|
|
|
|
RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray \
|
|
${RUBY_SITELIBDIR}/narray_miss.rb:${PORTSDIR}/math/ruby-narray_miss
|
|
|
|
USE_RUBY= yes
|
|
NO_BUILD= yes
|
|
|
|
DOCS= ChangeLog LICENSE.txt doc/*
|
|
|
|
do-install:
|
|
@cd ${WRKSRC}/ && ${RUBY} ./install.rb
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_MODDOCDIR}/
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|