blob: 703fbdccaecb996042faa6a6f666a6dadf1ca23b (
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
34
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit mount-boot
MY_P="sh-lilo-sel-${PV}"
DESCRIPTION="bootloader for the SuperH Lantank"
HOMEPAGE="http://oss.renesas.com/"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
LICENSE="GPL-2+ BSD"
SLOT="0"
KEYWORDS="-*"
IUSE=""
RESTRICT="strip"
S=${WORKDIR}/${MY_P}
QA_TEXTRELS_sh="sbin/lilo"
src_compile() { :; }
src_install() {
into /
dosbin precompiled/lilo
insinto /boot
doins precompiled/boot.b
dosym . /boot/boot
insinto /etc
doins "${FILESDIR}"/lilo.conf
dodoc ChangeLog README TODO
}
|