mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
79 lines
2.1 KiB
Makefile
79 lines
2.1 KiB
Makefile
# 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.3
|
|
CATEGORIES= devel ruby
|
|
MASTER_SITES= http://www1.u-netsurf.ne.jp/~brew/mine/soft/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
.if !defined(RUNTIME)
|
|
RUN_DEPENDS= ${RUBY_SITELIBDIR}/racc/parser.rb:${PORTSDIR}/devel/ruby-racc-runtime
|
|
.endif[
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_AMSTD= yes
|
|
USE_RUBY_SETUP= yes
|
|
|
|
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-ja.y calc.y conflict.y lalr.y syntax.y yyerr.y
|
|
|
|
post-extract:
|
|
${PERL} -i -ne '/^amstd\b/ || print' ${WRKSRC}/lib/PATHCONV
|
|
${RM} -rf ${WRKSRC}/lib/amstd
|
|
.if defined(RUNTIME)
|
|
${PERL} -i -ne '/^racc\b/ || print' ${WRKSRC}/bin/PATHCONV
|
|
${RM} -rf ${WRKSRC}/bin/racc
|
|
${PERL} -i -ne '/^racc\b/ || print' ${WRKSRC}/lib/PATHCONV
|
|
${RM} -rf ${WRKSRC}/lib/racc
|
|
.else
|
|
${PERL} -i -ne '/^cparse\b/ || print' ${WRKSRC}/ext/PATHCONV
|
|
${RM} -rf ${WRKSRC}/ext/cparse
|
|
${PERL} -i -ne '/^raccrt\b/ || print' ${WRKSRC}/lib/PATHCONV
|
|
${RM} -rf ${WRKSRC}/lib/raccrt
|
|
.endif
|
|
|
|
.if !defined(RUNTIME)
|
|
post-patch:
|
|
${RM} -rf ${WRKSRC}/ext
|
|
${PERL} -i -pe '$$. == 1 && s,^#!\s*\S+,#!${RUBY},' \
|
|
${WRKSRC}/misc/racc2y \
|
|
${WRKSRC}/misc/y2racc
|
|
.endif
|
|
|
|
do-install:
|
|
.if defined(RUNTIME)
|
|
${MKDIR} ${RUBY_SITELIBDIR}/racc
|
|
${MKDIR} ${RUBY_SITEARCHLIBDIR}/racc
|
|
.else
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/racc/racc \
|
|
${WRKSRC}/misc/racc2y ${WRKSRC}/misc/y2racc ${PREFIX}/bin/
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_EXAMPLESDIR}/racc
|
|
.for f in ${EXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/sample/${f} ${RUBY_EXAMPLESDIR}/racc/
|
|
.endfor
|
|
${MKDIR} ${RUBY_DOCDIR}/racc/ja
|
|
.for f in ${DOCS_EN}
|
|
${INSTALL_DATA} ${WRKSRC}/doc.en/${f} ${RUBY_DOCDIR}/racc/
|
|
.endfor
|
|
.for f in ${DOCS_JA}
|
|
${INSTALL_DATA} ${WRKSRC}/doc.ja/${f} ${RUBY_DOCDIR}/racc/ja/
|
|
.endfor
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/Mk/bsd.ruby.mk"
|
|
.include <bsd.port.post.mk>
|