media-sound/qjackctl: bump to 0.9.1

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Miroslav Šulc
2021-02-07 09:07:54 +01:00
parent 6163424234
commit 344dcc5eb2
3 changed files with 69 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST qjackctl-0.9.0.tar.gz 1088061 BLAKE2B 3be89091b6efb34d2dffee92fdfda5dabadc8b6e9f9a248cc5cd60df423482dc65342e9758a98f34c5c01bfba74eac64039e3ec2de157df0e03f8bf09a7a14fc SHA512 5aa6f3e86b6a5c528daa5fdb71b5400d5882fea6569d585a86bb6b9fa66b62699472fd82999a6f4eb1a375c70e684a20214240c1fc3b44239c22d182e3ae1b1c
DIST qjackctl-0.9.1.tar.gz 1092787 BLAKE2B 1ae68d3b61591bb31f7c8c31f35f8a42f0048cf34c49ff0eadca9155c1a770d9880728582f6b7abdaf27a28ccb3d6a20ca87e3a6178b090579b6ead811f091f0 SHA512 7d3a6efdeedff9335897f9d943dd51d13bf7c48d55ee2bf31d53fe685cef88e281133c164cf6cdb95669b9fe394eb06d3544a78b9d760f4420a9acb3c800c612

View File

@@ -0,0 +1,21 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7a1098f..f83ed7b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,6 +6,7 @@ project(qjackctl
LANGUAGES C CXX)
set (CONFIG_VERSION ${PROJECT_VERSION})
+#[[
execute_process (
COMMAND git describe --tags --dirty --abbrev=6
OUTPUT_VARIABLE GIT_DESCRIBE_OUTPUT
@@ -27,6 +28,8 @@ if (GIT_DESCRIBE_RESULT EQUAL 0)
else ()
set (VERSION "${PROJECT_VERSION}")
endif ()
+]]
+set (VERSION "${PROJECT_VERSION}")
set (PACKAGE_NAME "QjackCtl")
set (PACKAGE_VERSION "${VERSION}")

View File

@@ -0,0 +1,47 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
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}/${P}-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)
-DCONFIG_JACK_VERSION=1
)
cmake_src_configure
}