Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-misc/moonlight/
Date: Wed, 09 Feb 2022 13:12:47
Message-Id: 1644412325.2e1bbb670a477c535da8497a7248b83e8de2ef68.cybertailor@gentoo
1 commit: 2e1bbb670a477c535da8497a7248b83e8de2ef68
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Wed Feb 9 05:55:22 2022 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Wed Feb 9 13:12:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2e1bbb67
7
8 net-misc/moonlight: fix forbidden variable use
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 net-misc/moonlight/moonlight-3.1.4.ebuild | 15 ++++++---------
13 1 file changed, 6 insertions(+), 9 deletions(-)
14
15 diff --git a/net-misc/moonlight/moonlight-3.1.4.ebuild b/net-misc/moonlight/moonlight-3.1.4.ebuild
16 index cca35eae0..45f56fa00 100644
17 --- a/net-misc/moonlight/moonlight-3.1.4.ebuild
18 +++ b/net-misc/moonlight/moonlight-3.1.4.ebuild
19 @@ -5,19 +5,13 @@ EAPI=8
20 inherit qmake-utils xdg-utils
21
22 DESCRIPTION="GameStream client for PCs"
23 -
24 HOMEPAGE="https://github.com/moonlight-stream/moonlight-qt"
25 -
26 SRC_URI="https://github.com/moonlight-stream/moonlight-qt/releases/download/v${PV}/MoonlightSrc-${PV}.tar.gz"
27 -
28 S="${WORKDIR}"
29
30 LICENSE="GPL-3"
31 -
32 SLOT="0"
33 -
34 KEYWORDS="~amd64"
35 -
36 IUSE="vaapi"
37
38 RDEPEND="
39 @@ -33,16 +27,19 @@ RDEPEND="
40 >=x11-libs/libva-2.12.0:0
41 )
42 "
43 -
44 DEPEND="${RDEPEND}"
45 -
46 BDEPEND="
47 virtual/pkgconfig
48 dev-qt/qtcore
49 "
50
51 src_configure() {
52 - eqmake5 PREFIX="${D}/usr"
53 + eqmake5 PREFIX="${EPREFIX}/usr"
54 +}
55 +
56 +src_install() {
57 + emake install INSTALL_ROOT="${D}"
58 + einstalldocs
59 }
60
61 pkg_postinst() {