diff options
author | Michael Januszewski <spock@gentoo.org> | 2011-06-14 21:33:32 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2011-06-14 21:33:32 +0000 |
commit | 047455bf28c2e6a278c892f5c5c4d896c2f523e9 (patch) | |
tree | f542bdd861567b858e9c1ed8f401482feed6c9f7 /media-gfx/splashutils | |
parent | amd64/arm stable, bug #370715 (diff) | |
download | gentoo-2-047455bf28c2e6a278c892f5c5c4d896c2f523e9.tar.gz gentoo-2-047455bf28c2e6a278c892f5c5c4d896c2f523e9.tar.bz2 gentoo-2-047455bf28c2e6a278c892f5c5c4d896c2f523e9.zip |
Fix a typo in the Gentoo initscript.
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/splashutils')
-rw-r--r-- | media-gfx/splashutils/ChangeLog | 6 | ||||
-rw-r--r-- | media-gfx/splashutils/files/splashutils-1.5.4.4-gentoo-typo-fix.patch | 19 | ||||
-rw-r--r-- | media-gfx/splashutils/splashutils-1.5.4.4.ebuild | 5 |
3 files changed, 28 insertions, 2 deletions
diff --git a/media-gfx/splashutils/ChangeLog b/media-gfx/splashutils/ChangeLog index eec8173b2e54..6f8874c1b8f5 100644 --- a/media-gfx/splashutils/ChangeLog +++ b/media-gfx/splashutils/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/splashutils # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.191 2011/06/12 22:40:01 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.192 2011/06/14 21:33:32 spock Exp $ + + 14 Jun 2011; Michał Januszewski <spock@gentoo.org> + splashutils-1.5.4.4.ebuild, +files/splashutils-1.5.4.4-gentoo-typo-fix.patch: + Fix a typo in the Gentoo initscript. *splashutils-1.5.4.4 (12 Jun 2011) diff --git a/media-gfx/splashutils/files/splashutils-1.5.4.4-gentoo-typo-fix.patch b/media-gfx/splashutils/files/splashutils-1.5.4.4-gentoo-typo-fix.patch new file mode 100644 index 000000000000..4b8d51375e71 --- /dev/null +++ b/media-gfx/splashutils/files/splashutils-1.5.4.4-gentoo-typo-fix.patch @@ -0,0 +1,19 @@ +commit 74dda8291efae78f00bb781148c8fd4fccaeb764 +Author: Michał Januszewski <spock@gentoo.org> +Date: Tue Jun 14 23:23:33 2011 +0200 + + Fix typo in the Gentoo initscript. + +diff --git a/gentoo/init-fbcondecor b/gentoo/init-fbcondecor +index b66f40a..ce921b6 100755 +--- a/gentoo/init-fbcondecor ++++ b/gentoo/init-fbcondecor +@@ -12,7 +12,7 @@ start() { + splash_setup + + if [ -z "${FBCONDECOR_TTYS}" ]; then +- FBCONDECOR_TTYS=$(seq 1 "${rc_tty_number:-${RC_TTY_NUMBER}:-12}") ++ FBCONDECOR_TTYS=$(seq 1 "${rc_tty_number:-${RC_TTY_NUMBER:-12}}") + fi + + local err=0 diff --git a/media-gfx/splashutils/splashutils-1.5.4.4.ebuild b/media-gfx/splashutils/splashutils-1.5.4.4.ebuild index c822586ef7fd..107da13e2464 100644 --- a/media-gfx/splashutils/splashutils-1.5.4.4.ebuild +++ b/media-gfx/splashutils/splashutils-1.5.4.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 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.4.ebuild,v 1.1 2011/06/12 22:40:01 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.4.ebuild,v 1.2 2011/06/14 21:33:32 spock Exp $ EAPI="2" @@ -70,6 +70,9 @@ src_prepare() { # helper. rm "${S}/libs/zlib-${V_ZLIB}/Makefile" + cd "${SG}" + epatch "${FILESDIR}/splashutils-1.5.4.4-gentoo-typo-fix.patch" + cd "${S}" ln -sf "${S}/src" "${WORKDIR}/core" |