blob: 539dc5cddeecb52c61a3af36708efdd53be66512 (
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
32
33
34
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/rootstrap/rootstrap-0.3.21.ebuild,v 1.7 2005/05/07 16:44:03 dholm Exp $
inherit eutils
DESCRIPTION="A tool for building complete Linux filesystem images"
HOMEPAGE="http://packages.qa.debian.org/rootstrap"
SRC_URI="mirror://debian/pool/main/r/rootstrap/rootstrap_${PV}.orig.tar.gz
mirror://debian/pool/main/r/rootstrap/rootstrap_${PV}-1.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86 ~ppc"
IUSE=""
DEPEND="|| ( sys-kernel/usermode-sources >=sys-kernel/vanilla-sources-2.6 )
dev-util/debootstrap
app-arch/dpkg
dev-lang/python
app-text/docbook-sgml-utils"
S=${WORKDIR}/rootstrap-${PV}.orig
src_unpack() {
unpack rootstrap_${PV}.orig.tar.gz
epatch "${DISTDIR}"/rootstrap_${PV}-1.diff.gz
cd "${S}"
sed -i -e "s/docbook-to-man/docbook2man/" Makefile
}
src_install() {
make DESTDIR="${D}" install || die
}
|