summaryrefslogtreecommitdiff
blob: 24acea7eaf6494b8a71774a6f061802fdff0e025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/grub-splashes/grub-splashes-0.1.ebuild,v 1.5 2008/01/16 22:29:38 maekke Exp $

DESCRIPTION="Collection of grub splashes"
HOMEPAGE="http://dev.gentoo.org/~welp/grub-splashes.xml"
SRC_URI="mirror://gentoo/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
IUSE=""

DEPEND="|| ( sys-boot/grub sys-boot/grub-static )"
RDEPEND="${RDEPEND}"

src_install() {
	if [[ -d ${ROOT}/boot/grub ]]; then
		insinto /boot/grub
		doins *.xpm.gz
	else
		die "/boot/grub/ does not exist, please make sure you have /boot mounted"
	fi
}

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\`"
}