Gentoo Archives: gentoo-commits

From: Haelwenn Monnier <contact@×××××××××.me>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/wdisplays/
Date: Tue, 04 May 2021 16:12:22
Message-Id: 1620144725.5eb32c0beaa6a48c8942325aacf5287f51798a09.lanodan@gentoo
1 commit: 5eb32c0beaa6a48c8942325aacf5287f51798a09
2 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
3 AuthorDate: Tue May 4 16:12:05 2021 +0000
4 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
5 CommitDate: Tue May 4 16:12:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5eb32c0b
7
8 gui-apps/wdisplays: Undelete 9999
9
10 (the upstream is dead but might not need to be removed yet)
11
12 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
13
14 gui-apps/wdisplays/wdisplays-9999.ebuild | 35 ++++++++++++++++++++++++++++++++
15 1 file changed, 35 insertions(+)
16
17 diff --git a/gui-apps/wdisplays/wdisplays-9999.ebuild b/gui-apps/wdisplays/wdisplays-9999.ebuild
18 new file mode 100644
19 index 000000000..e9c017e2e
20 --- /dev/null
21 +++ b/gui-apps/wdisplays/wdisplays-9999.ebuild
22 @@ -0,0 +1,35 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +inherit meson xdg
29 +
30 +DESCRIPTION="GUI display configurator for wlroots compositors"
31 +HOMEPAGE="https://cyclopsian.github.io/wdisplays https://github.com/cyclopsian/wdisplays"
32 +
33 +if [[ "${PV}" == 9999 ]]
34 +then
35 + inherit git-r3
36 + EGIT_REPO_URI="https://github.com/cyclopsian/wdisplays.git"
37 +else
38 + SRC_URI="https://github.com/cyclopsian/wdisplays/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 + KEYWORDS="~amd64 ~arm64 ~x86"
40 +fi
41 +
42 +RDEPEND="
43 + dev-libs/glib
44 + media-libs/libepoxy
45 + x11-libs/gtk+:3[wayland]
46 + x11-libs/cairo
47 + x11-libs/pango
48 +"
49 +DEPEND="${RDEPEND}"
50 +BDEPEND="
51 + dev-libs/wayland-protocols
52 +"
53 +
54 +LICENSE="GPL-3+"
55 +SLOT="0"
56 +
57 +PATCHES=( "${FILESDIR}/${PN}-1.0-pull20.patch" )