aboutsummaryrefslogtreecommitdiffstats
path: root/devel/ruby-optparse/Makefile
blob: 5686fd3f09cbaba1d6045a645e88342905931ee4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# New ports collection makefile for:    Ruby-OptionParser
# Date created:     7 Aug 2000
# Whom:         Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=   optparse
PORTVERSION=    0.7.5
CATEGORIES= devel   # ruby
MASTER_SITES=   http://member.nifty.ne.jp/nokada/archive/
PKGNAMEPREFIX=  ruby-
DIST_SUBDIR=    ruby

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}"

RUBY?=      ${LOCALBASE}/bin/ruby
RUBY_VER?=  1.4
RUBY_ARCH?= ${ARCH}-freebsd${OSREL}

do-install:
    ${MKDIR} ${PREFIX}/lib/ruby/site_ruby/${RUBY_VER}/optparse
.for f in optparse.rb optparse/shellwords.rb optparse/time.rb
    ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/lib/ruby/site_ruby/${RUBY_VER}/${f}
.endfor
.if !defined(NOPORTDOCS)
    ${MKDIR} ${PREFIX}/share/examples/ruby/optparse/ja
    ${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
    ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/examples/ruby/optparse/
.endfor
.for f in getopts.test
    ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/examples/ruby/optparse/ja
.endfor
.endif

.include <bsd.port.mk>