[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / pkgsrc / devel / ruby-racc

Annotation of pkgsrc/devel/ruby-racc/Makefile, Revision 1.11

1.11    ! wiz         1: # $NetBSD: Makefile,v 1.10 2005/03/06 17:19:06 taca Exp $
1.1       taca        2:
1.9       taca        3: DISTNAME=      racc-${RACC_VERSION}
                      4: PKGNAME=       ${RUBY_PKGPREFIX}-racc-${RACC_VERSION}
1.10      taca        5: PKGREVISION=   1
1.8       taca        6: CATEGORIES=    devel ruby
1.6       taca        7: MASTER_SITES=  http://www.loveruby.net/archive/racc/
1.1       taca        8:
1.4       grant       9: MAINTAINER=    taca@NetBSD.org
1.6       taca       10: HOMEPAGE=      http://www.loveruby.net/en/racc.html
1.2       agc        11: COMMENT=       LALR(1) parser generator for Ruby
1.1       taca       12:
1.9       taca       13: RUBY_VERSION_SUPPORTED=        18
                     14: USE_RUBY_SETUP=                yes
                     15: RACC_VERSION=          1.4.4
                     16:
                     17: DOCS=          ChangeLog README.en README.ja TODO
                     18: DOCS_HTML=     NEWS.html command.html debug.html grammar.html index.html \
                     19:                parser.html usage.html
1.1       taca       20: EXAMPLES=      array.y array2.y calc-ja.y calc.y conflict.y hash.y lalr.y \
                     21:                syntax.y yyerr.y
                     22:
                     23: post-install:
1.3       taca       24:        ${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/racc/en
1.9       taca       25:        ${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/racc/ja
1.3       taca       26: .for f in ${DOCS}
1.9       taca       27:        ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/racc
1.3       taca       28: .endfor
1.9       taca       29: .for f in ${DOCS_HTML}
                     30:        ${INSTALL_DATA} ${WRKSRC}/doc.en/${f} \
1.3       taca       31:                ${RUBY_DOCDIR}/racc/en
1.9       taca       32:        ${INSTALL_DATA} ${WRKSRC}/doc.ja/${f} \
1.3       taca       33:                ${RUBY_DOCDIR}/racc/ja
1.1       taca       34: .endfor
1.6       taca       35:        ${INSTALL_DATA_DIR} ${RUBY_EXAMPLESDIR}/racc
                     36: .for f in ${EXAMPLES}
1.9       taca       37:        ${INSTALL_DATA} ${WRKSRC}/sample/${f} \
1.6       taca       38:                ${RUBY_EXAMPLESDIR}/racc
                     39: .endfor
1.1       taca       40:
1.9       taca       41: .include "../../lang/ruby/modules.mk"
1.6       taca       42: .include "../../mk/bsd.pkg.mk"

CVSweb <webmaster@jp.NetBSD.org>