mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-16 14:29:05 -07:00
@@ -1,2 +1 @@
|
||||
DIST kapow-1.5.10-src.tar.bz2 834452 BLAKE2B 0ca2eb71a13119689ba878b6981bb66d26565035441f0a02d20097becd19a539742b37989543d18db6438f5cdccfa1aed1c698a94a0287b3d0b0b316cb9bd8b4 SHA512 6aa47bcf7ccb0a4c3dba4d675786ed63bd27ef7b6ed4d62074ae8409fcc640574d264c9c4952f764792b8280f11cd3a736f46389db2239b68589595e4424e518
|
||||
DIST kapow-1.5.9-src.tar.bz2 834677 BLAKE2B ed02b76e8c764ccf7f9fb752322dad61113c82348bc4e75af2858136369423a02114b312637460cfa1127fa0389f50ea951aed5e69b3e90d276aa10ea7e52be2 SHA512 a026b2254835b4eb2d211bb8b56d68e6f07c07beb79e2b019d2ce108b6197e812222b5964f889fe31b856a0081107f3fca314684883b3eb3f778f6fe7cceb0b6
|
||||
|
||||
@@ -1,67 +0,0 @@
|
||||
# Copyright 1999-2019 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
|
||||
}
|
||||
Reference in New Issue
Block a user