blob: c2fd9125b9193d346b3c19f21d8e816a789c5349 (
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-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.10.ebuild,v 1.4 2005/01/01 15:12:30 eradicator 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"
DEPEND=""
src_install() {
exeinto /etc/init.d && doexe autoconfig && newexe spind.init spind
use X && dosbin x-setup
# The following is commented because of bug #51726.
#use opengl && dosbin opengl-update openglify
dosbin net-setup spind
}
|