void-packages/srcpkgs/jre/template

85 lines
2.5 KiB
Plaintext

# Template file for 'oracle-jre'
pkgname=jre
_extraversion=1.7.0_10
version=7u10
revision=1
wrksrc="jre${_extraversion}"
if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
distfiles="http://uni-smr.ac.ru/archive/dev/java/JRE/oracle/7/jre-${version}-linux-x64.tar.gz"
checksum=a2a45566f4a87e70c0e13577d3bf2b7eeabcdda3279958a75ded1ece96e070d1
elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
distfiles="http://uni-smr.ac.ru/archive/dev/java/JRE/oracle/7/jre-${version}-linux-i586.tar.gz"
checksum=0e91c275a87dc1ba049df3cfef16eb958199d80e55bea6a3555900d309615199
fi
short_desc="Oracle's Java Runtime Environment (JRE) - Version 7"
maintainer="davehome <davehome@redthumb.info.tm>"
homepage="http://www.oracle.com/technetwork/java/javase/downloads/index.html"
license="oracle"
only_for_archs="i686 x86_64"
do_install() {
# Install desktop related items
vmkdir usr/share
vcopy lib/desktop/icons usr/share
vcopy lib/desktop/applications usr/share
vcopy lib/desktop/mime usr/share
vcopy lib/locale usr/share
vcopy man usr/share
rm -rf ${DESTDIR}/usr/share/man/ja
# Install license(s)
vmkdir usr/share/licenses/jre
vcopy COPYRIGHT usr/share/licenses/jre
vcopy LICENSE usr/share/licenses/jre
vcopy THIRDPARTYLICENSEREADME.txt usr/share/licenses/jre
# For system environment vars and desktop extra shortcut
vinstall ${FILESDIR}/jre.sh 644 etc/profile.d
vinstall ${FILESDIR}/java-policy-settings.desktop 644 usr/share/applications
# Install JRE
vmkdir usr/share/java/jre
vcopy bin usr/share/java/jre
vcopy lib usr/share/java/jre
vcopy release usr/share/java/jre
vcopy Welcome.html usr/share/java/jre
rm -rf ${DESTDIR}/usr/share/java/jre/lib/desktop
rm -rf ${DESTDIR}/usr/share/java/jre/lib/locale
# Install mozilla compatible plugin.
vmkdir usr/lib/mozilla/plugins
if [ "${XBPS_MACHINE}" = "x86_64" ]; then
_arch=amd64
else
_arch=i386
fi
# Remove shlib linking to old ffmpeg libraries.
rm -f ${DESTDIR}/usr/share/java/jre/lib/${_arch}/fxavcodecplugin-52.so
cd ${DESTDIR}/usr/lib/mozilla/plugins && \
ln -sf ../../../share/java/jre/lib/${_arch}/libnpjp2.so .
# linker's config
vmkdir etc/ld.so.conf.d
echo "/usr/share/java/jre/lib/${_arch}" > \
${DESTDIR}/etc/ld.so.conf.d/${pkgname}.conf
}
jre_package() {
nonfree=yes
nostrip=yes
depends="hicolor-icon-theme desktop-file-utils xdg-utils shared-mime-info"
provides="java-runtime-${version}"
replaces="java-runtime>=0"
pkg_install() {
vmove etc
vmove usr
}
}