mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
x11-misc/kapow: drop 1.5.10
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
parent
86068ce7e1
commit
5de90c9646
@ -1,2 +1 @@
|
||||
DIST kapow-1.5.10-src.tar.bz2 834452 BLAKE2B 0ca2eb71a13119689ba878b6981bb66d26565035441f0a02d20097becd19a539742b37989543d18db6438f5cdccfa1aed1c698a94a0287b3d0b0b316cb9bd8b4 SHA512 6aa47bcf7ccb0a4c3dba4d675786ed63bd27ef7b6ed4d62074ae8409fcc640574d264c9c4952f764792b8280f11cd3a736f46389db2239b68589595e4424e518
|
||||
DIST kapow-1.6.4.tar.bz2 843376 BLAKE2B 40d8130a754ab8981772adf001c5bf04a3614acf23c2d5e95d891bd0f5dd21dd9a7aa66da5329557f4e2d55ad4c8ce4ec8c022b3cfb167cd74e2d04133108d31 SHA512 39c421ad5ebd538379af374964b056ef0678a7836701b3cbf8960886294eb1ba9358bf15e7d7a491d5a27d480533a481e2c2cb1ae25be05bb327acd49ddbcc96
|
||||
|
||||
@ -1,65 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
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}"
|
||||
BDEPEND="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
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user