1
0
forked from brl/citadel
citadel/meta-gnome/recipes-freedesktop/plymouth/plymouth_0.9.3.bb

78 lines
3.0 KiB
BlitzBasic
Raw Normal View History

2017-12-04 16:33:20 -05:00
SUMMARY = "Plymouth is a project from Fedora providing a flicker-free graphical boot process."
DESCRIPTION = "Plymouth is an application that runs very early in the boot process \
(even before the root filesystem is mounted!) that provides a \
graphical boot animation while the boot process happens in the background. \
"
HOMEPAGE = "http://www.freedesktop.org/wiki/Software/Plymouth"
SECTION = "base"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
DEPENDS = "libcap libpng cairo dbus udev"
PROVIDES = "virtual/psplash"
RPROVIDES_${PN} = "virtual-psplash virtual-psplash-support"
2018-01-18 18:19:47 -05:00
SRC_URI = "http://www.freedesktop.org/software/plymouth/releases/${BPN}-${PV}.tar.xz file://plymouthd.conf file://subgraph.png"
SRC_URI[md5sum] = "b261c720888a5431cdfce8494805eab3"
SRC_URI[sha256sum] = "9f8dd08a90ceaf6228dcd8c27759adf18fc9482f15b6c56dcbcced268b4e4a74"
2017-12-04 16:33:20 -05:00
EXTRA_OECONF += " --enable-shared --disable-static --disable-gtk --disable-documentation \
--with-logo=${LOGO} \
2018-01-18 18:19:47 -05:00
${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '--enable-systemd-integration', '', d)} \
2017-12-04 16:33:20 -05:00
"
2018-01-18 18:19:47 -05:00
PACKAGECONFIG ??= "pango"
2017-12-04 16:33:20 -05:00
PACKAGECONFIG_append_x86 = " drm"
PACKAGECONFIG_append_x86-64 = " drm"
PACKAGECONFIG[drm] = "--enable-drm,--disable-drm,libdrm"
PACKAGECONFIG[pango] = "--enable-pango,--disable-pango,pango"
PACKAGECONFIG[gtk] = "--enable-gtk,--disable-gtk,gtk+"
2018-01-18 18:19:47 -05:00
#PACKAGECONFIG[initrd] = ",,,"
2017-12-04 16:33:20 -05:00
2018-01-18 18:19:47 -05:00
LOGO = "${WORKDIR}/subgraph.png"
2017-12-04 16:33:20 -05:00
inherit autotools pkgconfig systemd
do_install_append() {
install -d ${D}${systemd_unitdir}/system
install -m 644 ${B}/systemd-units/*.service ${D}${systemd_unitdir}/system
install -m 644 ${B}/systemd-units/systemd-ask-password-plymouth.path ${D}${systemd_unitdir}/system
# Remove /var/run from package as plymouth will populate it on startup
rm -fr "${D}${localstatedir}/run"
2018-01-18 18:19:47 -05:00
rm -rf ${D}/etc/plymouth/plymouthd.conf
install -d ${D}/etc/plymouth
install -m 644 ${WORKDIR}/plymouthd.conf ${D}/etc/plymouth/plymouthd.conf
# if ! ${@bb.utils.contains('PACKAGECONFIG', 'initrd', 'true', 'false', d)}; then
2017-12-04 16:33:20 -05:00
rm -rf "${D}${libexecdir}"
2018-01-18 18:19:47 -05:00
# fi
# https://patchwork.openembedded.org/patch/146656/
sed -i 's#ExecStart= -#ExecStart=/usr/bin/systemd-tty-ask-password-agent -#' ${D}${systemd_unitdir}/system/systemd-ask-password-plymouth.service
# https://aur.archlinux.org/packages/plymouth/#comment-613012
printf "RuntimeDirectory=plymouth\n" >> ${D}${systemd_unitdir}/system/systemd-ask-password-plymouth.service
2017-12-04 16:33:20 -05:00
}
2018-01-18 18:19:47 -05:00
#PACKAGES =. "${@bb.utils.contains('PACKAGECONFIG', 'initrd', '${PN}-initrd ', '', d)}"
2017-12-04 16:33:20 -05:00
PACKAGES =+ "${PN}-set-default-theme"
2018-01-18 18:19:47 -05:00
#FILES_${PN}-initrd = "${libexecdir}/plymouth/*"
2017-12-04 16:33:20 -05:00
FILES_${PN}-set-default-theme = "${sbindir}/plymouth-set-default-theme"
FILES_${PN} += "${systemd_unitdir}/system/*"
FILES_${PN}-dbg += "${libdir}/plymouth/renderers/.debug"
2018-01-18 18:19:47 -05:00
#RDEPENDS_${PN}-initrd = "bash dracut"
2017-12-04 16:33:20 -05:00
RDEPENDS_${PN}-set-default-theme = "bash"
SYSTEMD_SERVICE_${PN} = "plymouth-start.service"