blob: 879a0b490b66cf55e26306abc256b77c90a69d38 (
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
35
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/syslinux/syslinux-2.06.ebuild,v 1.5 2004/05/11 20:49:12 solar Exp $
inherit eutils gcc
DESCRIPTION="SysLinux, IsoLinux and PXELinux bootloader"
HOMEPAGE="http://syslinux.zytor.com/"
SRC_URI="mirror://kernel/linux/utils/boot/syslinux/${P}.tar.bz2"
KEYWORDS="x86 -ppc -sparc"
LICENSE="GPL-2"
SLOT="0"
DEPEND="dev-lang/nasm
sys-fs/mtools"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-nasm.patch
# -fstack-protector really does not play along well with any boot loader
$(gcc-getCC) -fstack-protector -S -o /dev/null -xc /dev/null >/dev/null 2>&1 && \
epatch ${FILESDIR}/${PN}-2.06-nossp.patch
sed -i 's:$(MAKE) -C win32 all::' Makefile
}
src_compile() {
emake || die
}
src_install() {
make INSTALLROOT=${D} install || die
dodoc README NEWS TODO *.doc memdisk/memdisk.doc
}
|