mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
media-sound/qsampler: Drop IUSE qt6 (Qt5 build option)
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
45
media-sound/qsampler/qsampler-1.0.0-r1.ebuild
Normal file
45
media-sound/qsampler/qsampler-1.0.0-r1.ebuild
Normal file
@@ -0,0 +1,45 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake xdg
|
||||
|
||||
if [[ ${PV} == *9999* ]]; then
|
||||
EGIT_REPO_URI="https://git.code.sf.net/p/qsampler/code"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://downloads.sourceforge.net/${PN}/${PV}/${P}.tar.gz"
|
||||
KEYWORDS="amd64 ~x86"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Graphical frontend to the LinuxSampler engine"
|
||||
HOMEPAGE="https://qsampler.sourceforge.io/ https://www.linuxsampler.org/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="debug +libgig"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtbase:6[gui,network,widgets]
|
||||
dev-qt/qtsvg:6
|
||||
media-libs/alsa-lib
|
||||
media-libs/liblscp:=
|
||||
x11-libs/libX11
|
||||
libgig? ( media-libs/libgig:= )
|
||||
"
|
||||
RDEPEND="${DEPEND}
|
||||
media-sound/linuxsampler
|
||||
"
|
||||
BDEPEND="dev-qt/qttools:6[linguist]"
|
||||
|
||||
DOCS=( ChangeLog README TRANSLATORS )
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DCONFIG_DEBUG=$(usex debug 1 0)
|
||||
-DCONFIG_LIBGIG=$(usex libgig 1 0)
|
||||
-DCONFIG_QT6=1
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
@@ -18,32 +18,20 @@ HOMEPAGE="https://qsampler.sourceforge.io/ https://www.linuxsampler.org/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="debug +libgig qt6"
|
||||
IUSE="debug +libgig"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtbase:6[gui,network,widgets]
|
||||
dev-qt/qtsvg:6
|
||||
media-libs/alsa-lib
|
||||
media-libs/liblscp:=
|
||||
x11-libs/libX11
|
||||
libgig? ( media-libs/libgig:= )
|
||||
qt6? (
|
||||
dev-qt/qtbase:6[gui,network,widgets]
|
||||
dev-qt/qtsvg:6
|
||||
)
|
||||
!qt6? (
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtnetwork:5
|
||||
dev-qt/qtsvg:5
|
||||
dev-qt/qtwidgets:5
|
||||
)
|
||||
"
|
||||
RDEPEND="${DEPEND}
|
||||
media-sound/linuxsampler
|
||||
"
|
||||
BDEPEND="
|
||||
qt6? ( dev-qt/qttools:6[linguist] )
|
||||
!qt6? ( dev-qt/linguist-tools:5 )
|
||||
"
|
||||
BDEPEND="dev-qt/qttools:6[linguist]"
|
||||
|
||||
DOCS=( ChangeLog README TRANSLATORS )
|
||||
|
||||
@@ -51,7 +39,7 @@ src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DCONFIG_DEBUG=$(usex debug 1 0)
|
||||
-DCONFIG_LIBGIG=$(usex libgig 1 0)
|
||||
-DCONFIG_QT6=$(usex qt6 1 0)
|
||||
-DCONFIG_QT6=1
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user