media-sound/qjackctl: dropped obsolete 0.9.12

Bug: https://bugs.gentoo.org/925327
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Miroslav Šulc
2024-02-27 11:47:32 +01:00
parent dc1d79cb66
commit 2ebacf9a0d
3 changed files with 0 additions and 67 deletions

View File

@@ -1,2 +1 @@
DIST qjackctl-0.9.12.tar.gz 1277827 BLAKE2B 1fcfba82762c473f0012a137f6ddd13ae6e857d16fe8e0cad449afe6de1f1feb8a147b3441a00d20d887f1ed868e4fdddc598104f829ab2213ca8e9863c16951 SHA512 e5655b4f4a965761b81d2d08c1ad297bda6d2437aff97127dc22015f59fe916f1b10f4f492fe41b0d0678ed9de2a94de16c195ac608fb01e815e3ecb116bf958
DIST qjackctl-0.9.13.tar.gz 1305333 BLAKE2B 940241df829a573ab33a950319debf5123538151853723141369b9ac47048bae84c58f3a70fe53ec7f98109914e78c49203410e241db22842c4f41f79ab6aba9 SHA512 89b9d5212654267030f30020085ad3dfe674a041e200796144d1441ba12630e963a06e405de5ab7c27d9ebc42fd8fa0a970bf59b91837dbc7580147db6adc9bc

View File

@@ -1,19 +0,0 @@
--- 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

@@ -1,47 +0,0 @@
# Copyright 1999-2023 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)
-DCONFIG_QT6=no
)
cmake_src_configure
}