diff options
author | Alexey Sokolov <sokolov@google.com> | 2021-06-22 22:08:47 +0100 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2021-06-22 16:00:00 -0700 |
commit | 5a4647ab24f713d205193b5b98daea185623e6d9 (patch) | |
tree | a0f77a2cd82824d2d411513ea9b0b489fa0aed63 /app-misc/openrgb | |
parent | app-misc/openrgb: rename from OpenRGB (diff) | |
download | gentoo-5a4647ab24f713d205193b5b98daea185623e6d9.tar.gz gentoo-5a4647ab24f713d205193b5b98daea185623e6d9.tar.bz2 gentoo-5a4647ab24f713d205193b5b98daea185623e6d9.zip |
app-misc/openrgb: drop old
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'app-misc/openrgb')
-rw-r--r-- | app-misc/openrgb/Manifest | 1 | ||||
-rw-r--r-- | app-misc/openrgb/openrgb-0.5.ebuild | 53 |
2 files changed, 0 insertions, 54 deletions
diff --git a/app-misc/openrgb/Manifest b/app-misc/openrgb/Manifest index dc65a0e68b1a..319d0a7ed289 100644 --- a/app-misc/openrgb/Manifest +++ b/app-misc/openrgb/Manifest @@ -1,2 +1 @@ -DIST OpenRGB-release_0.5.tar.bz2 24183948 BLAKE2B c3e6eaab2224f97287a454375486cdacc6814f35fe6752271293d30110d066998d95a901224929cdec7f57a3983fa9d8f5dc488a2ccb6d128df36fac6bc4582a SHA512 d0bd69de94e7e94b9972c07851602d8437b4485d02e83e2fe84f21292acbeef32624ec82d5cb79de85a4dfec35431c469b124b0cc41cf1f741e6e52803dd82eb DIST OpenRGB-release_0.6.tar.bz2 24301305 BLAKE2B 20d8f8f7a3189fd5f94b008b11c869d2a8584dc038322e4ac8649c7b57172637133dd18c05ed8eaa6907ba7c097280727a9e7ce2e676250146044bbc2d66921e SHA512 9eb090e1cab121308f3adea8c50feb819a19cb52feff29e45ec24dfbb37013421f53d2ac614496781af1ef4e612dd41c1abafec509430df7d0715aba59ee5a32 diff --git a/app-misc/openrgb/openrgb-0.5.ebuild b/app-misc/openrgb/openrgb-0.5.ebuild deleted file mode 100644 index c96e46374ac8..000000000000 --- a/app-misc/openrgb/openrgb-0.5.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit qmake-utils - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI=${EGIT_REPO_URI:-"https://gitlab.com/CalcProgrammer1/OpenRGB"} -else - SRC_URI="https://gitlab.com/CalcProgrammer1/OpenRGB/-/archive/release_${PV}/OpenRGB-release_${PV}.tar.bz2" - S="${WORKDIR}/OpenRGB-release_${PV}" - KEYWORDS="~amd64 ~x86" -fi - -DESCRIPTION="Open source RGB lighting control that doesn't depend on manufacturer software" -HOMEPAGE="https://gitlab.com/CalcProgrammer1/OpenRGB/" -LICENSE="GPL-2" -SLOT="0" - -RDEPEND=" - dev-libs/hidapi:= - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - virtual/libusb:1 -" -DEPEND=" - ${RDEPEND} - dev-cpp/nlohmann_json -" -BDEPEND=" - virtual/pkgconfig -" - -src_prepare() { - default - rm -r dependencies/{hidapi,libusb,json}* || die - if [[ ${PV} != *9999* ]]; then - eapply "${FILESDIR}/OpenRGB-0.5-build-system.patch" - fi -} - -src_configure() { - eqmake5 INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann" -} - -src_install() { - emake INSTALL_ROOT="${ED}" install - - dodoc README.md OpenRGB.patch -} |