summaryrefslogtreecommitdiff
path: root/java/linux-sun-jdk12
diff options
context:
space:
mode:
authorErnst de Haan <znerd@FreeBSD.org>2002-05-09 10:19:46 +0000
committerErnst de Haan <znerd@FreeBSD.org>2002-05-09 10:19:46 +0000
commit21eac47df4d260244808b0d1b587af12a5e47527 (patch)
tree178aa9b8e5a7ce53d06aa0982188c9e18f7557bc /java/linux-sun-jdk12
parentNow matches the new installation directory of the (diff)
Made installation friendlier. The different steps involved
are displayed. The output is now similar to the www/orion and www/jakarta-tomcat* ports.
Notes
Notes: svn path=/head/; revision=58794
Diffstat (limited to 'java/linux-sun-jdk12')
-rw-r--r--java/linux-sun-jdk12/Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/java/linux-sun-jdk12/Makefile b/java/linux-sun-jdk12/Makefile
index 10df06140883..ff7d894b29b0 100644
--- a/java/linux-sun-jdk12/Makefile
+++ b/java/linux-sun-jdk12/Makefile
@@ -42,8 +42,16 @@ IGNORE=You must manually fetch the Sun Java 2 Standard Edition SDK ${JDK_VERSION
.endif
do-install:
- ${MKDIR} ${APP_HOME}
- ${CP} -R ${WRKSRC}/* ${APP_HOME}
- ${LOCALBASE}/bin/registervm "${APP_HOME}/bin/java # Sun-JDK${PORTVERSION}_${PORTREVISION}"
+ @${ECHO} -n "Creating destination directory ${APP_HOME}..."
+ @${MKDIR} ${APP_HOME}
+ @${ECHO} " [ DONE ]"
+
+ @${ECHO} -n "Copying files..."
+ @${CP} -R ${WRKSRC}/* ${APP_HOME}
+ @${ECHO} " [ DONE ]"
+
+ @${ECHO} -n "Registering with javavm..."
+ @${LOCALBASE}/bin/registervm "${APP_HOME}/bin/java # Sun-JDK${PORTVERSION}_${PORTREVISION}"
+ @${ECHO} " [ DONE ]"
.include <bsd.port.post.mk>