| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-boot/syslinux/syslinux-2.13.ebuild,v 1.5 2012/05/28 08:47:21 chithanh Exp $
|
| 4 |
|
| 5 |
DESCRIPTION="SysLinux, IsoLinux and PXELinux bootloader"
|
| 6 |
HOMEPAGE="http://syslinux.zytor.com/"
|
| 7 |
SRC_URI="mirror://kernel/linux/utils/boot/syslinux/${PV:0:1}.xx/${P}.tar.bz2"
|
| 8 |
|
| 9 |
LICENSE="GPL-2"
|
| 10 |
SLOT="0"
|
| 11 |
KEYWORDS="-* amd64 x86"
|
| 12 |
IUSE=""
|
| 13 |
|
| 14 |
RDEPEND="sys-fs/mtools"
|
| 15 |
DEPEND="${RDEPEND}
|
| 16 |
dev-lang/nasm"
|
| 17 |
|
| 18 |
# This ebuild is a departure from the old way of rebuilding everything in syslinux
|
| 19 |
# This departure is necessary since hpa doesn't support the rebuilding of anything other
|
| 20 |
# than the installers.
|
| 21 |
|
| 22 |
# removed all the unpack/patching stuff since we aren't rebuilding the core stuff anymore
|
| 23 |
|
| 24 |
src_compile() {
|
| 25 |
emake installer || die
|
| 26 |
}
|
| 27 |
|
| 28 |
src_install() {
|
| 29 |
make INSTALLROOT="${D}" install || die
|
| 30 |
dodoc README NEWS TODO *.doc memdisk/memdisk.doc
|
| 31 |
}
|