summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2019-05-10 12:00:14 +0200
committerLars Wendler <polynomial-c@gentoo.org>2019-05-10 12:01:15 +0200
commit4f5c24e5e8991b3cff452dc6ef5c445f88367fbb (patch)
tree6a598e60cbb605690d3386e68884f646f8c27fb7
parentx11-apps/radeon-profile-daemon: Secured socket permissions. (diff)
downloadgentoo-4f5c24e5.tar.gz
gentoo-4f5c24e5.tar.bz2
gentoo-4f5c24e5.zip
x11-apps/radeon-profile-daemon: Removed old.
Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
-rw-r--r--x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild b/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild
deleted file mode 100644
index ca74330cfd3c..000000000000
--- a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2019 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
-LICENSE="GPL-2"
-SLOT="0"
-
-IUSE=""
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtnetwork:5
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${P}/${PN}"
-
-src_prepare() {
- default
- 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 ${PN}
-}