diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2022-04-04 07:54:22 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2022-04-04 07:54:30 +0200 |
commit | 83beb2a197fa16f09bcf943b2aa5136020f23055 (patch) | |
tree | bf74c6921ccb7fb8f9d003920567f5cea94d65cb /media-sound/qjackctl/qjackctl-0.9.7.ebuild | |
parent | media-sound/qjackctl: updated live to eapi8 (diff) | |
download | gentoo-83beb2a197fa16f09bcf943b2aa5136020f23055.tar.gz gentoo-83beb2a197fa16f09bcf943b2aa5136020f23055.tar.bz2 gentoo-83beb2a197fa16f09bcf943b2aa5136020f23055.zip |
media-sound/qjackctl: bump to 0.9.7
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-sound/qjackctl/qjackctl-0.9.7.ebuild')
-rw-r--r-- | media-sound/qjackctl/qjackctl-0.9.7.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/media-sound/qjackctl/qjackctl-0.9.7.ebuild b/media-sound/qjackctl/qjackctl-0.9.7.ebuild new file mode 100644 index 000000000000..127871210489 --- /dev/null +++ b/media-sound/qjackctl/qjackctl-0.9.7.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg cmake + +DESCRIPTION="Qt GUI to control the JACK Audio Connection Kit and ALSA sequencer connections" +HOMEPAGE="https://qjackctl.sourceforge.io/" +SRC_URI="mirror://sourceforge/qjackctl/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="alsa dbus debug portaudio" + +BDEPEND="dev-qt/linguist-tools:5" +DEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 + dev-qt/qtxml:5 + virtual/jack + alsa? ( media-libs/alsa-lib ) + dbus? ( dev-qt/qtdbus:5 ) + portaudio? ( media-libs/portaudio ) +" +RDEPEND="${DEPEND} + dev-qt/qtsvg:5 +" + +PATCHES=( + "${FILESDIR}/${PN}-0.9.1-disable-git.patch" +) + +src_configure() { + local mycmakeargs=( + -DCONFIG_ALSA_SEQ=$(usex alsa 1 0) + -DCONFIG_DBUS=$(usex dbus 1 0) + -DCONFIG_DEBUG=$(usex debug 1 0) + -DCONFIG_PORTAUDIO=$(usex portaudio 1 0) + ) + cmake_src_configure +} |