blob: e7bd35a7ef765d2dc5e9ba3d4ba49edf19746764 (
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
|
# 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.16.ebuild,v 1.1 2005/02/23 16:17:11 wolf31o2 Exp $
IUSE="opengl X"
DESCRIPTION="LiveCD tools (autoconfig, net-setup)"
HOMEPAGE="http://www.gentoo.org"
SRC_URI="mirror://gentoo/${P}.tar.bz2
http://dev.gentoo.org/~wolf31o2/sources/livecd-tools/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc amd64 ppc hppa alpha ~ppc64"
RDEPEND=">=sys-apps/sed-4
opengl? ( virtual/opengl )
X? ( virtual/x11
sys-apps/pciutils
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 opengl-update-livecd openglify
fi
dosbin net-setup spind
}
|