summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Meier <maekke@gentoo.org>2009-11-09 14:05:51 +0000
committerMarkus Meier <maekke@gentoo.org>2009-11-09 14:05:51 +0000
commitec12231b27c7065b6bdbe4a818891920a340ca9d (patch)
tree2aa5226920ab39bf165fb3df88f88185719054fd /media-gfx/grub-splashes
parentMask <media-video/kaffeine-1.0_pre1. (diff)
downloadgentoo-2-ec12231b27c7065b6bdbe4a818891920a340ca9d.tar.gz
gentoo-2-ec12231b27c7065b6bdbe4a818891920a340ca9d.tar.bz2
gentoo-2-ec12231b27c7065b6bdbe4a818891920a340ca9d.zip
bump, fixes bug #253922
(Portage version: 2.2_rc49/cvs/Linux i686)
Diffstat (limited to 'media-gfx/grub-splashes')
-rw-r--r--media-gfx/grub-splashes/ChangeLog8
-rw-r--r--media-gfx/grub-splashes/grub-splashes-20091109.ebuild44
2 files changed, 51 insertions, 1 deletions
diff --git a/media-gfx/grub-splashes/ChangeLog b/media-gfx/grub-splashes/ChangeLog
index f22c84b866c2..f091f3196112 100644
--- a/media-gfx/grub-splashes/ChangeLog
+++ b/media-gfx/grub-splashes/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-gfx/grub-splashes
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/grub-splashes/ChangeLog,v 1.10 2009/10/25 17:39:37 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/grub-splashes/ChangeLog,v 1.11 2009/11/09 14:05:51 maekke Exp $
+
+*grub-splashes-20091109 (09 Nov 2009)
+
+ 09 Nov 2009; Markus Meier <maekke@gentoo.org>
+ +grub-splashes-20091109.ebuild:
+ bump, fixes bug #253922
25 Oct 2009; Torsten Veller <tove@gentoo.org> metadata.xml:
Remove welp from metadata.xml (#141007)
diff --git a/media-gfx/grub-splashes/grub-splashes-20091109.ebuild b/media-gfx/grub-splashes/grub-splashes-20091109.ebuild
new file mode 100644
index 000000000000..146ade9cb325
--- /dev/null
+++ b/media-gfx/grub-splashes/grub-splashes-20091109.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/grub-splashes/grub-splashes-20091109.ebuild,v 1.1 2009/11/09 14:05:51 maekke Exp $
+
+DESCRIPTION="Collection of grub splashes"
+HOMEPAGE="http://dev.gentoo.org/~welp/grub-splashes.xml"
+SRC_URI="mirror://gentoo/${PN}-0.1.tar.gz
+ http://www.kde-look.org/CONTENT/content-files/49074-natural_gentoo-8.0.tar.gz
+ http://www.kde-look.org/CONTENT/content-files/98478-gentoo-splash.xpm.gz"
+
+LICENSE="GPL-2 Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+IUSE=""
+
+DEPEND="|| ( sys-boot/grub sys-boot/grub-static )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"
+
+pkg_setup() {
+ [[ -d ${ROOT}/boot/grub ]] || \
+ die "${ROOT}/boot/grub does not exist, please make sure you have /boot mounted"
+}
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ cp "${DISTDIR}"/98478-gentoo-splash.xpm.gz gentoo-blue.xpm.gz
+}
+
+src_install() {
+ insinto /boot/grub
+ find . -name '*.xpm.gz' -exec doins {} \;
+}
+
+pkg_postinst() {
+ elog "Please note that this ebuild makes the assumption that you're"
+ elog "using /boot/grub/ for your grub configuration."
+ elog ""
+ elog "To use your new grub splashes edit your /boot/grub/grub.conf"
+ elog "You can see available splash screens by running"
+ elog "\`ls /boot/grub/ | grep xpm\`"
+}