blob: 901b0a08060826acfb5cc178dfb5c6027064e758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 2020-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qmake-utils
DESCRIPTION="Plugin for OpenRGB to create virtual devices out of multiple real ones"
HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBVisualMapPlugin"
SRC_URI="https://codeberg.org/OpenRGB/OpenRGBVisualMapPlugin/archive/release_${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/openrgbvisualmapplugin"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=app-misc/openrgb-1.0:=
dev-qt/qtbase:6[gui,widgets]
"
DEPEND="
${RDEPEND}
dev-cpp/nlohmann_json
"
PATCHES=(
"${FILESDIR}/openrgb-plugin-visualmap-1.0-dep.patch"
"${FILESDIR}/openrgb-plugin-visualmap-0.9_p20250723-build-system.patch"
)
src_prepare() {
default
rm -r OpenRGB || die
ln -s "${ESYSROOT}/usr/include/OpenRGB" . || die
sed -e '/^GIT_/d' -i *.pro || die
# Because of -Wl,--export-dynamic in app-misc/openrgb, this resources.qrc
# conflicts with the openrgb's one. So rename it.
sed -e 's/resources.qrc/resources_visualmap_plugin.qrc/' -i *.pro || die
mv --no-clobber resources.qrc resources_visualmap_plugin.qrc || die
}
src_configure() {
eqmake6 INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann"
}
src_install() {
exeinto /usr/$(get_libdir)/openrgb/plugins
doexe libOpenRGBVisualMapPlugin.so
}
|