blob: f7f2e0f434e8797bee70a92aa2f3212bf09b3287 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson systemd verify-sig xdg
DESCRIPTION="Fast, lightweight and minimalistic Wayland terminal emulator"
HOMEPAGE="https://codeberg.org/dnkl/foot"
SRC_URI="
https://codeberg.org/dnkl/foot/releases/download/${PV}/${P}.tar.gz
verify-sig? ( https://codeberg.org/dnkl/foot/releases/download/${PV}/${P}.tar.gz.sig )
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
IUSE="+grapheme-clustering test utempter verify-sig"
RESTRICT="!test? ( test )"
COMMON_DEPEND="
dev-libs/wayland
media-libs/fcft
media-libs/fontconfig
x11-libs/libxkbcommon
x11-libs/pixman
grapheme-clustering? (
dev-libs/libutf8proc:=[-cjk]
media-libs/fcft[harfbuzz]
)
"
DEPEND="
${COMMON_DEPEND}
>=dev-libs/tllist-1.1.0
>=dev-libs/wayland-protocols-1.32
"
RDEPEND="
${COMMON_DEPEND}
|| (
~gui-apps/foot-terminfo-${PV}
>=sys-libs/ncurses-6.3[-minimal]
)
utempter? ( sys-libs/libutempter )
"
BDEPEND="
app-text/scdoc
dev-util/wayland-scanner
verify-sig? ( sec-keys/openpgp-keys-dnkl )
"
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/dnkl.asc
src_prepare() {
default
# disable the systemd dep, we install the unit file manually
sed -i "s/systemd', required: false)$/', required: false)/" meson.build || die
# adjujst install dir
sed -i "s/'doc', 'foot'/'doc', '${PF}'/" meson.build || die
# do not install LICENSE file
sed -i "s/'LICENSE', //" meson.build || die
}
src_configure() {
local emesonargs=(
-Ddocs=enabled
-Dthemes=true
-Dime=true
-Dterminfo=disabled
$(meson_feature grapheme-clustering)
$(meson_use test tests)
-Dutmp-backend=$(usex utempter libutempter none)
-Dutmp-default-helper-path="/usr/$(get_libdir)/misc/utempter/utempter"
)
meson_src_configure
sed 's|@bindir@|/usr/bin|g' "${S}"/foot-server.service.in > foot-server.service || die
}
src_install() {
meson_src_install
exeinto /etc/user/init.d
newexe "${FILESDIR}/foot.initd" foot
systemd_douserunit foot-server.service "${S}"/foot-server.socket
}
pkg_postinst() {
xdg_pkg_postinst
}
|