summaryrefslogtreecommitdiff
path: root/java/jdk11-doc/Makefile
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2000-04-19 09:06:27 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2000-04-19 09:06:27 +0000
commitc76a75669bbe4801a07f51b6c6cea9f3019b9109 (patch)
tree3919884d2915cf873a2853b3e0ca56a975f643b0 /java/jdk11-doc/Makefile
parentUpdate to 1.1.0. (diff)
Update to 1.1.8_003. (PORTVERSION untouched)
PR: 18034 Submitted by: Palle Girgensohn <girgen@partitur.se> Use just `${CP} -R' instead of tar|tar. By the way, owner/group IDs of files should not be preserved on copying in the installation process, because if one did `make' and then `su' to `make install', the installed files would be owned by a normal user. Beware, porters!
Notes
Notes: svn path=/head/; revision=27743
Diffstat (limited to 'java/jdk11-doc/Makefile')
-rw-r--r--java/jdk11-doc/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/java/jdk11-doc/Makefile b/java/jdk11-doc/Makefile
index ba40cf003dd5..08b0b9bf4424 100644
--- a/java/jdk11-doc/Makefile
+++ b/java/jdk11-doc/Makefile
@@ -8,7 +8,7 @@
PORTNAME= jdk-doc
PORTVERSION= 1.1.8
CATEGORIES= java
-DISTNAME= jdk118-doc
+DISTNAME= jdk-1_1_8_003-doc
MAINTAINER= martti.kuparinen@ericsson.com
@@ -37,8 +37,7 @@ do-fetch:
do-install:
${MKDIR} ${PREFIX}/jdk${PORTVERSION}
- (cd ${WRKSRC} && ${TAR} -cf - docs) \
- | (cd ${PREFIX}/jdk${PORTVERSION} && ${TAR} -xf -)
- @${CAT} ${PKGMESSAGE} | ${SED} s+!!PREFIX!!+${PREFIX}+g
+ ${CP} -R ${WRKSRC}/docs ${PREFIX}/jdk${PORTVERSION}/
+ @${SED} 's+\$${PREFIX}+${PREFIX}+g' ${PKGMESSAGE}
.include <bsd.port.post.mk>