blob: ddaf0972eb296353bade3ebed58fe760d5c03551 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/devel-chroots/devel-chroots-0.0.1.ebuild,v 1.1 2004/08/14 02:30:33 pappy Exp $
DESCRIPTION="Gentoo Developer chroots installation/configuration launcher"
HOMEPAGE="http://dev.gentoo.org/~pappy"
SRC_URI=""
#SRC_URI="http://dev.gentoo.org/~pappy/dev/gentoo/gentoo-x86/dev-util/devel-chroots/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
# for testing purposes only
KEYWORDS="-*"
# expected first scope, will be expanded to amd64 and/or ia64 when test machines available
# KEYWORDS="~x86 ~sparc ~hppa"
IUSE="hardened static debug"
DEPEND="app-misc/screen net-misc/wget"
src_compile() {
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die
}
|