Diff wayfire-0.7.3-r3 with a wayfire-0.7.5
/usr/portage/gui-wm/wayfire/wayfire-0.7.5.ebuild 2023-10-09 14:52:31.176368393 +0300 | ||
---|---|---|
1 |
# Copyright 2019-2022 Gentoo Authors |
|
1 |
# Copyright 2019-2023 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
4 |
EAPI=8 |
|
5 | 5 | |
6 | 6 |
inherit meson toolchain-funcs |
7 | 7 | |
... | ... | |
40 | 40 |
x11-base/xwayland |
41 | 41 |
x11-libs/libxcb |
42 | 42 |
) |
43 |
system-wfconfig? ( |
|
44 |
>=gui-libs/wf-config-0.7.1 |
|
45 |
<gui-libs/wf-config-0.8.0 |
|
46 |
) |
|
47 |
!system-wfconfig? ( !gui-libs/wf-config ) |
|
48 |
system-wlroots? ( |
|
49 |
>=gui-libs/wlroots-0.15.1:0/15[X?] |
|
50 |
) |
|
51 |
!system-wlroots? ( !gui-libs/wlroots ) |
|
52 | 43 |
" |
53 | 44 | |
45 |
if [[ ${PV} == 9999 ]] ; then |
|
46 |
DEPEND+=" |
|
47 |
system-wfconfig? ( ~gui-libs/wf-config-9999:= ) |
|
48 |
!system-wfconfig? ( !gui-libs/wf-config ) |
|
49 |
system-wlroots? ( ~gui-libs/wlroots-9999:=[X?] ) |
|
50 |
!system-wlroots? ( !gui-libs/wlroots ) |
|
51 |
" |
|
52 |
else |
|
53 |
DEPEND+=" |
|
54 |
system-wfconfig? ( |
|
55 |
>=gui-libs/wf-config-0.7.1 |
|
56 |
<gui-libs/wf-config-0.8.0 |
|
57 |
) |
|
58 |
!system-wfconfig? ( !gui-libs/wf-config ) |
|
59 |
system-wlroots? ( |
|
60 |
>=gui-libs/wlroots-0.16.0:0/16[X?] |
|
61 |
) |
|
62 |
!system-wlroots? ( !gui-libs/wlroots ) |
|
63 |
" |
|
64 |
fi |
|
65 | ||
54 | 66 |
RDEPEND=" |
55 | 67 |
${DEPEND} |
56 | 68 |
x11-misc/xkeyboard-config |
... | ... | |
61 | 73 |
virtual/pkgconfig |
62 | 74 |
" |
63 | 75 | |
76 |
PATCHES=( |
|
77 |
"${FILESDIR}"/${PN}-0.7.5-gcc13.patch |
|
78 |
) |
|
79 | ||
64 | 80 |
src_configure() { |
65 | 81 |
sed -e "s:@EPREFIX@:${EPREFIX}:" \ |
66 | 82 |
"${FILESDIR}"/wayfire-session > "${T}"/wayfire-session || die |