blob: f28e26865c2ba735cf510ac5795b5e9ea03941c1 (
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/sys-apps/fakeroot/fakeroot-0.4.4.ebuild,v 1.2 2003/02/13 15:55:58 vapier Exp $
MY_P="${PN}_${PV}-4.1"
DESCRIPTION="Run commands in an environment faking root privileges"
HOMEPAGE="http://joostje.op.het.net/fakeroot/index.html"
SRC_URI="http://ftp.debian.org/debian/dists/potato/main/source/utils/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
RDEPEND=">=virtual/glibc-2.2.2"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${P}"
src_compile() {
econf || die "configure problem"
emake || die "compile problem"
}
src_install () {
make DESTDIR=${D} install || die "install problem"
}
|