blob: 5e09b312e2d1f8457d0230244eef743786df0d22 (
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.2 2004/10/06 05:57:48 zhen 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/*
}
|