mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
sys-apps/baselayout-java: drop 0.1.0-r2
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Part-of: https://github.com/gentoo/gentoo/pull/42638 Closes: https://github.com/gentoo/gentoo/pull/42638 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
committed by
Miroslav Šulc
parent
964f68af27
commit
2f1efa25cd
@@ -1,49 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit xdg-utils
|
||||
|
||||
DESCRIPTION="Baselayout for Java"
|
||||
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Java"
|
||||
SRC_URI="https://dev.gentoo.org/~gyakovlev/distfiles/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv x86 ~amd64-linux ~ppc-macos ~x64-macos ~x64-solaris"
|
||||
IUSE=""
|
||||
|
||||
BDEPEND="
|
||||
app-crypt/p11-kit[trust(+)]
|
||||
app-misc/ca-certificates
|
||||
"
|
||||
|
||||
RDEPEND="${BDEPEND}
|
||||
!<dev-java/java-config-2.2"
|
||||
|
||||
src_install() {
|
||||
default
|
||||
keepdir /etc/ssl/certs/java/
|
||||
exeinto /etc/ca-certificates/update.d
|
||||
newexe - java-cacerts <<-_EOF_
|
||||
#!/bin/sh
|
||||
exec trust extract --overwrite --format=java-cacerts --filter=ca-anchors --purpose server-auth "${EPREFIX}/etc/ssl/certs/java/cacerts"
|
||||
_EOF_
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
# on first installation generate java cacert file
|
||||
# so jdk ebuilds can create symlink to in into security directory
|
||||
if [[ ! -f "${EROOT}"/etc/ssl/certs/java/cacerts ]]; then
|
||||
einfo "Generating java cacerts file from system ca-certificates"
|
||||
trust extract --overwrite --format=java-cacerts --filter=ca-anchors --purpose server-auth "${EROOT}/etc/ssl/certs/java/cacerts" || die
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user