gentoo-ebuilds/games-board/domination/domination-1.1.1.6-r3.ebuild
Volkmar W. Pogatzki 7db080109a
games-board/domination: drop unneeded dependencies, update EAPI 7 -> 8
Closes: https://bugs.gentoo.org/881843
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/36555
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
2024-06-09 15:42:44 +01:00

35 lines
868 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop java-pkg-2
DESCRIPTION="The well-known board game, written in java"
HOMEPAGE="https://domination.sourceforge.io/"
SRC_URI="https://downloads.sourceforge.net/project/domination/Domination/${PV}/Domination_${PV}.zip"
S="${WORKDIR}"/Domination
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
BDEPEND="app-arch/unzip"
RDEPEND=">=virtual/jre-1.8:*"
src_install() {
newbin "${S}"/FlashGUI.sh ${PN}
sed -i \
-e "s|cd.*|cd \"/usr/share\"/${PN}|" \
"${ED}"/usr/bin/${PN} \
|| die
chmod +x "${ED}"/usr/bin/${PN} || die
insinto /usr/share/${PN}
doins -r "${S}"/*
rm -f "${ED}"/usr/share/${PN}/*.cmd || die
java-pkg_regjar "${ED}"/usr/share/${PN}/*.jar
newicon resources/icon.png ${PN}.png
make_desktop_entry ${PN} "Domination"
}