blob: 80377eabe0f09383acb49f522d9c1cd6fdb1d6d9 (
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/netboot/netboot-0.9.8.ebuild,v 1.3 2004/10/07 15:16:20 vapier Exp $
DESCRIPTION="x86 specific netbooting utility"
HOMEPAGE="http://netboot.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
DEPEND="sys-devel/autoconf"
RDEPEND=""
src_install() {
# this method does not work thanks to a icky Makefile, so we use einstall instead
# DESTDIR="${D}" make install || die
einstall || die "einstall failed"
dodoc README version
docinto FlashCard
dodoc FlashCard/*
}
|