diff options
author | znerd <znerd@FreeBSD.org> | 2002-03-28 23:24:47 +0800 |
---|---|---|
committer | znerd <znerd@FreeBSD.org> | 2002-03-28 23:24:47 +0800 |
commit | bc144c19b03ab9b1f12cd29d287fa930a296f988 (patch) | |
tree | 464ce9fb0130cd7e6318d013bac16c0316f76506 /www | |
parent | af6223385a87e5bbf5f0e99489c640c724cc270b (diff) | |
download | freebsd-ports-graphics-bc144c19b03ab9b1f12cd29d287fa930a296f988.tar.gz freebsd-ports-graphics-bc144c19b03ab9b1f12cd29d287fa930a296f988.tar.zst freebsd-ports-graphics-bc144c19b03ab9b1f12cd29d287fa930a296f988.zip |
First checking if WITH_JIKES is actually defined before
comparing it. Bumped PORTREVISION.
Reported by: Dan Langille <dan@langille.org>
Diffstat (limited to 'www')
-rw-r--r-- | www/orion-devel/Makefile | 4 | ||||
-rw-r--r-- | www/orion/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/www/orion-devel/Makefile b/www/orion-devel/Makefile index db8acaaf572..bcfb92e8526 100644 --- a/www/orion-devel/Makefile +++ b/www/orion-devel/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 diff --git a/www/orion/Makefile b/www/orion/Makefile index db8acaaf572..bcfb92e8526 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 |