diff options
author | Ernst de Haan <znerd@FreeBSD.org> | 2002-03-28 15:24:47 +0000 |
---|---|---|
committer | Ernst de Haan <znerd@FreeBSD.org> | 2002-03-28 15:24:47 +0000 |
commit | 134c13dd7a577e6feb62a35f6ed05e43f7041ccb (patch) | |
tree | 5a06750a5dc6fda6873b41d8f91d8961029d746b /www/orion | |
parent | Synced control program and man page. Bumped PORTREVISION to 11. (diff) |
First checking if WITH_JIKES is actually defined before
comparing it. Bumped PORTREVISION.
Reported by: Dan Langille <dan@langille.org>
Notes
Notes:
svn path=/head/; revision=56794
Diffstat (limited to 'www/orion')
-rw-r--r-- | www/orion/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/orion/Makefile b/www/orion/Makefile index db8acaaf5720..bcfb92e8526d 100644 --- a/www/orion/Makefile +++ b/www/orion/Makefile @@ -7,7 +7,7 @@ PORTNAME= orion PORTVERSION= 1.5.2 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= www java MASTER_SITES= http://www.orionserver.com/distributions/ \ http://www.atlassian.com/software/orion/downloads/ \ @@ -113,7 +113,7 @@ do-install: @${ECHO_CMD} " [ DONE ]" .endfor -.if ${WITH_JIKES} == "YES" +.if defined(WITH_JIKES) && ${WITH_JIKES} == "YES" @${ECHO_CMD} -n ">> Configuring Jikes support..." @${SED} -e "/\<!-- \<compiler executable=\"jikes\" classpath=\"\/myjdkdir\/jre\/lib\/rt.jar\" \/\> -->/s//\<compiler executable=\"${JIKES_LOCATION:S/\//\\\//g}\" classpath=\"${JAVA_HOME:S/\//\\\//g}\/jre\/lib\/rt.jar\"\/\>/" \ ${WRKSRC}/config/server.xml > ${APP_HOME}/config/server.xml |