mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-31 04:22:12 +08:00
d6a8af7f3d
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@650 af4574ff-66df-0310-9fd7-8a98e5e911e0
66 lines
2.5 KiB
XML
66 lines
2.5 KiB
XML
<sect2>
|
|
<title>Installation of j2sdk</title>
|
|
|
|
<para>Both versions will be installed in parallel. You may choose to keep either
|
|
or both.</para>
|
|
|
|
<para>Install the binary version of the jdk by running the following commands:</para>
|
|
|
|
<para><screen><userinput>VERSION=&j2sdk-bin-version; &&
|
|
MV=`echo $VERSION | cut -d "_" -f 1,1` &&
|
|
V=`echo ${VERSION} | sed -e "s/\./_/g"` &&
|
|
T=`grep -a tail j2sdk-${V}-linux-i?86.bin | cut -f 2 -d " "` &&
|
|
tail $T j2sdk-${V}-linux-i?86.bin > install.sfx.$$ &&
|
|
chmod +x install.sfx.$$ &&
|
|
./install.sfx.$$ &&
|
|
cd j2sdk${VERSION} &&
|
|
install -d /opt/j2sdk/j2sdk-precompiled-${MV} &&
|
|
mv * /opt/j2sdk/j2sdk-precompiled-${MV}</userinput></screen></para>
|
|
|
|
<para>The binary version is now installed.</para>
|
|
|
|
<para>If you don't want to compile the source, skip ahead to the configuration
|
|
section.</para>
|
|
|
|
<para>Add the recently compiled JDK to the path.</para>
|
|
<screen><userinput>export JAVA_HOME=/opt/j2sdk/j2sdk-precompiled-${MV} &&
|
|
export PATH=$PATH:${JAVA_HOME}/bin</userinput></screen>
|
|
|
|
<para>Unzip and patch the source:</para>
|
|
|
|
<para><screen><userinput>VERSION=&j2sdk-src-version; &&
|
|
V=`echo $VERSION | sed -e "s/\./_/g"` &&
|
|
unzip j2sdk-${V}-src-scsl.zip &&
|
|
unzip j2sdk-${V}-mozilla_headers-unix.zip &&
|
|
patch -Np1 -i j2sdk-${VERSION}-fix-intl-files.patch &&
|
|
patch -Np1 -i j2sdk-${VERSION}-link-missing-libs.patch &&
|
|
patch -Np1 -i j2sdk-${VERSION}-remove-fixed-paths.patch &&
|
|
patch -Np1 -i j2sdk-${VERSION}-syntax-fixes.patch &&
|
|
patch -Np1 -i j2sdk-${VERSION}-use-included-motif.patch</userinput></screen></para>
|
|
|
|
<para>Set some vars which affect the build:</para>
|
|
<para><screen><userinput>export ALT_BOOTDIR="$JAVA_HOME" &&
|
|
unset JAVA_HOME &&
|
|
unset CLASSPATH &&
|
|
unset CFLAGS &&
|
|
unset CXXFLAGS &&
|
|
unset LDFLAGS &&
|
|
export ALT_DEVTOOLS_PATH="/usr/bin" &&
|
|
export BUILD_NUMBER="blfs-`date +%s`" &&
|
|
export DEV_ONLY=true &&
|
|
export ALT_MOZILLA_PATH=$PWD &&
|
|
export INSANE=true &&
|
|
export MAKE_VERBOSE=true &&
|
|
export ALT_CACERTS_FILE=${ALT_BOOTDIR}/jre/lib/security/cacerts</userinput></screen></para>
|
|
|
|
<para>Make and Install j2sdk with the following commands:</para>
|
|
|
|
<para><screen><userinput>cd control/make &&
|
|
make &&
|
|
cd ../.. &&
|
|
cd control/build/linux-i?86 &&
|
|
cp -a j2sdk-image /opt/j2sdk/j2sdk-&j2sdk-src-version; &&</userinput></screen></para>
|
|
|
|
</sect2>
|
|
|