aboutsummaryrefslogtreecommitdiffstats
path: root/devel/ruby-runit/Makefile
blob: 8726c1fe649d3221b15ca986f5fe97d9f74733c5 (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
51
52
53
54
55
56
57
58
59
# New ports collection makefile for:    RubyUnit
# Date created:     22 Aug 2000
# Whom:         Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=   runit
PORTVERSION=    0.2.3
CATEGORIES= devel ruby
MASTER_SITES=   http://homepage1.nifty.com/markey/ruby/rubyunit/
PKGNAMEPREFIX=  ruby-
DISTNAME=   ${PORTNAME:S/^r/ruby/}-${PORTVERSION}
DIST_SUBDIR=    ruby

MAINTAINER= knu@FreeBSD.org

BUILD_DEPENDS=  ruby:${PORTSDIR}/lang/ruby
RUN_DEPENDS=    ruby:${PORTSDIR}/lang/ruby

.if !defined(NOPORTDOCS)
BUILD_DEPENDS+= rd2:${PORTSDIR}/textproc/ruby-rdtool
.endif

PLIST_SUB=  RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}"

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

RUBY_SITELIBDIR?=   ${LOCALBASE}/lib/ruby/site_ruby/${RUBY_VER}
RUBY_SITEARCHLIBDIR?=   ${LOCALBASE}/lib/ruby/site_ruby/${RUBY_VER}/${RUBY_ARCH}

BINS=       c2t runtest
DOCS=       HISTORY README  ToDo

do-build:
.if !defined(NOPORTDOCS)
    @cd ${WRKSRC}; \
    ${SETENV} ${MAKE_ENV} ${RUBY} makehtml.rb
.endif

do-install:
    @cd ${WRKSRC}; \
    ${SETENV} ${MAKE_ENV} ${RUBY} install.rb
.for f in ${BINS}
    ${LN} -sf ${f}.rb ${PREFIX}/bin/${f}
.endfor
.if !defined(NOPORTDOCS)
    ${MKDIR} ${PREFIX}/share/examples/ruby/runit
    ${CP} -R ${WRKSRC}/sample/ ${PREFIX}/share/examples/ruby/runit/
    ${MKDIR} ${PREFIX}/share/doc/ruby/runit
.for f in ${DOCS}
    ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/runit/
.endfor
    ${CP} -R ${WRKSRC}/doc_en/ ${PREFIX}/share/doc/ruby/runit/
.endif

.include <bsd.port.mk>