blob: 6a3c27ebcd529c41ced6cb879c26d058b0ca575d (
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson readme.gentoo-r1 flag-o-matic
SRC_URI="https://dev.gentoo.org/~aidecoe/distfiles/${CATEGORY}/${PN}/gentoo-logo.png"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.freedesktop.org/plymouth/plymouth"
else
SRC_URI="${SRC_URI} https://www.freedesktop.org/software/plymouth/releases/${P}.tar.xz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
fi
DESCRIPTION="Graphical boot animation (splash) and logger"
HOMEPAGE="https://gitlab.freedesktop.org/plymouth/plymouth"
LICENSE="GPL-2+"
SLOT="0"
IUSE="debug +drm +gtk +pango selinux freetype +split-usr +udev doc systemd"
BDEPEND="
virtual/pkgconfig
doc? (
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
)
"
COMMON_DEPEND="
dev-libs/libevdev
>=media-libs/libpng-1.2.16:=
x11-libs/libxkbcommon
x11-misc/xkeyboard-config
drm? ( x11-libs/libdrm )
freetype? ( media-libs/freetype:2 )
gtk? (
dev-libs/glib:2
x11-libs/cairo
>=x11-libs/gtk+-3.14:3[X]
)
pango? (
x11-libs/cairo
>=x11-libs/pango-1.21[X]
)
systemd? ( sys-apps/systemd )
udev? ( virtual/libudev )
"
DEPEND="${COMMON_DEPEND}
elibc_musl? ( sys-libs/rpmatch-standalone )
"
RDEPEND="${COMMON_DEPEND}
selinux? ( sec-policy/selinux-plymouthd )
udev? ( virtual/udev )
"
DOC_CONTENTS="
Follow the following instructions to set up Plymouth:\n
https://wiki.gentoo.org/wiki/Plymouth#Configuration
"
src_prepare() {
use elibc_musl && append-ldflags -lrpmatch
default
}
src_configure() {
local emesonargs=(
--localstatedir "${EPREFIX}"/var
$(meson_feature gtk)
$(meson_feature freetype)
$(meson_feature pango)
$(meson_feature udev)
$(meson_use drm)
$(meson_use systemd systemd-integration)
$(meson_use doc docs)
$(meson_use debug tracing)
)
meson_src_configure
}
src_install() {
meson_src_install
insinto /usr/share/plymouth
newins "${DISTDIR}"/gentoo-logo.png bizcom.png
# fix broken symlink
dosym ../../bizcom.png /usr/share/plymouth/themes/spinfinity/header-image.png
if use split-usr; then
# Install compatibility symlinks as some rdeps hardcode the paths
dosym ../usr/bin/plymouth /bin/plymouth
dosym ../usr/sbin/plymouth-set-default-theme /sbin/plymouth-set-default-theme
dosym ../usr/sbin/plymouthd /sbin/plymouthd
fi
# the file /var/spool/plymouth/boot.log is linked to the boot log after
# booting when there are errors, there is no runtime check to create this
# directory (the file is directly linked using unistd `link`) meaning there
# may be missing logs or unexpected behaviour if it is not kept.
keepdir /var/spool/plymouth
# /var/lib/plymouth is created at runtime, and is used to store boot/shutdown
# durations, it doesn't need to be created at build.
rm -r "${ED}"/var/lib || die
# /run/plymouth is also created at runtime
rm -r "${ED}"/run || die
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
if ! has_version "sys-kernel/dracut"; then
ewarn "dracut is not installed, if you wish to have an initramfs with"
ewarn "plymouth support, you can emerge 'sys-kernel/dracut' otherwise"
ewarn "you can look at the plymouth wiki for other methods:"
ewarn "https://wiki.gentoo.org/wiki/Plymouth#Building_Initramfs"
fi
}
|