summaryrefslogtreecommitdiff
blob: 42761cb672fce718e271ff4a8f2593018019724c (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
inherit qmake-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_LINGUAS="
	ar bg cs da de el en es fr it lt nl no pl pt_BR ro ru sv tr uk
"
for K_LINGUA in ${K_LINGUAS}; do
	IUSE+=" linguas_${K_LINGUA}"
done
DOCS=( ChangeLog README )

src_prepare() {
	default

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

	local lingua
	if [[ -n "${LINGUAS}" ]]; then
		for lingua in ${K_LINGUAS}; do
			if ! use linguas_${lingua}; then
				rm translations/${PN}_${lingua}.* || die
			fi
		done
	fi
}

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

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