diff options
author | agc <agc@pkgsrc.org> | 1998-06-23 16:42:24 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-06-23 16:42:24 +0000 |
commit | 4724b8ab17126d347aee09d939321ae7a812c44d (patch) | |
tree | 42e17337faa506a4e463943d9a337f7527d61fcb /lang/jdk/Makefile | |
parent | 1dcf7546c1f625c0b2e4ff3108ad41971cd970a0 (diff) | |
download | pkgsrc-4724b8ab17126d347aee09d939321ae7a812c44d.tar.gz |
Addition of version 1.1.5b1 of the Java(TM) Development Kit to the
packages collection. This was ported by Simon Gerraty, uses Sun's
green threads implementation, and is based on the FreeBSD port.
Currently, this is only for the i386 architecture.
Diffstat (limited to 'lang/jdk/Makefile')
-rw-r--r-- | lang/jdk/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lang/jdk/Makefile b/lang/jdk/Makefile new file mode 100644 index 00000000000..b53cb800fa6 --- /dev/null +++ b/lang/jdk/Makefile @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1 1998/06/23 16:42:24 agc Exp $ + +DISTNAME= jdk115b1 +PKGNAME= jdk-1.1.5b1 +CATEGORIES= lang +MASTER_SITES= http://www.fi.muni.cz/~dolecek/NetBSD/java/ + +MAINTAINER= packages@netbsd.org + +RESTRICTED= 'No redistribution of the Java(tm) Development Kit' +NO_PACKAGE= ${RESTRICTED} +MIRROR_DISTFILE= no + +ONLY_FOR_ARCHS= i386 + +WRKSRC= ${WRKDIR}/jdk1.1.5 + +NO_CONFIGURE= yes +NO_BUILD= yes + +do-install: + -${MKDIR} ${PREFIX}/java + (cd ${WRKSRC}; tar cf - . | (cd ${PREFIX}/java ; tar xvf - )) + +.include "../../mk/bsd.pkg.mk" |