diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-09-04 20:03:19 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-09-24 10:01:15 +0300 |
commit | f5b9dcc9cbdbd07c892c8e347adc0e8fafd07a49 (patch) | |
tree | 68ea0e019f3ebd2861ff580ccd7bac405df75368 /x11-apps | |
parent | sys-power/intel-undervolt: remove live ebuild (diff) | |
download | gentoo-f5b9dcc9cbdbd07c892c8e347adc0e8fafd07a49.tar.gz gentoo-f5b9dcc9cbdbd07c892c8e347adc0e8fafd07a49.tar.bz2 gentoo-f5b9dcc9cbdbd07c892c8e347adc0e8fafd07a49.zip |
x11-apps/radeon-profile-daemon: remove live ebuild
Remove live ebuild since upstream wasn't updated for a couple of years.
I think it makes no sense to keep these ebuilds, especially when the
non-live ebuild is already at HEAD.
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'x11-apps')
-rw-r--r-- | x11-apps/radeon-profile-daemon/radeon-profile-daemon-99999999.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-99999999.ebuild b/x11-apps/radeon-profile-daemon/radeon-profile-daemon-99999999.ebuild deleted file mode 100644 index b50463902a78..000000000000 --- a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-99999999.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit qmake-utils systemd - -DESCRIPTION="Daemon for radeon-profile GUI" -HOMEPAGE="https://github.com/marazmista/radeon-profile-daemon" -if [[ "${PV}" == 99999999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/marazmista/radeon-profile-daemon.git" -else - SRC_URI="https://github.com/marazmista/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi -S="${WORKDIR}/${P}/${PN}" - -LICENSE="GPL-2" -SLOT="0" - -RDEPEND=" - !<x11-apps/radeon-profile-20200504-r1 - dev-qt/qtcore:5 - dev-qt/qtnetwork:5 -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-20190603-run_subdir.patch" -) - -src_prepare() { - eapply -p2 "${PATCHES[@]}" - eapply_user - - sed \ - -e '/^bin\.path/s@/bin@/sbin@' \ - -e "/^service\.path/s@=.*\$@= $(systemd_get_systemunitdir)@" \ - -i radeon-profile-daemon.pro || die - sed \ - -e '/^ExecStart/s@/bin/@/sbin/@' \ - -i extra/${PN}.service || die -} - -src_configure() { - eqmake5 -} - -src_install() { - emake INSTALL_ROOT="${D}" install - - newinitd "${FILESDIR}"/${PN}.initd-r2 ${PN} -} - -pkg_postinst() { - elog "Users need to be in the \"video\" group if they want to change" - elog "video card settings via ${PN}" -} |