summaryrefslogtreecommitdiff
path: root/sys-power
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-03-18 21:51:57 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-03-18 21:51:57 +0000
commit8a71dc5ba2884b0b61a5df0cfdaa37eb2d3cc74a (patch)
tree506cc21e14a895896e2451357349ed314403c1c1 /sys-power
parent5b53f0966ca15de171ce4f761a89dee482aaf9b9 (diff)
sys-power/radeon-profile : new package
Diffstat (limited to 'sys-power')
-rw-r--r--sys-power/radeon-profile/Manifest1
-rw-r--r--sys-power/radeon-profile/radeon-profile-20170714.ebuild45
2 files changed, 46 insertions, 0 deletions
diff --git a/sys-power/radeon-profile/Manifest b/sys-power/radeon-profile/Manifest
new file mode 100644
index 00000000..e20f5f7e
--- /dev/null
+++ b/sys-power/radeon-profile/Manifest
@@ -0,0 +1 @@
+DIST radeon-profile-20170714.tar.gz 351240 BLAKE2B 4cce07bb72744a196a89db5b0280c39997b5d44686a6a72e155d3d15046ddbddcabff5b7ad1810fb9d0c6e0a03ca987c74ab17e05f9fc60307f8225af3686382 SHA512 dc7931f90143c5d565dad41ae623a687c20b3d118de1d1870d69b913d98e552601d1b3ac4da719ca5b17e1996cee743e9806c66c08e20c507208ebf398f62d27
diff --git a/sys-power/radeon-profile/radeon-profile-20170714.ebuild b/sys-power/radeon-profile/radeon-profile-20170714.ebuild
new file mode 100644
index 00000000..bc9a877d
--- /dev/null
+++ b/sys-power/radeon-profile/radeon-profile-20170714.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils qmake-utils
+
+DESCRIPTION="Monitor Radeon GPU parameters and switch power profiles"
+HOMEPAGE="https://github.com/marazmista/radeon-profile"
+SRC_URI="https://github.com/marazmista/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+
+RDEPEND="dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtcharts:5
+ x11-libs/libdrm
+ x11-libs/libXrandr
+ x11-libs/libxkbcommon
+"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/${P}/${PN}
+
+src_prepare() {
+ default
+ sed -i "s/Categories\=System\;Monitor\;HardwareSettings\;TrayIcon\;/Categories\=System\;/g" extra/${PN}.desktop
+}
+
+src_configure() {
+ eqmake5 ${PN}.pro
+}
+
+src_install() {
+ dodir usr/bin
+ exeinto usr/bin
+ doexe ${PN}
+ dodir usr/share/applications
+ insinto usr/share/applications
+ doins extra/${PN}.desktop
+ doicon extra/${PN}.png
+}