diff options
author | 2021-12-17 11:57:18 +0100 | |
---|---|---|
committer | 2021-12-17 11:59:00 +0100 | |
commit | 465fb6a3f2dfe0215084208b9da1a5b3ba9845eb (patch) | |
tree | 41dc01f1442ce29a120e1a020e4e290747958d16 /media-sound/kmetronome/kmetronome-1.3.0.ebuild | |
parent | media-sound/kmidimon: 1.2.0 version bump (diff) | |
download | gentoo-465fb6a3f2dfe0215084208b9da1a5b3ba9845eb.tar.gz gentoo-465fb6a3f2dfe0215084208b9da1a5b3ba9845eb.tar.bz2 gentoo-465fb6a3f2dfe0215084208b9da1a5b3ba9845eb.zip |
media-sound/kmetronome: 1.3.0 version bump
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound/kmetronome/kmetronome-1.3.0.ebuild')
-rw-r--r-- | media-sound/kmetronome/kmetronome-1.3.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/media-sound/kmetronome/kmetronome-1.3.0.ebuild b/media-sound/kmetronome/kmetronome-1.3.0.ebuild new file mode 100644 index 000000000000..4a254b284185 --- /dev/null +++ b/media-sound/kmetronome/kmetronome-1.3.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2021 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 +} |