blob: 6cfca7538a89f53c75fc49e6683cadf6bf67d578 (
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/dev-util/debootstrap/debootstrap-0.2.45.ebuild,v 1.3 2005/04/24 12:49:39 hansmi Exp $
MY_PV=${PV}
DESCRIPTION="Debian bootstrap scripts"
HOMEPAGE="http://packages.qa.debian.org/d/debootstrap.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~sparc amd64 ppc"
SRC_URI="mirror://debian/pool/main/d/debootstrap/debootstrap_${MY_PV}.tar.gz
mirror://gentoo/devices.tar.gz"
DEPEND="sys-devel/binutils
net-misc/wget
app-arch/dpkg"
IUSE=""
S=${WORKDIR}/${PN}-${MY_PV}
src_unpack() {
unpack debootstrap_${MY_PV}.tar.gz
cp ${DISTDIR}/devices.tar.gz ${S}
}
src_compile() {
sed -i -e "s/chown/#chown/" Makefile
make pkgdetails debootstrap-arch
}
src_install() {
make DESTDIR=${D} install
}
|