diff options
Diffstat (limited to 'sys-power/radeon-profile/radeon-profile-20170714.ebuild')
-rw-r--r-- | sys-power/radeon-profile/radeon-profile-20170714.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
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 +} |