blob: 8547fd886571597bfb025f683a3c059645b5a2d0 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/livecd-tools/livecd-tools-1.0.25.ebuild,v 1.3 2005/10/16 06:18:26 kumba Exp $
IUSE="opengl X"
DESCRIPTION="Gentoo LiveCD tools for autoconfiguration of hardware"
HOMEPAGE="http://www.gentoo.org"
SRC_URI="http://dev.gentoo.org/~wolf31o2/sources/livecd-tools/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 mips"
RDEPEND=">=sys-apps/sed-4
x86? ( opengl? ( virtual/opengl
>=x11-base/opengl-update-2.2.1 )
X? ( virtual/x11
sys-apps/pciutils
x11-misc/mkxf86config
sys-apps/gawk ) )"
src_install() {
doinitd autoconfig
newinitd spind.init spind
if use x86
then
use X && dosbin x-setup && newinitd x-setup.init x-setup
use opengl && dosbin openglify
fi
dosbin net-setup spind
into /
dobin bashlogin
dosbin livecd-functions.sh
}
|