blob: 248af7967e332177c3da1b81a6240f2a8dfa0400 (
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
36
37
38
39
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
if [[ ${PV} == "9999" ]]; then
inherit mercurial
EHG_REPO_URI="http://hg.code.sf.net/p/ksokoban/code"
else
SRC_URI="https://dev.gentoo.org/~bircoph/distfiles/${P}.tar.xz"
KEYWORDS="~amd64 ~x86"
fi
inherit cmake-utils
DESCRIPTION="The japanese warehouse keeper game"
HOMEPAGE="https://sourceforge.net/projects/ksokoban/"
LICENSE="GPL-2"
SLOT="0"
DEPEND="kde-frameworks/kdelibs:4"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
CMAKE_IN_SOURCE_BUILD="yes"
src_prepare() {
sed -i 's/%m//' "data/${PN}.desktop" || die "sed for desktop file failed"
}
# source lacks install target
src_install() {
dobin ksokoban
dodoc AUTHORS NEWS TODO
domenu "data/${PN}.desktop"
for i in 16 22 32 48 64 128; do
doicon -s "${i}" "data/hi${i}-app-${PN}.png"
done
}
|