summaryrefslogtreecommitdiff
path: root/java/jdk14-doc/Makefile
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-03-22 02:21:30 +0000
committerSteve Price <steve@FreeBSD.org>1999-03-22 02:21:30 +0000
commitb07e71ed4f9a00e5a1820c548af5977ccb9d1088 (patch)
treeb4c7dd9fe1c8145c6d4e42acb4d3a06eeed7450f /java/jdk14-doc/Makefile
parentkludge so that the os detection doesn't think freebsd4.0 is svr4. (diff)
Fixes from maintainer:
This patch does the following things: - show some **very** useful links after installing the port - use ${TAR} instead of just tar and prepend arguments with a `-' PR: 10703 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=17339
Diffstat (limited to 'java/jdk14-doc/Makefile')
-rw-r--r--java/jdk14-doc/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/java/jdk14-doc/Makefile b/java/jdk14-doc/Makefile
index edf2c9203431..ba8945afc695 100644
--- a/java/jdk14-doc/Makefile
+++ b/java/jdk14-doc/Makefile
@@ -3,7 +3,7 @@
# Date created: Mon Mar 8 10:10:42 EET 1999
# Whom: Martti Kuparinen <martti.kuparinen@ericsson.com>
#
-# $Id$
+# $Id: Makefile,v 1.1.1.1 1999/03/18 05:16:45 taoka Exp $
#
DISTNAME= jdk117B-doc
@@ -36,7 +36,10 @@ do-fetch:
do-install:
${MKDIR} ${PREFIX}/jdk1.1.7
- (cd ${WRKSRC} && tar cf - docs) \
- | (cd ${PREFIX}/jdk1.1.7 && tar xf -)
+ (cd ${WRKSRC} && ${TAR} -cf - docs) \
+ | (cd ${PREFIX}/jdk1.1.7 && ${TAR} -xf -)
+
+post-install:
+ @${SED} s+!!PREFIX!!+${PREFIX}+g < ${PKGDIR}/MESSAGE
.include <bsd.port.mk>