mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
98 lines
3.4 KiB
Bash
98 lines
3.4 KiB
Bash
# Maintainer: Guillaume ALAUX <guillaume@archlinux.org>
|
|
# Contributor: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - drop firefox makedepend, configure option for v5/v6
|
|
|
|
pkgbase=icedtea-web
|
|
pkgname=('icedtea-web' 'icedtea-web-doc')
|
|
pkgver=1.7
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
url='http://icedtea.classpath.org/wiki/IcedTea-Web'
|
|
license=('GPL2')
|
|
makedepends=('java-environment-openjdk=8' 'zip' 'libxtst' 'npapi-sdk' 'rhino' 'junit'
|
|
'epiphany')
|
|
makedepends_armv7h=('firefox')
|
|
makedepends_aarch64=('firefox')
|
|
optdepends=('rhino: for using proxy auto config files')
|
|
# Due to broken path names in the tarball that fails with LANG=C in our chroot
|
|
noextract=("${pkgbase}-${pkgver}.tar.gz")
|
|
source=(http://icedtea.classpath.org/download/source/${pkgbase}-${pkgver}.tar.gz{,.sig})
|
|
validpgpkeys=('C058EF1E749812E6A486384B53B5CFF671EEED59') # Jiri Vanek <jvanek@redhat.com>
|
|
sha256sums=('2030ea323964ae82eabe5436eef076de4b892786424ad9be21f3abc9d76c0291'
|
|
'SKIP')
|
|
|
|
prepare() {
|
|
cd "${srcdir}"
|
|
LANG=en_US.UTF-8 bsdtar -x -f "${srcdir}"/${pkgbase}-${pkgver}.tar.gz
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgbase}-${pkgver}
|
|
|
|
[[ $CARCH == "armv7h" || $CARCH == "aarch64" ]] && CONFIG="--with-firefox=/usr/bin/firefox"
|
|
|
|
./configure \
|
|
--prefix=/usr/share/${pkgbase} \
|
|
--datarootdir=/usr/share \
|
|
--with-jdk-home=/usr/lib/jvm/default \
|
|
--with-jre-home=/usr/lib/jvm/default-runtime \
|
|
--with-java=/usr/bin/java \
|
|
--with-browser-tests \
|
|
$CONFIG \
|
|
--with-epiphany=/usr/bin/epiphany
|
|
make
|
|
}
|
|
|
|
#check() {
|
|
# cd "${srcdir}"/${pkgbase}-${pkgver}
|
|
# # as more tests have been added some are expectged to fail
|
|
# # see http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2012-March/017566.html
|
|
# make -k check
|
|
#}
|
|
|
|
|
|
package_icedtea-web() {
|
|
|
|
pkgdesc='Free web browser plugin to run applets written in Java and an implementation of Java Web Start'
|
|
depends=('java-runtime-openjdk' 'desktop-file-utils')
|
|
provides=('java-web-start')
|
|
replaces=('icedtea-web-java7')
|
|
|
|
cd "${srcdir}"/${pkgbase}-${pkgver}
|
|
# possible make target (see bottom of Makefile.am: install-exec-local install-data-local
|
|
make DESTDIR="${pkgdir}" install-exec-local install-data-local
|
|
|
|
# Install desktop files.
|
|
install -m 755 -d "${pkgdir}"/usr/share/{applications,pixmaps}
|
|
install -m 644 javaws.png "${pkgdir}"/usr/share/pixmaps
|
|
install -m 644 {javaws,itweb-settings}.desktop "${pkgdir}"/usr/share/applications
|
|
# remove splitted doc files
|
|
rm -rf "${pkgdir}"/usr/share/doc
|
|
|
|
# link binaries into /usr/bin + jre/bin
|
|
install -m 755 -d "${pkgdir}"/usr/bin
|
|
pushd "${pkgdir}"/usr/share/${pkgbase}/bin
|
|
for file in *; do
|
|
ln -sf /usr/share/${pkgbase}/bin/${file} "${pkgdir}"/usr/bin
|
|
done
|
|
popd
|
|
|
|
# link the mozilla-plugin - test it here http://www.java.com/en/download/help/testvm.xml
|
|
install -m 755 -d "${pkgdir}"/usr/lib/mozilla/plugins/
|
|
ln -sf /usr/share/${pkgbase}/lib/IcedTeaPlugin.so "${pkgdir}"/usr/lib/mozilla/plugins/
|
|
}
|
|
|
|
package_icedtea-web-doc() {
|
|
|
|
pkgdesc='icedtea-web browser plugin + Java WebStart - documentation files'
|
|
replaces=('icedtea-web-java7-doc')
|
|
|
|
cd "${srcdir}"/${pkgbase}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install-data-local
|
|
# remove javaws about and man page
|
|
rm -rf "${pkgdir}"/usr/lib
|
|
rm -rf "${pkgdir}"/usr/share/man
|
|
rm -rf "${pkgdir}"/usr/share/icedtea-web # conflicting and unneeded file it seems
|
|
}
|