aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/fakeroot/fakeroot_1.14.4.bb
diff options
context:
space:
mode:
authorQing He <qing.he@intel.com>2010-12-10 14:03:42 +0800
committerSaul Wold <Saul.Wold@intel.com>2010-12-10 22:01:31 -0800
commit082c4e2440582cf44fbc65ba97ba3577da95ff4b (patch)
tree01aed777a90db61e0c995b333c7ead87b2900636 /meta/recipes-devtools/fakeroot/fakeroot_1.14.4.bb
parent1901134554cd14e2ad9203452dce0cf4502b08be (diff)
downloadopenembedded-core-contrib-082c4e2440582cf44fbc65ba97ba3577da95ff4b.tar.gz
fakeroot: upgrade to version 1.14.5
from 1.14.4 changes: - install to ${includedir} instead of ${STAGING_INCDIR} - fakeroot has long been under GPLv3 Signed-off-by: Qing He <qing.he@intel.com>
Diffstat (limited to 'meta/recipes-devtools/fakeroot/fakeroot_1.14.4.bb')
-rw-r--r--meta/recipes-devtools/fakeroot/fakeroot_1.14.4.bb33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-devtools/fakeroot/fakeroot_1.14.4.bb b/meta/recipes-devtools/fakeroot/fakeroot_1.14.4.bb
deleted file mode 100644
index 4edeccfe6d..0000000000
--- a/meta/recipes-devtools/fakeroot/fakeroot_1.14.4.bb
+++ /dev/null
@@ -1,33 +0,0 @@
-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"