summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Januszewski <spock@gentoo.org>2004-02-06 20:58:22 +0000
committerMichael Januszewski <spock@gentoo.org>2004-02-06 20:58:22 +0000
commit452ba22265c5a0f02ca3ec42b21a9faf84028c81 (patch)
tree17d27e1d4e3e39fb511764dc8c38a97c79cad89c /media-gfx/bootsplash
parentFilter all -O levels, these cause the build to fail. (Bug #40411) (diff)
downloadhistorical-452ba22265c5a0f02ca3ec42b21a9faf84028c81.tar.gz
historical-452ba22265c5a0f02ca3ec42b21a9faf84028c81.tar.bz2
historical-452ba22265c5a0f02ca3ec42b21a9faf84028c81.zip
Fixed a stupid bash syntax error.
Diffstat (limited to 'media-gfx/bootsplash')
-rw-r--r--media-gfx/bootsplash/ChangeLog6
-rw-r--r--media-gfx/bootsplash/Manifest8
-rw-r--r--media-gfx/bootsplash/bootsplash-0.6-r4.ebuild4
-rw-r--r--media-gfx/bootsplash/bootsplash-0.6-r5.ebuild4
4 files changed, 13 insertions, 9 deletions
diff --git a/media-gfx/bootsplash/ChangeLog b/media-gfx/bootsplash/ChangeLog
index 95dab9b5eb4b..142be2671c03 100644
--- a/media-gfx/bootsplash/ChangeLog
+++ b/media-gfx/bootsplash/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-gfx/bootsplash
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/ChangeLog,v 1.16 2004/02/02 02:21:30 brad_mssw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/ChangeLog,v 1.17 2004/02/06 20:58:22 spock Exp $
+
+ 06 Feb 2004; Michal Januszewski <spock@gentoo.org> bootsplash-0.6-r4.ebuild,
+ bootsplash-0.6-r5.ebuild:
+ Fixed a stupid Bash syntax error, closes #40583.
01 Feb 2004; Brad House <brad_mssw@gentoo.org> bootsplash-0.6-r5.ebuild:
stable on amd64
diff --git a/media-gfx/bootsplash/Manifest b/media-gfx/bootsplash/Manifest
index cfbd9c17c77a..6c09ae396786 100644
--- a/media-gfx/bootsplash/Manifest
+++ b/media-gfx/bootsplash/Manifest
@@ -1,9 +1,9 @@
MD5 2a77ed704b718a7396c97e5e39249e21 bootsplash-0.6-r1.ebuild 3342
-MD5 6a3f6108142e93e8d969e4078e49bf27 bootsplash-0.6-r2.ebuild 3401
-MD5 65bea1eb53c5d5cc417c3aaf3a6e780e ChangeLog 2837
-MD5 8c1d8cd244bedc3898403d19981258c1 bootsplash-0.6-r4.ebuild 4958
MD5 000b763c35a5c1604070379a0c3a2a44 bootsplash-0.6-r3.ebuild 3437
-MD5 b356de41df32ec66bf798a324125a4aa bootsplash-0.6-r5.ebuild 5000
+MD5 10b800f8ac5573cbd8302a717ac4b4c9 bootsplash-0.6-r5.ebuild 4999
+MD5 6a3f6108142e93e8d969e4078e49bf27 bootsplash-0.6-r2.ebuild 3401
+MD5 cb4bad8e460384e14ecd02984dea1d04 bootsplash-0.6-r4.ebuild 4961
+MD5 91eb39259f9282cbd5c45af8044ca6f1 ChangeLog 2992
MD5 bee39157a0491e747442baf4eed96348 metadata.xml 263
MD5 3fa4a534a7a0b0dd84e1e99c032010b8 files/digest-bootsplash-0.6-r1 67
MD5 0bf6318b85e220548699e20dbb0b9390 files/digest-bootsplash-0.6-r2 70
diff --git a/media-gfx/bootsplash/bootsplash-0.6-r4.ebuild b/media-gfx/bootsplash/bootsplash-0.6-r4.ebuild
index e3edc238f206..008a22fadbd6 100644
--- a/media-gfx/bootsplash/bootsplash-0.6-r4.ebuild
+++ b/media-gfx/bootsplash/bootsplash-0.6-r4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/bootsplash-0.6-r4.ebuild,v 1.1 2004/01/17 22:45:27 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/bootsplash-0.6-r4.ebuild,v 1.2 2004/02/06 20:58:22 spock Exp $
DESCRIPTION="Graphical backgrounds for frame buffer consoles"
HOMEPAGE="http://linux.tkdack.com/"
@@ -127,7 +127,7 @@ pkg_config() {
exit 1
fi
- if [ $KV_MINOR >= 22 ]; then
+ if [ ${KV_MINOR} -ge 22 ]; then
bzip2 -dc ${ROOT}/usr/share/${PN}/bootsplash-3.0.7-2.4.22-vanilla.diff.bz2 | patch -p1 || die
else
bzip2 -dc ${ROOT}/usr/share/${PN}/bootsplash-3.0.7-2.4.20-vanilla.diff.bz2 | patch -p1 || die
diff --git a/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild b/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild
index ce054b6227ef..13afa44445f7 100644
--- a/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild
+++ b/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild,v 1.2 2004/02/02 02:21:30 brad_mssw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild,v 1.3 2004/02/06 20:58:22 spock Exp $
DESCRIPTION="Graphical backgrounds for frame buffer consoles"
HOMEPAGE="http://linux.tkdack.com/"
@@ -128,7 +128,7 @@ pkg_config() {
exit 1
fi
- if [ $KV_MINOR >= 22 ]; then
+ if [ ${KV_MINOR} -ge 22 ]; then
bzip2 -dc ${ROOT}/usr/share/${PN}/bootsplash-3.0.7-2.4.22-vanilla.diff.bz2 | patch -p1 || die
else
bzip2 -dc ${ROOT}/usr/share/${PN}/bootsplash-3.0.7-2.4.20-vanilla.diff.bz2 | patch -p1 || die