2000-08-12 20:09:41 +00:00
|
|
|
# New ports collection makefile for: Ruby-OptionParser
|
|
|
|
# Date created: 7 Aug 2000
|
|
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
2000-08-07 11:23:12 +00:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= optparse
|
|
|
|
PORTVERSION= 0.7.5
|
2000-08-16 12:21:24 +00:00
|
|
|
CATEGORIES= devel ruby
|
2000-08-07 11:23:12 +00:00
|
|
|
MASTER_SITES= http://member.nifty.ne.jp/nokada/archive/
|
|
|
|
PKGNAMEPREFIX= ruby-
|
2000-08-08 16:08:31 +00:00
|
|
|
DIST_SUBDIR= ruby
|
2000-08-07 11:23:12 +00:00
|
|
|
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
|
|
|
|
BUILD_DEPENDS= ruby:${PORTSDIR}/lang/ruby
|
|
|
|
RUN_DEPENDS= ruby:${PORTSDIR}/lang/ruby
|
|
|
|
|
|
|
|
NO_BUILD= yes
|
|
|
|
|
|
|
|
PLIST_SUB= RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}"
|
|
|
|
|
2000-08-12 20:09:41 +00:00
|
|
|
RUBY?= ${LOCALBASE}/bin/ruby
|
|
|
|
RUBY_VER?= 1.4
|
|
|
|
RUBY_ARCH?= ${ARCH}-freebsd${OSREL}
|
2000-08-07 11:23:12 +00:00
|
|
|
|
|
|
|
do-install:
|
2000-08-12 20:09:41 +00:00
|
|
|
${MKDIR} ${PREFIX}/lib/ruby/site_ruby/${RUBY_VER}/optparse
|
2000-08-07 11:23:12 +00:00
|
|
|
.for f in optparse.rb optparse/shellwords.rb optparse/time.rb
|
2000-08-12 20:09:41 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/lib/ruby/site_ruby/${RUBY_VER}/${f}
|
2000-08-07 11:23:12 +00:00
|
|
|
.endfor
|
|
|
|
.if !defined(NOPORTDOCS)
|
2000-08-07 12:50:16 +00:00
|
|
|
${MKDIR} ${PREFIX}/share/examples/ruby/optparse/ja
|
2000-08-07 11:23:12 +00:00
|
|
|
${MKDIR} ${PREFIX}/share/doc/ruby/optparse/ja
|
|
|
|
.for f in optparse.rlog
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/optparse/
|
|
|
|
.endfor
|
|
|
|
.for f in optparse.ja.rd
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/optparse/ja/
|
|
|
|
.endfor
|
|
|
|
.for f in cmd-ls.rb cmd.rb getopts.test.en opttest.rb
|
2000-08-07 12:50:16 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/examples/ruby/optparse/
|
2000-08-07 11:23:12 +00:00
|
|
|
.endfor
|
|
|
|
.for f in getopts.test
|
2000-08-07 12:50:16 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/examples/ruby/optparse/ja
|
2000-08-07 11:23:12 +00:00
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|