blob: 9cd3935205898ef4d73036c431fea647dbc596ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-0.1.17.30.ebuild,v 1.2 2003/07/29 13:58:29 lanius Exp $
DESCRIPTION="Debian bootstrap scripts"
HOMEPAGE="http://packages.qa.debian.org/d/debootstrap.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
SRC_URI="http://http.us.debian.org/debian/pool/main/d/debootstrap/debootstrap_${PV}.tar.gz"
DEPEND="sys-devel/binutils
net-misc/wget"
IUSE=""
src_compile() {
make
}
src_install() {
make DESTDIR=${D} install
}
|