blob: e2464abae80cef5dd97a60823f298a950bc6cf7c (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake xdg
DESCRIPTION="MIDI based metronome using ALSA sequencer"
HOMEPAGE="https://kmetronome.sourceforge.io/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="5"
KEYWORDS="amd64 ~x86"
IUSE=""
DEPEND="
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
media-libs/alsa-lib
>=media-sound/drumstick-2.0.0
"
RDEPEND="${DEPEND}"
BDEPEND="
dev-qt/linguist-tools:5
virtual/pkgconfig
"
src_configure() {
local mycmakeargs=(
-DBUILD_DOCS=OFF
-DUSE_QT=5
)
cmake_src_configure
}
|