aboutsummaryrefslogtreecommitdiff
blob: 7c076161bc32360e0e49ca5ffe6bcc62c803c6d3 (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
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=7

DESCRIPTION="Grub menu entries for the .iso image of customrescuecd"
HOMEPAGE="https://sourceforge.net/projects/customrescuecd/"
SRC_URI=""

LICENSE="GPL-2"
SLOT=0
KEYWORDS="~x86"

S=${WORKDIR}

RDEPEND="app-admin/customrescuecd-x86
	sys-boot/grub"

src_install() {
	exeinto /etc/grub.d
	newexe "${FILESDIR}"/customrescuecd.grub 39_customrescuecd

	insinto /etc/default
	newins "${FILESDIR}"/customrescuecd.default customrescuecd
}

pkg_postinst() {
	elog "To add the menu entries for customrescuecd to grub, you should now run"
	elog "	grub-mkconfig -o /boot/grub/grub.cfg"
	elog "You can set custom bootoptions in /etc/default/customrescuecd"
}