Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/wlroots/
Date: Sat, 01 Dec 2018 17:49:22
Message-Id: 1543686083.1fe0463be03afbf8e9a06a9ed0abc6a1a6fc0f17.bman@gentoo
1 commit: 1fe0463be03afbf8e9a06a9ed0abc6a1a6fc0f17
2 Author: Niccolò Scatena <speedjack95 <AT> gmail <DOT> com>
3 AuthorDate: Fri Nov 30 12:57:31 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 1 17:41:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fe0463b
7
8 dev-libs/wlroots: version bump to 0.2
9
10 Signed-off-by: Niccolò Scatena <speedjack95 <AT> gmail.com>
11 Package-Manager: Portage-2.3.52, Repoman-2.3.12
12 Closes: https://github.com/gentoo/gentoo/pull/10527
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 dev-libs/wlroots/Manifest | 1 +
16 dev-libs/wlroots/wlroots-0.2.ebuild | 95 +++++++++++++++++++++++++++++++++++++
17 2 files changed, 96 insertions(+)
18
19 diff --git a/dev-libs/wlroots/Manifest b/dev-libs/wlroots/Manifest
20 index 9ea97695e85..8ae2dd30dcd 100644
21 --- a/dev-libs/wlroots/Manifest
22 +++ b/dev-libs/wlroots/Manifest
23 @@ -1 +1,2 @@
24 DIST wlroots-0.1.tar.gz 436459 BLAKE2B 8545adb7a9ffe1c4b071ddad1093472f45b24638b29b3c2898b4aa3629c364936be7bec348c9aac5a7d3ecda677df108361fbef08cda8fca9c6bb21639883c86 SHA512 43897ac5a512ea26ad9703182dab5de9c714a087449b108472f638148538a632a67cfc778edf3e77940fdd7bdba91d64a4dc4e4ed1903a150f13ca59237ce01e
25 +DIST wlroots-0.2.tar.gz 437638 BLAKE2B dd7ca737ba2dfc00e30c83e973616cefb77fccb793161794361422a2fcbdf7299aacea8d794b910fdf06c9a191a89f7f1530d312545d08d126a729be41eeb424 SHA512 b7727b29ed7e5188d5fa6099687f8e6f48b6b3f17f7a6e136956ad6b607054595de3779118bffd4b9730115eaca2f00c2d30d52f4915b2753a749432ec0c3f2a
26
27 diff --git a/dev-libs/wlroots/wlroots-0.2.ebuild b/dev-libs/wlroots/wlroots-0.2.ebuild
28 new file mode 100644
29 index 00000000000..c3bccd9f7fe
30 --- /dev/null
31 +++ b/dev-libs/wlroots/wlroots-0.2.ebuild
32 @@ -0,0 +1,95 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +if [[ ${PV} == 9999 ]] ; then
39 + EGIT_REPO_URI="https://github.com/swaywm/wlroots.git"
40 + inherit git-r3
41 +else
42 + SRC_URI="https://github.com/swaywm/wlroots/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 + KEYWORDS="~amd64 ~x86"
44 +fi
45 +
46 +inherit fcaps meson
47 +
48 +DESCRIPTION="Pluggable, composable, unopinionated modules for building a Wayland compositor"
49 +HOMEPAGE="https://github.com/swaywm/wlroots"
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +IUSE="elogind icccm rootston systemd x11-backend X"
54 +REQUIRED_USE="?? ( elogind systemd )"
55 +
56 +RDEPEND=">=dev-libs/libinput-1.7.0:0=
57 + >=dev-libs/wayland-1.16.0
58 + >=dev-libs/wayland-protocols-1.15
59 + media-libs/mesa[egl,gles2,gbm]
60 + virtual/libudev
61 + x11-libs/libdrm
62 + x11-libs/libxkbcommon
63 + x11-libs/pixman
64 + elogind? ( >=sys-auth/elogind-237 )
65 + icccm? ( x11-libs/xcb-util-wm )
66 + systemd? ( >=sys-apps/systemd-237 )
67 + x11-backend? ( x11-libs/libxcb:0= )
68 + X? (
69 + x11-base/xorg-server[wayland]
70 + x11-libs/libxcb:0=
71 + )"
72 +DEPEND="${RDEPEND}"
73 +BDEPEND=">=dev-util/meson-0.48
74 + virtual/pkgconfig"
75 +
76 +FILECAPS=( cap_sys_admin usr/bin/rootston )
77 +
78 +src_configure() {
79 + # xcb-util-errors is not on Gentoo Repository (and upstream seems inactive?)
80 + local emesonargs=(
81 + "-Dxcb-errors=disabled"
82 + -Dlibcap=$(usex filecaps enabled disabled)
83 + -Dxcb-icccm=$(usex icccm enabled disabled)
84 + -Dxwayland=$(usex X enabled disabled)
85 + -Dx11-backend=$(usex x11-backend enabled disabled)
86 + -Drootston=$(usex rootston true false)
87 + "-Dexamples=false"
88 + "-Dwerror=false"
89 + )
90 + if use systemd ; then
91 + emesonargs+=("-Dlogind=enabled" "-Dlogind-provider=systemd")
92 + elif use elogind ; then
93 + emesonargs+=("-Dlogind=enabled" "-Dlogind-provider=elogind")
94 + else
95 + emesonargs+=("-Dlogind=disabled")
96 + fi
97 +
98 + meson_src_configure
99 +}
100 +
101 +src_install() {
102 + if use rootston ; then
103 + dobin "${BUILD_DIR}"/rootston/rootston
104 + newdoc rootston/rootston.ini.example rootston.ini
105 + fi
106 +
107 + meson_src_install
108 +}
109 +
110 +pkg_postinst() {
111 + elog "You must be in the input group to allow your compositor"
112 + elog "to access input devices via libinput."
113 + if use rootston ; then
114 + elog ""
115 + elog "You should copy (and decompress) the example configuration file"
116 + elog "from ${EROOT:-${ROOT}}/usr/share/doc/${PF}/rootston.ini"
117 + elog "to the working directory from where you launch rootston"
118 + elog "(or pass the '-C path-to-config' option to rootston)."
119 + if ! use systemd && ! use elogind ; then
120 + elog ""
121 + elog "If you use ConsoleKit2, remember to launch rootston using:"
122 + elog "exec ck-launch-session rootston"
123 +
124 + fcaps_pkg_postinst
125 + fi
126 + fi
127 +}