1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00
freebsd-ports/lang/rhino/Makefile
Edwin Groothuis 090059a210 Bump portrevision due to upgrade of devel/gettext.
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
2008-06-06 14:17:21 +00:00

56 lines
1.4 KiB
Makefile

# New ports collection makefile for: rhino
# Date created: 2008-01-26
# Whom: Nicola Vitale <nivit@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= rhino
DISTVERSION= 1_7R1
#PORTREVISION= 0
#PORTEPOCH= 0
PORTREVISION= 1
CATEGORIES= lang java
MASTER_SITES= ftp://ftp.mozilla.org/pub/mozilla.org/js/:rhino \
http://java.sun.com/products/jfc/tsc/articles/treetable2/downloads/:swingex \
${MASTER_SITE_APACHE}:xmlbeans
MASTER_SITE_SUBDIR= xmlbeans/binaries/:xmlbeans
DISTFILES= ${PORTNAME}${DISTVERSION}.zip:rhino \
src.zip:swingex \
xmlbeans-2.2.0.zip:xmlbeans
DIST_SUBDIR= ${PORTNAME}
EXTRACT_ONLY= ${PORTNAME}${DISTVERSION}.zip
MAINTAINER= nivit@FreeBSD.org
COMMENT= An implementation of JavaScript written in Java
ALL_TARGET= jar
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
JAVA_VERSION= 1.5+
MAKE_ARGS= -Dxmlbeans.url=file://${DISTDIR}/${DIST_SUBDIR}/xmlbeans-2.2.0.zip \
-Dswing-ex-url=file://${DISTDIR}/${DIST_SUBDIR}/src.zip
RHINOJAR= ${DATADIR}/${PORTNAME}.jar
SUB_FILES= rhinoc rhinodbg rhinosh
SUB_LIST= RHINOJAR=${RHINOJAR}
USE_ANT= yes
USE_JAVA= yes
USE_ZIP= yes
WRKSRC= ${WRKDIR}/${PORTNAME}${DISTVERSION}
do-install:
@${MKDIR} ${DATADIR}; \
${INSTALL_DATA} ${WRKSRC}/build/${PORTNAME}${DISTVERSION}/js.jar ${RHINOJAR}; \
RHINOSCRIPTS="${SUB_FILES}"; \
for RHINOSCRIPT in $${RHINOSCRIPTS}; do \
${INSTALL_SCRIPT} ${WRKDIR}/$${RHINOSCRIPT} ${PREFIX}/bin/; \
done
.include <bsd.port.mk>