mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
Bug: https://bugs.gentoo.org/943515
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: 586bf9ed57
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
24 lines
585 B
Bash
24 lines
585 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit java-pkg-2
|
|
|
|
DESCRIPTION="JDiskReport helps you to understand disk drive usage"
|
|
HOMEPAGE="https://www.jgoodies.com/freeware/jdiskreport/"
|
|
SRC_URI="https://www.jgoodies.com/download/jdiskreport2/jdiskreport-${PV//_/}.jar"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="freedist"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
BDEPEND="app-arch/unzip"
|
|
RDEPEND="<=virtual/jre-21"
|
|
|
|
src_install() {
|
|
java-pkg_newjar "${DISTDIR}/jdiskreport-${PV//_/}.jar" "${PN}.jar"
|
|
java-pkg_dolauncher jdiskreport-bin
|
|
}
|