summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-05-21 21:46:41 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2020-05-21 21:46:41 +0200
commitde41b1c6bcbf8110a6c1ca51490622ba0b5d6c52 (patch)
tree982151411f182c8770593cd2b7a7a41cc50b945c /x11-misc/kapow
parentmedia-gfx/mandelbulber: EAPI-7 bump, xdg-utils, use https (diff)
downloadgentoo-de41b1c6bcbf8110a6c1ca51490622ba0b5d6c52.tar.gz
gentoo-de41b1c6bcbf8110a6c1ca51490622ba0b5d6c52.tar.bz2
gentoo-de41b1c6bcbf8110a6c1ca51490622ba0b5d6c52.zip
x11-misc/kapow: Drop 1.5.8
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-misc/kapow')
-rw-r--r--x11-misc/kapow/Manifest1
-rw-r--r--x11-misc/kapow/kapow-1.5.8.ebuild67
2 files changed, 0 insertions, 68 deletions
diff --git a/x11-misc/kapow/Manifest b/x11-misc/kapow/Manifest
index 3a03ae3f6865..2fb720194c7b 100644
--- a/x11-misc/kapow/Manifest
+++ b/x11-misc/kapow/Manifest
@@ -1,3 +1,2 @@
DIST kapow-1.5.10-src.tar.bz2 834452 BLAKE2B 0ca2eb71a13119689ba878b6981bb66d26565035441f0a02d20097becd19a539742b37989543d18db6438f5cdccfa1aed1c698a94a0287b3d0b0b316cb9bd8b4 SHA512 6aa47bcf7ccb0a4c3dba4d675786ed63bd27ef7b6ed4d62074ae8409fcc640574d264c9c4952f764792b8280f11cd3a736f46389db2239b68589595e4424e518
-DIST kapow-1.5.8-src.tar.bz2 834178 BLAKE2B dc24e2d47e3e8286336e4de509e2486f0b6f6c912e5be532e36035e6fbff09a0f0453108b061aff2aa7bab45e1c782b63ee94f6183d17b0b50e04c24611b2e7c SHA512 168e9581b360a905e24d8dc4d01af58823789f4ea6fe533744c14d9c6830720e640923859c2726c51aa9ef9064038a2bb920960c74ca858e3fdc6b0ff17cf861
DIST kapow-1.5.9-src.tar.bz2 834677 BLAKE2B ed02b76e8c764ccf7f9fb752322dad61113c82348bc4e75af2858136369423a02114b312637460cfa1127fa0389f50ea951aed5e69b3e90d276aa10ea7e52be2 SHA512 a026b2254835b4eb2d211bb8b56d68e6f07c07beb79e2b019d2ce108b6197e812222b5964f889fe31b856a0081107f3fca314684883b3eb3f778f6fe7cceb0b6
diff --git a/x11-misc/kapow/kapow-1.5.8.ebuild b/x11-misc/kapow/kapow-1.5.8.ebuild
deleted file mode 100644
index 2dd79d2b2ec0..000000000000
--- a/x11-misc/kapow/kapow-1.5.8.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2-utils 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_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() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}