summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-06-12 13:28:14 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-06-12 13:28:14 +0000
commitdf962173f39fe1de0d0bd0ee816060a6e718638d (patch)
treebb91754f43a5456ef6f0377c1355c50ab3a44b8e /java
parentAdd support for javavmwrapper. (diff)
Initial import of JRE - Sun's Java Run Time Enviponment.
Notes
Notes: svn path=/head/; revision=29543
Diffstat (limited to 'java')
-rw-r--r--java/jre/Makefile77
-rw-r--r--java/jre/distinfo2
-rw-r--r--java/jre/pkg-comment1
-rw-r--r--java/jre/pkg-descr16
-rw-r--r--java/jre/pkg-message141
-rw-r--r--java/jre/pkg-plist59
6 files changed, 296 insertions, 0 deletions
diff --git a/java/jre/Makefile b/java/jre/Makefile
new file mode 100644
index 000000000000..141dcc610a6b
--- /dev/null
+++ b/java/jre/Makefile
@@ -0,0 +1,77 @@
+# New ports collection makefile for: jre
+# Date created: 8 May 2000
+# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= jre
+PORTVERSION= ${JRE_VERSION}
+CATEGORIES= java devel
+MASTER_SITES= ftp://ftp.sc.sri.com/pub/FreeBSD/JDK/ \
+ http://www.freebsd.org/java/
+
+MAINTAINER= sobomax@FreeBSD.org
+
+RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper
+
+NO_CDROM= "License doesn't allow distribution with fee"
+
+ONLY_FOR_ARCHS= i386
+JRE_VERSION= 1.1.8
+PLIST_SUB+= JRE_VERSION=${JRE_VERSION}
+
+WRKSRC= ${WRKDIR}/jre
+
+STRIPFILES= bin/i386/green_threads/jre \
+ bin/i386/green_threads/jre_X \
+ lib/i386/green_threads/libawt.so \
+ lib/i386/green_threads/libjava.so \
+ lib/i386/green_threads/libjpeg.so \
+ lib/i386/green_threads/libmath.so \
+ lib/i386/green_threads/libmmedia.so \
+ lib/i386/green_threads/libnet.so \
+ lib/i386/green_threads/libsysresource.so \
+ lib/i386/green_threads/libzip.so
+
+.include <bsd.port.pre.mk>
+
+.if ${PORTOBJFORMAT} == "aout"
+DISTFILES= jre${JRE_VERSION}i_AOUT.V1999-11-9.tar.gz
+.else
+DISTFILES= jre${JRE_VERSION}i_ELF.V1999-11-9.tar.gz
+.endif
+
+pre-extract:
+.if ${PORTOBJFORMAT} == "elf"
+ @if ! (${LDCONFIG} -r | ${GREP} -qwF -e "-lc.3"); then \
+ ${ECHO_MSG} ; \
+ ${ECHO_MSG} " WARNING! It appears that you don't have installed libc.so.3 shared library," ; \
+ ${ECHO_MSG} " which is required to run JRE. Usually you can install it as part of" ; \
+ ${ECHO_MSG} " the \`compat3x' package. If you have FreeBSD source code installed" ; \
+ ${ECHO_MSG} " then you can use the following command to install it:" ; \
+ ${ECHO_MSG} ; \
+ ${ECHO_MSG} " # cd /usr/src/lib/compat/compat3x ; make install" ; \
+ ${ECHO_MSG} ; \
+ fi
+.endif
+
+do-build:
+ @for file in ${STRIPFILES}; do \
+ strip ${WRKSRC}/$$file; \
+ done
+
+do-install:
+ ${MKDIR} ${PREFIX}/jre${JRE_VERSION}
+ (cd ${WRKSRC} && ${TAR} -c -f - .) \
+ | (cd ${PREFIX}/jre${JRE_VERSION} && ${TAR} --unlink -x -f -)
+ cd ${PREFIX}/jre${JRE_VERSION}/bin && \
+ ${LN} -sf .java_wrapper java && \
+ cd i386/green_threads && \
+ ${LN} -sf jre java && \
+ ${LN} -sf jre_X java_X
+
+post-install:
+ ${LOCALBASE}/bin/registervm "${PREFIX}/jre${JRE_VERSION}/bin/java # JRE${JRE_VERSION}"
+
+.include <bsd.port.post.mk>
diff --git a/java/jre/distinfo b/java/jre/distinfo
new file mode 100644
index 000000000000..e793aa7b05ea
--- /dev/null
+++ b/java/jre/distinfo
@@ -0,0 +1,2 @@
+MD5 (jre1.1.8i_AOUT.V1999-11-9.tar.gz) = 10b15616baa0b24a70e2203832906e0b
+MD5 (jre1.1.8i_ELF.V1999-11-9.tar.gz) = 3914d0bc7382d1b5548ba347ea4b69b6
diff --git a/java/jre/pkg-comment b/java/jre/pkg-comment
new file mode 100644
index 000000000000..1dca897db1c1
--- /dev/null
+++ b/java/jre/pkg-comment
@@ -0,0 +1 @@
+Standard Java Platform for running Java programs
diff --git a/java/jre/pkg-descr b/java/jre/pkg-descr
new file mode 100644
index 000000000000..7ecdc423f466
--- /dev/null
+++ b/java/jre/pkg-descr
@@ -0,0 +1,16 @@
+The Java Runtime Environment is the minimum standard Java Platform for
+running Java programs. It contains the Java virtual machine, Java core
+classes and supporting files.
+
+Executables are installed into /usr/local/jdk1.1.8/bin. You may want to
+put this into your PATH or symlink them to /usr/local/bin in case you
+don't have kaffe installed (which shared many of the binarie's
+names).
+
+You may want to build a kernel with
+options SYSVSEM
+
+For more information about the Java for FreeBSD see
+http://www.freebsd.org/java/
+
+WWW: http://www.freebsd.org/java/
diff --git a/java/jre/pkg-message b/java/jre/pkg-message
new file mode 100644
index 000000000000..ffee59eb3702
--- /dev/null
+++ b/java/jre/pkg-message
@@ -0,0 +1,141 @@
+ Sun Microsystems, Inc.
+ Binary Code License Agreement
+
+READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL
+LICENSE TERMS (COLLECTIVELY "AGREEMENT") CAREFULLY BEFORE
+OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE
+MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF
+YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR
+ACCEPTANCE OF THESE TERMS BY SELECTING THE "ACCEPT" BUTTON AT
+THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE
+TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF
+PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED
+ELECTRONICALLY, SELECT THE "DECLINE" BUTTON AT THE END OF THIS
+AGREEMENT.
+
+1. LICENSE TO USE. Sun grants you a non-exclusive and
+non-transferable license for the internal use only of the accompanying
+software and documentation and any error corrections provided by Sun
+(collectively "Software"), by the number of users and the class of
+computer hardware for which the corresponding fee has been paid.
+
+2. RESTRICTIONS Software is confidential and copyrighted. Title to
+Software and all associated intellectual property rights is retained
+by Sun and/or its licensors. Except as specifically authorized in any
+Supplemental License Terms, you may not make copies of Software, other
+than a single copy of Software for archival purposes. Unless
+enforcement is prohibited by applicable law, you may not modify,
+decompile, reverse engineer Software. Software is not designed or
+licensed for use in on-line control of aircraft, air traffic, aircraft
+navigation or aircraft communications; or in the design, construction,
+operation or maintenance of any nuclear facility. You warrant that
+you will not use Software for these purposes. You may not publish or
+provide the results of any benchmark or comparison tests run on
+Software to any third party without the prior written consent of Sun.
+No right, title or interest in or to any trademark, service mark, logo
+or trade name of Sun or its licensors is granted under this Agreement.
+
+3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety
+(90) days from the date of purchase, as evidenced by a copy of the
+receipt, the media on which Software is furnished (if any) will be
+free of defects in materials and workmanship under normal use. Except
+for the foregoing, Software is provided "AS IS". Your exclusive
+remedy and Sun's entire liability under this limited warranty will be
+at Sun's option to replace Software media or refund the fee paid for
+Software.
+
+4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT,
+ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
+INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO
+THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.
+
+5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW,
+IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE,
+PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL
+OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF
+LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO
+USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES. In no event will Sun's liability to you, whether in
+contract, tort (including negligence), or otherwise, exceed the amount
+paid by you for Software under this Agreement. The foregoing
+limitations will apply even if the above stated warranty fails of its
+essential purpose.
+
+6. Termination. This Agreement is effective until terminated. You
+may terminate this Agreement at any time by destroying all copies of
+Software. This Agreement will terminate immediately without notice
+from Sun if you fail to comply with any provision of this Agreement.
+Upon Termination, you must destroy all copies of Software.
+
+7. Export Regulations. All Software and technical data delivered
+under this Agreement are subject to US export control laws and may be
+subject to export or import regulations in other countries. You agree
+to comply strictly with all such laws and regulations and acknowledge
+that you have the responsibility to obtain such licenses to export,
+re-export, or import as may be required after delivery to you.
+
+8. U.S. Government Restricted Rights. Use, duplication, or
+disclosure by the U.S. Government is subject to restrictions set forth
+in this Agreement and as provided in DFARS 227.7202-1 (a) and
+227.7202-3(a) (1995), DFARS 252.227-7013 (c)(1)(ii)(Oct 1988), FAR
+12.212 (a) (1995), FAR 52.227-19 (June 1987), or FAR 52.227-14(ALT
+III) (June 1987), as applicable.
+
+9. Governing Law. Any action related to this Agreement will be
+governed by California law and controlling U.S. federal law. No
+choice of law rules of any jurisdiction will apply.
+
+10. Severability. If any provision of this Agreement is held to be
+unenforceable, This Agreement will remain in effect with the provision
+omitted, unless omission would frustrate the intent of the parties, in
+which case this Agreement will immediately terminate.
+
+11. Integration. This Agreement is the entire agreement between you
+and Sun relating to its subject matter. It supersedes all prior or
+contemporaneous oral or written communications, proposals,
+representations and warranties and prevails over any conflicting or
+additional terms of any quote, order, acknowledgment, or other
+communication between the parties relating to its subject matter
+during the term of this Agreement. No modification of this Agreement
+will be binding, unless in writing and signed by an authorized
+representative of each party.
+
+For inquiries please contact: Sun Microsystems, Inc. 901 San Antonio
+Road, Palo Alto, California 94303
+
+
+JAVA(TM) RUNTIME ENVIRONMENT VERSION 1.1.8
+
+SUPPLEMENTAL LICENSE TERMS
+
+These supplemental terms ("Supplement") add to the terms of the
+Binary Code License Agreement (collectively the "Agreement").
+Capitalized terms not defined herein shall have the same meanings
+ascribed to them in the Agreement. The Supplement terms shall
+supersede any inconsistent or conflicting terms in the Agreement,
+either above or contained within the Software.
+
+1. License to Distribute. You are granted a royalty-free right to
+reproduce and distribute the Software provided that you: (i)distribute
+the Software complete and unmodified, provided that the Software is
+distributed with your Java applet or application ("Program"); (ii) do
+not distribute additional software intended to replace any
+component(s) of the Software; (iii) do not remove or alter the
+Agreement, any proprietary legends or notices contained in the
+Software; (iv) only distribute the Software subject to this Agreement;
+(v) may not create, or authorize your licensees to create additional
+classes, interfaces, or subpackages that are contained in the "java"
+or "sun" packages or similar as specified by Sun in any class file
+naming convention; (vi) agree to indemnify, hold harmless, and
+defend Sun and its licensors from and against any claims or lawsuits,
+including attorneys' fees, that arise or result from the use or
+distribution of the Program.
+
+2. Trademarks and Logos. You acknowledge as between you and Sun
+that Sun owns the Java trademark and all Java-related trademarks,
+logos and icons including the Coffee Cup and Duke ("Java Marks") and
+agrees to comply with the Java Trademark Guidelines at
+http://java.sun.com/trademarks.html.
+
+
diff --git a/java/jre/pkg-plist b/java/jre/pkg-plist
new file mode 100644
index 000000000000..8488d837c18a
--- /dev/null
+++ b/java/jre/pkg-plist
@@ -0,0 +1,59 @@
+jre%%JRE_VERSION%%/CHANGES
+jre%%JRE_VERSION%%/COPYRIGHT
+jre%%JRE_VERSION%%/LICENSE
+jre%%JRE_VERSION%%/README
+jre%%JRE_VERSION%%/README.FreeBSD
+jre%%JRE_VERSION%%/bin/.java_wrapper
+jre%%JRE_VERSION%%/bin/i386/green_threads/.extract_args
+jre%%JRE_VERSION%%/bin/i386/green_threads/java
+jre%%JRE_VERSION%%/bin/i386/green_threads/java_X
+jre%%JRE_VERSION%%/bin/i386/green_threads/javakey
+jre%%JRE_VERSION%%/bin/i386/green_threads/jre
+jre%%JRE_VERSION%%/bin/i386/green_threads/jre_X
+jre%%JRE_VERSION%%/bin/i386/green_threads/rmiregistry
+jre%%JRE_VERSION%%/bin/java
+jre%%JRE_VERSION%%/bin/javakey
+jre%%JRE_VERSION%%/bin/jre
+jre%%JRE_VERSION%%/bin/rmiregistry
+jre%%JRE_VERSION%%/lib/awt.properties
+jre%%JRE_VERSION%%/lib/content-types.properties
+jre%%JRE_VERSION%%/lib/font.properties
+jre%%JRE_VERSION%%/lib/font.properties.ISO8859_15_FDIS
+jre%%JRE_VERSION%%/lib/font.properties.cs
+jre%%JRE_VERSION%%/lib/font.properties.el
+jre%%JRE_VERSION%%/lib/font.properties.hu
+jre%%JRE_VERSION%%/lib/font.properties.ja
+jre%%JRE_VERSION%%/lib/font.properties.ko
+jre%%JRE_VERSION%%/lib/font.properties.lt
+jre%%JRE_VERSION%%/lib/font.properties.lv
+jre%%JRE_VERSION%%/lib/font.properties.pl
+jre%%JRE_VERSION%%/lib/font.properties.ru
+jre%%JRE_VERSION%%/lib/font.properties.tr
+jre%%JRE_VERSION%%/lib/font.properties.zh_EUC_CN
+jre%%JRE_VERSION%%/lib/font.properties.zh_TW_Big5
+jre%%JRE_VERSION%%/lib/font.properties.zh_TW_EUC_TW
+jre%%JRE_VERSION%%/lib/i18n.jar
+jre%%JRE_VERSION%%/lib/i386/green_threads/libawt.so
+jre%%JRE_VERSION%%/lib/i386/green_threads/libawt.so.1.1.8
+jre%%JRE_VERSION%%/lib/i386/green_threads/libjava.so
+jre%%JRE_VERSION%%/lib/i386/green_threads/libjava.so.1.1.8
+jre%%JRE_VERSION%%/lib/i386/green_threads/libjpeg.so
+jre%%JRE_VERSION%%/lib/i386/green_threads/libmath.so
+jre%%JRE_VERSION%%/lib/i386/green_threads/libmmedia.so
+jre%%JRE_VERSION%%/lib/i386/green_threads/libnet.so
+jre%%JRE_VERSION%%/lib/i386/green_threads/libsysresource.so
+jre%%JRE_VERSION%%/lib/i386/green_threads/libzip.so
+jre%%JRE_VERSION%%/lib/psfont.properties.ja
+jre%%JRE_VERSION%%/lib/rt.jar
+jre%%JRE_VERSION%%/lib/security/java.security
+jre%%JRE_VERSION%%/lib/serialver.properties
+@exec %D/bin/registervm "%D/jre%%JRE_VERSION%%/bin/java # JRE%%JRE_VERSION%%"
+@unexec %D/bin/unregistervm JRE%%JRE_VERSION%%
+@dirrm jre%%JRE_VERSION%%/lib/security
+@dirrm jre%%JRE_VERSION%%/lib/i386/green_threads
+@dirrm jre%%JRE_VERSION%%/lib/i386
+@dirrm jre%%JRE_VERSION%%/lib
+@dirrm jre%%JRE_VERSION%%/bin/i386/green_threads
+@dirrm jre%%JRE_VERSION%%/bin/i386
+@dirrm jre%%JRE_VERSION%%/bin
+@dirrm jre%%JRE_VERSION%%