blob: 581321b89aeeb772d0abcca22b50069e2d3904b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://codeberg.org/dnkl/wbg.git"
inherit git-r3
else
SRC_URI="https://codeberg.org/dnkl/wbg/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}"
fi
DESCRIPTION="Super simple wallpaper application"
HOMEPAGE="https://codeberg.org/dnkl/wbg"
# ZLIB for nanosvg
LICENSE="MIT ZLIB"
SLOT="0"
IUSE="png jpeg webp"
RDEPEND="
dev-libs/wayland
x11-libs/pixman
jpeg? ( media-libs/libjpeg-turbo:= )
png? ( media-libs/libpng:= )
webp? ( media-libs/libwebp:= )
"
DEPEND="
${RDEPEND}
dev-libs/tllist
"
BDEPEND="
dev-libs/wayland-protocols
dev-util/wayland-scanner
virtual/pkgconfig
"
src_configure() {
local emesonargs=(
$(meson_feature png)
$(meson_feature jpeg)
$(meson_feature webp)
-Dsvg=true
)
meson_src_configure
}
src_install() {
meson_src_install
dodoc README.md CHANGELOG.md
}
|