Skip to content

Commit

Permalink
app-misc/openrgb-plugin-visualmap: new package
Browse files Browse the repository at this point in the history
https://gitlab.com/OpenRGBDevelopers/OpenRGBVisualMapPlugin

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Alexey Sokolov <[email protected]>
Signed-off-by: Patrick McLean <[email protected]>
  • Loading branch information
DarthGandalf authored and chutz committed Jun 22, 2021
1 parent 8cad253 commit efce5c2
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
1 change: 1 addition & 0 deletions app-misc/openrgb-plugin-visualmap/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST OpenRGBVisualMapPlugin-b603bb994719c765cc52c116c6f9f3983fc2a7b2.tar.bz2 45381 BLAKE2B e289f952a8f6553ff81a557753cbb94fb56111a6724f3141fc44a2f1abe9fa3d8e8b4eb769b54adfcb8ee6580d26378ca0b15fd83c14eb669e4682dad07729b8 SHA512 aab553dff55bc4d6990657ad9f29dbbe5ab78dfb532dba50923b32c2bb86ced8d37fc1190dca1b59f420aba7f0db81fbd0d35d49e499e19b9efa4638269a784d
15 changes: 15 additions & 0 deletions app-misc/openrgb-plugin-visualmap/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>[email protected]</email>
<name>Patrick McLean</name>
</maintainer>
<maintainer type="person" proxied="yes">
<email>[email protected]</email>
<name>Alexey Sokolov</name>
</maintainer>
<upstream>
<remote-id type="gitlab">OpenRGBDevelopers/OpenRGBEffectsPlugin</remote-id>
</upstream>
</pkgmetadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit qmake-utils

MY_GIT_COMMIT="b603bb994719c765cc52c116c6f9f3983fc2a7b2"
SRC_URI="https://gitlab.com/OpenRGBDevelopers/OpenRGBVisualMapPlugin/-/archive/${MY_GIT_COMMIT}/OpenRGBVisualMapPlugin-${MY_GIT_COMMIT}.tar.bz2"
S="${WORKDIR}/OpenRGBVisualMapPlugin-${MY_GIT_COMMIT}"
KEYWORDS="~amd64"

DESCRIPTION="Plugin for OpenRGB to create virtual devices out of multiple real ones"
HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBEffectsPlugin"
LICENSE="GPL-2"
SLOT="0"

RDEPEND="
>=app-misc/openrgb-0.6-r1:=
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
"
DEPEND="
${RDEPEND}
dev-cpp/nlohmann_json
"

src_prepare() {
default
rm -r OpenRGB || die
sed -i -e '/RGBController.cpp/d' OpenRGBVisualMapPlugin.pro || die
}

src_configure() {
eqmake5 \
INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann" \
INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB" \
INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB/RGBController" \
INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB/i2c_smbus" \
INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB/net_port"
}

src_install() {
exeinto /usr/$(get_libdir)/OpenRGB/plugins
doexe libOpenRGBVisualMapPlugin.so.1.0.0
}

0 comments on commit efce5c2

Please sign in to comment.