You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
6.1 KiB
172 lines
6.1 KiB
import 'compile/configure'
|
|
|
|
name=icedtea
|
|
version=3.9.0
|
|
version_bootstrap=2.6.14
|
|
version_gcc=6.4.0
|
|
version_ecj=4.9
|
|
version_apache_ant=1.9.13
|
|
|
|
define_option '!bootstrap: Bootstrap this program'
|
|
|
|
dlextract "http://icedtea.wildebeest.org/download/source/$name-$version.tar.xz" \
|
|
'7d4b94877cde222232433201a634a918'
|
|
modules="
|
|
f79e08350fd86f4fcbf375f109e494d3-corba.tar.xz
|
|
b5be7e80c38ccc5aa60172663b185d01-hotspot.tar.xz
|
|
b94287d6e7565da8a076f656bf1582d6-jaxp.tar.xz
|
|
51b028fc374725e3099fc9870fc6a019-jaxws.tar.xz
|
|
975901f03d2009ccebbd7aabb81c9390-jdk.tar.xz
|
|
8e5bc17e7001bb00611ce7636365fb78-langtools.tar.xz
|
|
02cb66948f875d74de4e051a2b061910-nashorn.tar.xz
|
|
da51bd447df8551f914f8fb099bce868-openjdk.tar.xz
|
|
"
|
|
for module in $modules; do
|
|
package="$(echo "$module" | cut -d- -f2)"
|
|
checksum="$(echo "$module" | cut -d- -f1)"
|
|
download "http://icedtea.wildebeest.org/download/drops/${name}8/$version/$package" \
|
|
"$checksum" \
|
|
"$name-$version-$package"
|
|
done
|
|
|
|
if option bootstrap; then
|
|
( name=gcc version="$version_gcc"
|
|
dlextract "https://ftp.gnu.org/gnu/$name/$name-$version/$name-$version.tar.xz" \
|
|
'11ba51a0cfb8471927f387c8895fe232'
|
|
)
|
|
download "ftp://sourceware.org/pub/java/ecj-$version_ecj.jar" \
|
|
'7339f199ba11c941890031fd9981d7be'
|
|
dlfile 'https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-java/gcj-jdk/files/javac.in?id=56bd759df1d0c750a065b8c845e93d5dfa6b549d' \
|
|
'5fb8379653ba60746feb7090ac52bd28'
|
|
|
|
( name=apache-ant version="$version_apache_ant"
|
|
dlextract "https://www.apache.org/dist/ant/source/$name-$version-src.tar.bz2" \
|
|
'a551e79a0729e6f5a335cacd7d712343'
|
|
)
|
|
|
|
dlextract "http://icedtea.wildebeest.org/download/source/$name-$version_bootstrap.tar.xz" \
|
|
'ec7bf064e33e35dd3845d044e175a698'
|
|
bootstrap_modules="
|
|
96b72013cce3000cb46808aa9f9bce40-corba.tar.bz2
|
|
b190d917e60aeba3d9b7d1c61660ea68-hotspot.tar.bz2
|
|
d3c9cf8e51c043bdb0db360ffaf34d8c-jaxp.tar.bz2
|
|
f087bbcaffbb65906514448dc49f173e-jaxws.tar.bz2
|
|
6580efb17017a4a9402a4a5043374bd7-jdk.tar.bz2
|
|
1518c296a6125af5119aa5442d88bebf-langtools.tar.bz2
|
|
307abf13b695c61a8b16d9fa384277db-openjdk.tar.bz2
|
|
"
|
|
for module in $bootstrap_modules; do
|
|
package="$(echo "$module" | cut -d- -f2)"
|
|
checksum="$(echo "$module" | cut -d- -f1)"
|
|
download "http://icedtea.wildebeest.org/download/drops/${name}7/$version_bootstrap/$package" \
|
|
"$checksum" \
|
|
"$name-$version_bootstrap-$package"
|
|
done
|
|
fi
|
|
_
|
|
|
|
# From: https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/eclass/multiprocessing.eclass
|
|
makeopts_jobs() {
|
|
# This assumes the first .* will be more greedy than the second .*
|
|
# since POSIX doesn't specify a non-greedy match (i.e. ".*?").
|
|
local jobs=$(echo " $MAKEFLAGS " | sed -r -n \
|
|
-e 's:.*[[:space:]](-j|--jobs[=[:space:]])[[:space:]]*([0-9]+).*:\2:p' \
|
|
-e 's:.*[[:space:]](-j|--jobs)[[:space:]].*:999:p')
|
|
echo ${jobs:-1}
|
|
}
|
|
|
|
if option bootstrap; then
|
|
# Build GCJ
|
|
( cd "gcc-$version_gcc"
|
|
getfile "ecj-$version_ecj.jar"
|
|
mv "ecj-$version_ecj.jar" ecj.jar
|
|
|
|
sed -i -e 's/\.\/fixinc\.sh/-c true/' gcc/Makefile.in
|
|
mkdir build; cd build
|
|
../configure \
|
|
--prefix="$PWD/../install" \
|
|
--disable-multilib \
|
|
--disable-bootstrap \
|
|
--disable-nls \
|
|
--enable-languages=java \
|
|
--enable-java-home \
|
|
--with-java-home="$PWD/../install/lib/jvm/jre"
|
|
make
|
|
make install
|
|
)
|
|
|
|
# Install missing javac
|
|
sed -e "s#@JAVA@#$PWD/gcc-$version_gcc/install/lib/jvm/bin/java#" \
|
|
-e "s#@ECJ_JAR@#$PWD/gcc-$version_gcc/install/share/java/ecj.jar#" \
|
|
-e "s#@RT_JAR@#$PWD/gcc-$version_gcc/install/lib/jvm/jre/lib/rt.jar#" \
|
|
-e "s#@TOOLS_JAR@#$PWD/gcc-$version_gcc/install/lib/jvm/lib/tools.jar#" \
|
|
javac.in > javac
|
|
install -Dm755 -t "gcc-$version_gcc/install/lib/jvm/bin" javac
|
|
|
|
# Set JAVA_HOME to GCJ
|
|
export JAVA_HOME="$PWD/gcc-$version_gcc/install/lib/jvm"
|
|
|
|
# Bootstrap Ant
|
|
( cd "apache-ant-$version_apache_ant"
|
|
./build.sh
|
|
)
|
|
|
|
# Bootstrap Icedtea7
|
|
( cd "$name-$version_bootstrap"
|
|
for module in $bootstrap_modules; do
|
|
package="$(echo "$module" | cut -d- -f2)"
|
|
getfile "$name-$version_bootstrap-$package"
|
|
mv "$name-$version_bootstrap-$package" "$package"
|
|
done
|
|
|
|
# Use the gcc with java support we just built to be able to properly compile java C modules. Add java tools and ant to $PATH as well.
|
|
export PATH="$PWD/../gcc-$version_gcc/install/bin:$JAVA_HOME/bin:$PWD/../apache-ant-$version_apache_ant/dist/bin:$PATH"
|
|
|
|
./configure \
|
|
--with-jdk-home="$JAVA_HOME" \
|
|
--with-parallel-jobs="$(makeopts_jobs)" \
|
|
--disable-downloading \
|
|
--without-rhino \
|
|
--disable-system-kerberos \
|
|
--disable-system-pcsc \
|
|
--disable-system-sctp
|
|
make
|
|
)
|
|
|
|
# Set JAVA_HOME to Icedtea7
|
|
export JAVA_HOME="$PWD/$name-$version_bootstrap/openjdk.build/j2sdk-image"
|
|
fi
|
|
|
|
cd "$name-$version"
|
|
|
|
for module in $modules; do
|
|
package="$(echo "$module" | cut -d- -f2)"
|
|
getfile "$name-$version-$package"
|
|
mv "$name-$version-$package" "$package"
|
|
done
|
|
|
|
# Build
|
|
export PATH="$JAVA_HOME/bin:$PATH"
|
|
./configure \
|
|
--with-jdk-home="$JAVA_HOME" \
|
|
--with-parallel-jobs="$(makeopts_jobs)" \
|
|
--disable-downloading \
|
|
--disable-ccache \
|
|
--disable-system-kerberos \
|
|
--disable-system-pcsc \
|
|
--disable-system-sctp
|
|
make
|
|
|
|
# Install
|
|
mkdir -p "$dir_install/$dir_prefix/$dir_lib/jvm/${name}8"
|
|
cp -Ta openjdk.build/images/j2sdk-image "$dir_install/$dir_prefix/$dir_lib/jvm/${name}8"
|
|
|
|
# Add profile script
|
|
cat > java.sh << EOF
|
|
export JAVA_HOME="/$dir_prefix/$dir_lib/jvm/icedtea8"
|
|
export PATH="\$PATH:\$JAVA_HOME/bin"
|
|
export MANPATH="\$MANPATH:\$JAVA_HOME/man"
|
|
EOF
|
|
install -Dm755 -t "$dir_install/$dir_prefix/$dir_sysconf/profile.d" java.sh
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|
|
|