Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/radeon-profile-daemon/
Date: Fri, 10 May 2019 10:01:28
Message-Id: 1557482475.4f5c24e5e8991b3cff452dc6ef5c445f88367fbb.polynomial-c@gentoo
1 commit: 4f5c24e5e8991b3cff452dc6ef5c445f88367fbb
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 10 10:00:14 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri May 10 10:01:15 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f5c24e5
7
8 x11-apps/radeon-profile-daemon: Removed old.
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 .../radeon-profile-daemon-20190309-r1.ebuild | 49 ----------------------
14 1 file changed, 49 deletions(-)
15
16 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
17 deleted file mode 100644
18 index ca74330cfd3..00000000000
19 --- a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild
20 +++ /dev/null
21 @@ -1,49 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit qmake-utils systemd
28 -
29 -DESCRIPTION="Daemon for radeon-profile GUI"
30 -HOMEPAGE="https://github.com/marazmista/radeon-profile-daemon"
31 -if [[ "${PV}" == 99999999 ]] ; then
32 - inherit git-r3
33 - EGIT_REPO_URI="https://github.com/marazmista/radeon-profile-daemon.git"
34 -else
35 - SRC_URI="https://github.com/marazmista/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
36 - KEYWORDS="~amd64 ~x86"
37 -fi
38 -LICENSE="GPL-2"
39 -SLOT="0"
40 -
41 -IUSE=""
42 -
43 -RDEPEND="
44 - dev-qt/qtcore:5
45 - dev-qt/qtnetwork:5
46 -"
47 -DEPEND="${RDEPEND}"
48 -
49 -S="${WORKDIR}/${P}/${PN}"
50 -
51 -src_prepare() {
52 - default
53 - sed \
54 - -e '/^bin\.path/s@/bin@/sbin@' \
55 - -e "/^service\.path/s@=.*\$@= $(systemd_get_systemunitdir)@" \
56 - -i radeon-profile-daemon.pro || die
57 - sed \
58 - -e '/^ExecStart/s@/bin/@/sbin/@' \
59 - -i extra/${PN}.service || die
60 -}
61 -
62 -src_configure() {
63 - eqmake5
64 -}
65 -
66 -src_install() {
67 - emake INSTALL_ROOT="${D}" install
68 -
69 - newinitd "${FILESDIR}"/${PN}.initd ${PN}
70 -}