2007-02-20 18:04:37 +01:00
|
|
|
source $stdenv/setup
|
2004-01-24 23:04:09 +01:00
|
|
|
|
2007-03-05 20:54:37 +01:00
|
|
|
echo "Unpacking distribution"
|
|
|
|
unzip ${src} || true
|
|
|
|
|
2007-03-05 22:33:47 +01:00
|
|
|
# set the dynamic linker of unpack200, necessary for construct script
|
|
|
|
echo "patching unpack200"
|
2008-04-23 09:34:20 +02:00
|
|
|
patchelf --interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" --set-rpath "" */bin/unpack200
|
2007-03-05 22:33:47 +01:00
|
|
|
|
|
|
|
echo "constructing JDK and JRE installations"
|
2007-03-05 18:13:53 +01:00
|
|
|
if test -z "$installjdk"; then
|
|
|
|
sh ${construct} . tmp-linux-jdk tmp-linux-jre
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out
|
2007-03-05 18:13:53 +01:00
|
|
|
cp -R tmp-linux-jre/* $out
|
|
|
|
else
|
|
|
|
sh ${construct} . $out tmp-linux-jre
|
|
|
|
fi
|
2004-07-14 09:59:37 +02:00
|
|
|
|
2007-03-05 22:33:47 +01:00
|
|
|
echo "removing files at top level of installation"
|
2004-07-14 09:59:37 +02:00
|
|
|
for file in $out/*
|
|
|
|
do
|
|
|
|
if test -f $file ; then
|
|
|
|
rm $file
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
rm -rf $out/docs
|
2007-02-20 18:04:37 +01:00
|
|
|
|
2007-03-05 22:33:47 +01:00
|
|
|
# construct the rpath
|
2007-02-20 18:04:37 +01:00
|
|
|
rpath=
|
|
|
|
for i in $libraries; do
|
|
|
|
rpath=$rpath${rpath:+:}$i/lib
|
|
|
|
done
|
2007-03-05 18:13:53 +01:00
|
|
|
|
|
|
|
if test -z "$installjdk"; then
|
2008-02-26 16:24:33 +01:00
|
|
|
jrePath=$out
|
2007-03-05 18:13:53 +01:00
|
|
|
else
|
2008-02-26 16:24:33 +01:00
|
|
|
jrePath=$out/jre
|
2007-03-05 18:13:53 +01:00
|
|
|
fi
|
|
|
|
|
2008-02-26 16:24:33 +01:00
|
|
|
rpath=$rpath${rpath:+:}$jrePath/lib/$architecture/jli
|
|
|
|
|
2007-03-05 22:33:47 +01:00
|
|
|
# set all the dynamic linkers
|
2007-02-20 18:04:37 +01:00
|
|
|
find $out -type f -perm +100 \
|
|
|
|
-exec patchelf --interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \
|
|
|
|
--set-rpath "$rpath" {} \;
|
2007-03-28 00:02:55 +02:00
|
|
|
|
2008-06-14 23:42:07 +02:00
|
|
|
find $out -name "*.so" -exec patchelf --set-rpath "$rpath" {} \;
|
2007-03-28 00:02:55 +02:00
|
|
|
|
2007-03-28 17:21:43 +02:00
|
|
|
if test -z "$pluginSupport"; then
|
2008-06-14 23:42:07 +02:00
|
|
|
rm -f $out/bin/javaws
|
2008-02-26 15:56:22 +01:00
|
|
|
fi
|
|
|
|
|
2010-09-14 17:14:18 +02:00
|
|
|
mkdir $jrePath/lib/$architecture/plugins
|
|
|
|
ln -s $jrePath/lib/$architecture/libnpjp2.so $jrePath/lib/$architecture/plugins
|
|
|
|
|