blob: f3a3e28b566663c01b26faba667ca659edb16e4d (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop xdg-utils
DESCRIPTION="Metronome application supporting different meters and speeds ranging"
HOMEPAGE="https://www.antcom.de/gtick"
SRC_URI="https://www.antcom.de/gtick/download/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE="nls sndfile"
RDEPEND="media-sound/pulseaudio
x11-libs/gtk+:2
sndfile? ( media-libs/libsndfile )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig
nls? ( sys-devel/gettext )"
RESTRICT="test"
PATCHES=(
"${FILESDIR}"/${P}-desktop.patch
)
src_prepare() {
default
sed -i 's:^\(appdatadir = .*/\)appdata:\1metainfo:' \
Makefile.in || die
}
src_configure() {
local myeconfargs=(
$(use_enable nls)
$(use_with sndfile)
)
econf "${myeconfargs[@]}"
}
src_install() {
local res
default
for res in 32 48 64; do
newicon -s ${res} src/icon${res}x${res}.xpm gtick.xpm
done
}
pkg_postinst() {
xdg_icon_cache_update
}
pkg_postrm() {
xdg_icon_cache_update
}
|