fakeroot: Sync with OE.dev (and fix -native RDEPENDS)

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@915 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2006-11-21 11:44:54 +00:00
parent e423fc9d57
commit faedc55e30
2 changed files with 11 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ SECTION = "base"
PR = "r0"
require fakeroot_${PV}.bb
inherit native
RDEPENDS="util-linux-native"
SRC_URI += "file://fix-prefix.patch;patch=1"
S = "${WORKDIR}/fakeroot-${PV}"

View File

@@ -1,8 +1,17 @@
DESCRIPTION = "Gives a fake root environment"
SECTION = "base"
HOMEPAGE = "http://joostje.op.het.net/fakeroot/index.html"
SECTION = "base"
LICENSE = "GPL"
# fakeroot needs getopt which is provided by the util-linux package
RDEPENDS = "util-linux"
PR = "r1"
SRC_URI = "http://openzaurus.org/mirror/fakeroot_${PV}.tar.gz"
inherit autotools
do_stage() {
install -d ${STAGING_INCDIR}/fakeroot
install -m 644 *.h ${STAGING_INCDIR}/fakeroot
autotools_stage_all
}