blob: 497da71a0b45ee62bdccef62d06a724bec8d73c4 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/livecd-ng/livecd-ng-1.0.ebuild,v 1.3 2003/02/13 05:25:51 vapier Exp $
DESCRIPTION="Gentoo LiveCD creation script"
HOMEPAGE="http://www.gentoo.org"
SRC_URI="mirror://gentoo/${P}.tbz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 -ppc"
IUSE=""
DEPEND=""
S=${WORKDIR}/${P}
src_install() {
dodir /etc/livecd-ng
cp -r profiles ${D}/etc/livecd-ng
exeinto /usr/sbin
doexe livecd-ng
dodoc README
}
|