diff options
author | James Meyer <james.meyer@operamail.com> | 2009-02-12 21:28:07 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-02-12 21:28:07 (GMT) |
commit | a1b6e5305478b7dc244fe435d67d2e852ff850e1 (patch) | |
tree | b15df9fb0b6015b07f120d58afe954f0aead62e4 /abs/core-testing/fbsplash/PKGBUILD | |
parent | 90f01752a020a881a602acb10deec46eb00e0fa5 (diff) | |
download | linhes_pkgbuild-a1b6e5305478b7dc244fe435d67d2e852ff850e1.zip linhes_pkgbuild-a1b6e5305478b7dc244fe435d67d2e852ff850e1.tar.gz linhes_pkgbuild-a1b6e5305478b7dc244fe435d67d2e852ff850e1.tar.bz2 |
Disable the chvt commands for fbsplash.
This was causing the install status to disappear, when the chroot version of mysql was started.
It's crude but it works, side effects (if any) are still unkown.
Diffstat (limited to 'abs/core-testing/fbsplash/PKGBUILD')
-rw-r--r-- | abs/core-testing/fbsplash/PKGBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/abs/core-testing/fbsplash/PKGBUILD b/abs/core-testing/fbsplash/PKGBUILD index f1a0e0e..4de3c75 100644 --- a/abs/core-testing/fbsplash/PKGBUILD +++ b/abs/core-testing/fbsplash/PKGBUILD @@ -2,7 +2,7 @@ pkgname=fbsplash pkgver=1.5.4.3 -pkgrel=5 +pkgrel=7 pkgdesc="A userspace implementation of a splash screen for Linux (formerly known as gensplash)" arch=('i686' 'x86_64') url="http://fbsplash.berlios.de" @@ -33,6 +33,7 @@ build() { # Configure, make, and install ./configure --prefix=/usr --sysconfdir=/etc --enable-fbcondecor --with-gpm --with-mng --with-png --with-ttf --with-ttf-kernel make || return 1 + cp -f ${startdir}/splash-functions.sh ${startdir}/src/splashutils-1.5.4.3/scripts/splash-functions.sh make DESTDIR=${startdir}/pkg install || return 1 # Create directories @@ -51,4 +52,5 @@ build() { # install initscripts hooks install -D -m744 ${startdir}/src/fbsplash.inithooks ${startdir}/pkg/etc/rc.d/functions.d/fbsplash.sh + } |