diff options
author | Michael Januszewski <spock@gentoo.org> | 2010-08-28 20:52:22 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2010-08-28 20:52:22 +0000 |
commit | 1db76a5309900bfd9f10ce9c0eaf9241d08a8d84 (patch) | |
tree | e32f5432e0524e534622ac36a898ed22bdd8dfa4 /media-gfx | |
parent | Remove old ebuild. (diff) | |
download | gentoo-2-1db76a5309900bfd9f10ce9c0eaf9241d08a8d84.tar.gz gentoo-2-1db76a5309900bfd9f10ce9c0eaf9241d08a8d84.tar.bz2 gentoo-2-1db76a5309900bfd9f10ce9c0eaf9241d08a8d84.zip |
Add a patch for initrd.splash (by Amadeusz Żołnowski, bug #330107).
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/splashutils/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/splashutils/files/initrd.splash-cmp-str-instead-of-int.patch | 11 | ||||
-rw-r--r-- | media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild | 3 |
3 files changed, 19 insertions, 2 deletions
diff --git a/media-gfx/splashutils/ChangeLog b/media-gfx/splashutils/ChangeLog index f67308ab964c..70fdd042e270 100644 --- a/media-gfx/splashutils/ChangeLog +++ b/media-gfx/splashutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/splashutils # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.180 2010/08/28 20:39:15 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.181 2010/08/28 20:52:22 spock Exp $ + + 28 Aug 2010; Michał Januszewski <spock@gentoo.org> + splashutils-1.5.4.3-r3.ebuild, + +files/initrd.splash-cmp-str-instead-of-int.patch: + Add a patch for initrd.splash (by Amadeusz Żołnowski, bug #330107). 28 Aug 2010; Michał Januszewski <spock@gentoo.org> -splashutils-1.5.4.3-r2.ebuild: diff --git a/media-gfx/splashutils/files/initrd.splash-cmp-str-instead-of-int.patch b/media-gfx/splashutils/files/initrd.splash-cmp-str-instead-of-int.patch new file mode 100644 index 000000000000..16bb2f5740fc --- /dev/null +++ b/media-gfx/splashutils/files/initrd.splash-cmp-str-instead-of-int.patch @@ -0,0 +1,11 @@ +--- initrd.splash 2008-11-13 23:49:00.000000000 +0100 ++++ initrd.splash.new 2010-07-27 21:35:24.647912782 +0200 +@@ -26,7 +26,7 @@ + init) + if [ -n "$2" ]; then + export BOOT_MSG="$2" +- elif [ "${CDROOT}" -eq '1' ]; then ++ elif [ "${CDROOT}" = '1' ]; then + export BOOT_MSG="Preparing the LiveCD environment... Press Alt+F1 for verbose mode." + else + export BOOT_MSG="Preparing the system for boot... Press Alt+F1 for verbose mode." diff --git a/media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild b/media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild index 94c62d907168..a5004d4caad3 100644 --- a/media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild +++ b/media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild,v 1.5 2010/08/28 20:37:37 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild,v 1.6 2010/08/28 20:52:22 spock Exp $ EAPI="2" @@ -102,6 +102,7 @@ src_prepare() { epatch "${FILESDIR}"/splashutils-1.5.4.3-openrc-umount-fix.patch epatch "${FILESDIR}"/splashutils-1.5.4.3-nondefault-runlevel.patch epatch "${FILESDIR}"/splashutils-1.5.4.3-openrc-effects.patch + epatch "${FILESDIR}"/initrd.splash-cmp-str-instead-of-int.patch cd "${S}" rm -f m4/* |