blob: fb08295a1aec25bbca55b7dd819b4d29fad59dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# 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"
}
|