47 lines
1017 B
Makefile
47 lines
1017 B
Makefile
# New ports collection makefile for: Ruby/JS
|
|
# Date created: 25 February 2003
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= js
|
|
PORTVERSION= 0.0.4
|
|
CATEGORIES= lang ruby
|
|
MASTER_SITES= http://www.rubyist.net/~tamura/ruby/ruby-js/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= ruby${PORTNAME}-${PORTVERSION}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
COMMENT= A Ruby binding to NJS JavaScript Interpreter
|
|
|
|
LIB_DEPENDS= js.0:${PORTSDIR}/lang/njs
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
WRKSRC= ${WRKDIR}/JS
|
|
INSTALL_TARGET= site-install
|
|
|
|
EXAMPLES= classtest.rb
|
|
DOCS_EN= README.rd
|
|
DOCS_JA= README.rd.ja
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_MODEXAMPLESDIR}
|
|
.for f in ${EXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR}/
|
|
.endfor
|
|
${MKDIR} ${RUBY_MODDOCDIR}/ja
|
|
.for f in ${DOCS_EN}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
|
.endfor
|
|
.for f in ${DOCS_JA}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|