mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
090059a210
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)
35 lines
875 B
Makefile
35 lines
875 B
Makefile
# New ports collection makefile for: bluej
|
|
# Date created: 27 June 2001
|
|
# Whom: Jeremy <karlj000@unbc.ca>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bluej
|
|
PORTVERSION= 2.2.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= java editors
|
|
MASTER_SITES= http://www.bluej.org/download/files/ \
|
|
ftp://ftp.bluej.org/pub/bluej/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g}
|
|
EXTRACT_SUFX= .jar
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= lme@FreeBSD.org
|
|
COMMENT= Integrated Java environment designed for introductory teaching
|
|
|
|
IS_INTERACTIVE= yes
|
|
NO_BUILD= yes
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.4+
|
|
|
|
do-install:
|
|
@${ECHO} Starting BlueJ graphical installer... Please install to default path of
|
|
@${ECHO} ${PREFIX}/bluej. Close the installer when done.
|
|
@cd ${PREFIX}; ${JAVA_HOME}/bin/java -jar ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}
|
|
-@${MKDIR} ${PREFIX}/bin
|
|
@${LN} -sf ${PREFIX}/bluej/bluej ${PREFIX}/bin/bluej
|
|
|
|
.include <bsd.port.mk>
|