mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-07 12:57:38 -08:00
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>
29 lines
565 B
Bash
29 lines
565 B
Bash
# Copyright 2016-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="Java Dependency checker"
|
|
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Java"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64"
|
|
|
|
CP_DEPEND="
|
|
dev-java/commons-cli:0
|
|
dev-java/asm:9"
|
|
RDEPEND=">=virtual/jre-1.8:*
|
|
${CP_DEPEND}"
|
|
DEPEND=">=virtual/jdk-1.8:*
|
|
${CP_DEPEND}"
|
|
PDEPEND="dev-java/javatoolkit:0"
|
|
|
|
JAVA_MAIN_CLASS="javadepchecker.Main"
|
|
|
|
src_unpack() {
|
|
cp "${FILESDIR}/Main-${PV}.java" Main.java || die
|
|
}
|