blob: d7ae7f71fbd6bac5547ad1a9e4dfce3bd303cb0e (
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
|
# Copyright 2004-2012 Sabayon
# Copyright 2012 Rogentos
# Distributed under the terms of the GNU General Public License v2
# Maintainer BlackNoxis <stefan.cristian at rogentos.ro>
EAPI=4
inherit base mount-boot
DESCRIPTION="Rogentos GRUB2 Images"
HOMEPAGE="http://www.rogentos.ro"
SRC_URI="http://pkg2.rogentos.ro/~noxis/distro/${CATEGORY}/${PN}/${PN}-${PVR}.tar.gz"
LICENSE="CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
S="${WORKDIR}"
src_install () {
dodir /usr/share/grub
insinto /usr/share/grub
doins default-splash.png
}
pkg_postinst() {
local dir="${ROOT}"boot/grub
cp "${ROOT}/usr/share/grub/default-splash.png" "${dir}/default-splash.png" || \
ewarn "cannot install default splash file!"
}
|