blob: 9b85a3eb79c2afbfaf3e48026ed13c412e3bc2f7 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/syslinux/syslinux-1.75.ebuild,v 1.3 2004/06/24 22:36:20 agriffis Exp $
S=${WORKDIR}/${P}
DESCRIPTION="SysLinux, IsoLinux and PXELinux bootloader"
HOMEPAGE="http://syslinux.zytor.com/"
SRC_URI="mirror://kernel/linux/utils/boot/syslinux/${P}.tar.gz"
KEYWORDS="x86 -ppc -sparc"
LICENSE="GPL-2"
SLOT="0"
DEPEND="dev-lang/nasm"
src_compile() {
emake || die
}
src_install () {
make INSTALLROOT=${D} install || die
dodoc README NEWS TODO *.doc
}
|