Files
poky/meta/recipes-devtools/fakeroot/fakeroot_1.14.4.bb
Richard Purdie 29d6678fd5 Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things
and is generally overwhelming. This commit splits it into several
logical sections roughly based on function, recipes.txt gives more
information about the classifications used.

The opportunity is also used to switch from "packages" to "recipes"
as used in OpenEmbedded as the term "packages" can be confusing to
people and has many different meanings.

Not all recipes have been classified yet, this is just a first pass
at separating things out. Some packages are moved to meta-extras as
they're no longer actively used or maintained.

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-08-27 15:29:45 +01:00

34 lines
1.1 KiB
BlitzBasic

DESCRIPTION = "Provides a fake \"root environment\" by means of LD_PRELOAD and SYSV IPC or TCP trickery"
HOMEPAGE = "http://fakeroot.alioth.debian.org/"
SECTION = "base"
LICENSE = "GPLv2"
# fakeroot needs getopt which is provided by the util-linux package
RDEPENDS = "util-linux"
RDEPENDS_virtclass-native = "util-linux-native"
PR = "r0"
PROVIDES += "virtual/fakeroot"
SRC_URI = "${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.orig.tar.bz2 \
file://absolutepaths.patch"
inherit autotools
do_configure_prepend() {
# fakeroot's own bootstrap includes other autoreconf stuff we don't need here
# so manually create the aux directory
mkdir -p ${S}/build-aux
}
do_install_append() {
install -d ${D}${STAGING_INCDIR}/fakeroot/
install -m 644 *.h ${D}${STAGING_INCDIR}/fakeroot
}
# Compatability for the rare systems not using or having SYSV
python () {
if bb.data.inherits_class("native", d) and bb.data.getVar('HOST_NONSYSV', d, True) and bb.data.getVar('HOST_NONSYSV', d, True) != '0':
bb.data.setVar('EXTRA_OECONF', ' --with-ipc=tcp ', d)
}
BBCLASSEXTEND = "native"