Files
gentoo/dev-java/sun-jai-bin/sun-jai-bin-1.1.3-r2.ebuild
Arthur Zamarin ea5ced0fc7 dev-java/sun-jai-bin: dekeyword x86
After a message to gentoo-dev ML, and no reply from any user on x86,

we decided to dekeyword most Java packages from x86, and reverse

dependencies of them.

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2024-10-17 18:31:54 +03:00

53 lines
1.1 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit java-pkg-2
MY_PV=${PV//./_}
DESCRIPTION="JAI is a class library for managing images"
HOMEPAGE="https://jai.dev.java.net/"
BASE=https://download.java.net/media/jai/builds/release/${MY_PV}
MY_P="jai-${MY_PV}"
SRC_URI="
!amd64? ( ${BASE}/${MY_P}-lib-linux-i586.tar.gz )
amd64? ( ${BASE}/${MY_P}-lib-linux-amd64.tar.gz )"
LICENSE="sun-bcla-jai"
SLOT="0"
KEYWORDS="amd64 arm64 ppc64"
DEPEND=""
RDEPEND="virtual/jre:1.8"
RESTRICT="bindist mirror"
QA_PREBUILT="*"
S=${WORKDIR}/${MY_P}
src_prepare() {
default
rm LICENSE-jai.txt || die
}
src_compile() { :; }
src_install() {
dodoc *.txt
java-pkg_dojar lib/*.jar
use x86 && java-pkg_doso lib/*.so
use amd64 && java-pkg_doso lib/*.so
}
pkg_postinst() {
elog "This ebuild now installs into /opt/${PN} and /usr/share/${PN}"
elog 'To use you need to pass the following to java'
if use x86 || use amd64; then
elog '-Djava.library.path=$(java-config -i sun-jai-bin)'
fi
elog '-classpath $(java-config -p sun-jai-bin)'
}