Diff swaybg-1.2.0 with a swaybg-9999
| /usr/portage/gui-apps/swaybg/swaybg-9999.ebuild 2024-07-02 13:51:45.781851503 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2023 Gentoo Authors |
|
| 1 |
# Copyright 1999-2024 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 | 4 |
EAPI=8 |
| ... | ... | |
| 13 | 13 |
EGIT_REPO_URI="https://github.com/swaywm/${PN}.git"
|
| 14 | 14 |
else |
| 15 | 15 |
SRC_URI="https://github.com/swaywm/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
| 16 |
KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86" |
|
| 16 |
KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" |
|
| 17 | 17 |
fi |
| 18 | 18 | |
| 19 | 19 |
LICENSE="MIT" |
| ... | ... | |
| 22 | 22 | |
| 23 | 23 |
DEPEND=" |
| 24 | 24 |
dev-libs/wayland |
| 25 |
>=dev-libs/wayland-protocols-1.14 |
|
| 25 |
>=dev-libs/wayland-protocols-1.26 |
|
| 26 | 26 |
x11-libs/cairo |
| 27 | 27 |
gdk-pixbuf? ( x11-libs/gdk-pixbuf ) |
| 28 | 28 |
" |
| 29 |
RDEPEND=" |
|
| 30 |
${DEPEND}
|
|
| 31 |
!<gui-wm/sway-1.1_alpha1 |
|
| 32 |
" |
|
| 29 |
RDEPEND="${DEPEND}"
|
|
| 33 | 30 |
BDEPEND=" |
| 34 | 31 |
dev-util/wayland-scanner |
| 35 | 32 |
virtual/pkgconfig |
| ... | ... | |
| 38 | 35 | |
| 39 | 36 |
src_configure() {
|
| 40 | 37 |
local emesonargs=( |
| 41 |
-Dman-pages=$(usex man enabled disabled) |
|
| 42 |
-Dgdk-pixbuf=$(usex gdk-pixbuf enabled disabled) |
|
| 38 |
$(meson_feature man man-pages) |
|
| 39 |
$(meson_feature gdk-pixbuf) |
|
| 43 | 40 |
) |
| 44 | 41 | |
| 45 | 42 |
meson_src_configure |