summaryrefslogtreecommitdiff
blob: f9dd263d627975f1f2035be6b7eca117614468fc (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
inherit qmake-utils xdg-utils

DESCRIPTION="A punch clock program designed to easily keep track of your hours"
HOMEPAGE="https://gottcode.org/kapow/"
SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"

RDEPEND="
	dev-qt/qtcore:5
	dev-qt/qtgui:5
	dev-qt/qtnetwork:5
	dev-qt/qtprintsupport:5
	dev-qt/qtwidgets:5
"
DEPEND="
	${RDEPEND}
	dev-qt/linguist-tools:5
"
K_LANGS="
	ar bg cs da de el en es fr it lt nl no pl pt_BR pt ro ru sv tr uk
"
for K_LANG in ${K_LANGS}; do
	IUSE+=" l10n_${K_LANG/_/-}"
done
DOCS=( ChangeLog README )

src_prepare() {
	default

	count() { echo ${#}; }
	local lang_count=$(count ${K_LANGS})
	local locale_count=$(count translations/${PN}_*.ts)
	[[ ${lang_count} = ${locale_count} ]] \
		|| die "Number of LANGS does not match number of locales"
	unset count

	local lang
	for lang in ${K_LANGS}; do
		if ! use l10n_${lang/_/-}; then
			rm translations/${PN}_${lang}.* || die
		fi
	done
}

src_configure() {
	eqmake5 kapow.pro PREFIX=/usr
}

src_install() {
	export INSTALL_ROOT="${D}"
	default
}

pkg_postinst() {
	xdg_icon_cache_update
}

pkg_postrm() {
	xdg_icon_cache_update
}