Package Details: plymouth-git 24.004.60.r34.gedc7c3ea-1

Git Clone URL: https://aur.archlinux.org/plymouth-git.git (read-only, click to copy)
Package Base: plymouth-git
Description: Graphical boot splash screen (git version)
Upstream URL: https://www.freedesktop.org/wiki/Software/Plymouth/
Licenses: GPL-2.0-or-later
Conflicts: plymouth
Provides: plymouth
Submitter: PirateJonno
Maintainer: Taijian
Last Packager: Taijian
Votes: 274
Popularity: 0.001911
First Submitted: 2009-05-02 09:53 (UTC)
Last Updated: 2024-05-17 07:42 (UTC)

Required by (172)

Sources (6)

Latest Comments

« First ‹ Previous 1 .. 41 42 43 44 45 46 47 48 49 50 51 Next › Last »

ricardofunke commented on 2011-06-19 15:33 (UTC)

Sorry, I forgot to thank you for the modifications... ;)

ricardofunke commented on 2011-06-17 19:00 (UTC)

Sorry, but I think you should reduce the time from 5 to 3, I saw later that 5 is too much... Could you put it indented?

ricardofunke commented on 2011-06-16 03:54 (UTC)

My plymouth don't let my notebook shutdown, then I found that "plymouthd --mode=shutdown" hangs and it stops only with kill -9. So I wrote that code above on plymouth.functions to fix it: #### (...) if [ "$0" == "/etc/rc.shutdown" ]; then XPID=`pidof X` if [ "$XPID" ]; then RUNLEVEL=`runlevel` if [ "${RUNLEVEL:2:4}" != '5' ]; then [ -e /var/run/daemons/slim ] && /etc/rc.d/slim stop [ -e /var/run/daemons/gdm ] && /etc/rc.d/gdm stop [ -e /var/run/daemons/kdm ] && /etc/rc.d/kdm stop [ -e /var/run/daemons/xdm ] && /etc/rc.d/xdm stop [ -e /var/run/daemons/entrance ] && /etc/rc.d/entrance stop fi kill -9 $XPID &> /dev/null fi ply_daemon --mode=shutdown --pid-file=/tmp/plymouthd ply_client --show-splash while [[ ( $(ps h $(cat /tmp/plymouthd)) ) && ( $ply_wait -lt 5 ) ]]; do ply_wait=$(( $ply_wait + 1 )) sleep 1 done [[ $(ps h $(cat /tmp/plymouthd)) ]] && kill -9 $(cat /tmp/plymouthd) fi ###

Cilyan commented on 2011-06-11 15:09 (UTC)

pkg-config (once again) is part of the base-devel, which is a prerequisite to build ANY package. https://wiki.archlinux.org/index.php/Creating_Packages That's why it should NOT appear in the [make]depends array.

hellnest commented on 2011-06-11 12:39 (UTC)

The PKGBUILD should running fine, just try it and give any info if it failed to build,

ricardofunke commented on 2011-06-11 11:40 (UTC)

So @dimitar, should pkg_config be as "makedepends" in PKGBUILD?

hellnest commented on 2011-05-22 00:31 (UTC)

Since i'm using it, i will try to maintenance the package

Cilyan commented on 2011-05-21 10:33 (UTC)

Update of PKGBUILD: - Quotes in PKGBUILD to protect paths with spaces - Separate package function - Get package version from autotools (for provides option) - Include fix for getpwid_r with a tweak to cope with different version of nss (should work till version 3 is released)

<deleted-account> commented on 2011-03-17 15:48 (UTC)

about that getpwuid_r(): https://bbs.archlinux.org/viewtopic.php?pid=886041 did that for me (ok, i had a different libnss version so i had to change that)

dimitar commented on 2011-03-16 21:21 (UTC)

@antiwinhacker: I also got the same error when I tried to makepkg. The problem is that the macro PKG_CHECK_MODULES cannot be found, i. e. you need to install pkg-config: $ sudo pacman -S pkg-config You'll also need patch: $ sudo pacman -S patch