aboutsummaryrefslogtreecommitdiffstats
path: root/devel/ruby-racc/Makefile
blob: de7dd1e18e8863fe0da81f8d25611bcb79c1d09a (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
# New ports collection makefile for:    Ruby-Racc
# Date created:         7 Aug 2000
# Whom:                 Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=   racc
PORTVERSION=    1.2.1
CATEGORIES= devel   # ruby
MASTER_SITES=   http://www1.u-netsurf.ne.jp/~brew/mine/soft/
PKGNAMEPREFIX=  ruby-

MAINTAINER= knu@FreeBSD.org

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

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

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

DOCS_EN=    changes.html command.html debug.html grammer.html \
        index.html usage.html
DOCS_JA=    changes.html command.html debug.html grammer.html \
        index.html parser.html usage.html
EXAMPLES=   calc.y calc2-ja.y compile.rb

do-configure:
    @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${RUBY} setup.rb config

do-build:
    @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${RUBY} setup.rb setup

do-install:
    @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${RUBY} setup.rb install
.if !defined(NOPORTDOCS)
    ${MKDIR} ${PREFIX}/share/doc/ruby/racc/examples
    ${MKDIR} ${PREFIX}/share/doc/ruby/racc/ja
.for f in ${EXAMPLES}
    ${INSTALL_DATA} ${WRKSRC}/sample/${f} ${PREFIX}/share/doc/ruby/racc/examples/
.endfor
.for f in ${DOCS_EN}
    ${INSTALL_DATA} ${WRKSRC}/doc.en/${f} ${PREFIX}/share/doc/ruby/racc/
.endfor
.for f in ${DOCS_JA}
    ${INSTALL_DATA} ${WRKSRC}/doc.ja/${f} ${PREFIX}/share/doc/ruby/racc/ja/
.endfor
.endif

.include <bsd.port.mk>