diff options
author | steve <steve@FreeBSD.org> | 1999-03-22 02:21:30 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-03-22 02:21:30 +0000 |
commit | 1d513e0ca6b2d23e27a6f2dda4273d8f158146d0 (patch) | |
tree | 22e711f98f86bc5e145b9b62f83b888e4203c9b7 /java/jdk12-doc | |
parent | 917425cfcda713872e7d1f7c163a0a70c88ffbb9 (diff) | |
download | FreeBSD-ports-1d513e0ca6b2d23e27a6f2dda4273d8f158146d0.zip FreeBSD-ports-1d513e0ca6b2d23e27a6f2dda4273d8f158146d0.tar.gz |
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
Diffstat (limited to 'java/jdk12-doc')
-rw-r--r-- | java/jdk12-doc/Makefile | 9 | ||||
-rw-r--r-- | java/jdk12-doc/pkg-message | 17 |
2 files changed, 23 insertions, 3 deletions
diff --git a/java/jdk12-doc/Makefile b/java/jdk12-doc/Makefile index edf2c92..ba8945a 100644 --- a/java/jdk12-doc/Makefile +++ b/java/jdk12-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> diff --git a/java/jdk12-doc/pkg-message b/java/jdk12-doc/pkg-message new file mode 100644 index 0000000..4fc7fc7 --- /dev/null +++ b/java/jdk12-doc/pkg-message @@ -0,0 +1,17 @@ +Here are some useful bookmark entries for your Web browser: + +JDK 1.1.7 Documentation: +------------------------ +file:!!PREFIX!!/jdk1.1.7/docs/index.html + +JDK 1.1 Package Index: +---------------------- +file:!!PREFIX!!/jdk1.1.7/docs/api/packages.html + +JDK 1.1 Class Hierarchy: +------------------------ +file:!!PREFIX!!/jdk1.1.7/docs/api/tree.html + +JDK 1.1 Index: +-------------- +file:!!PREFIX!!/jdk1.1.7/docs/api/a-names.html |