diff options
Diffstat (limited to 'meta/recipes-devtools/fakeroot/fakeroot_1.14.5.bb')
-rw-r--r-- | meta/recipes-devtools/fakeroot/fakeroot_1.14.5.bb | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta/recipes-devtools/fakeroot/fakeroot_1.14.5.bb b/meta/recipes-devtools/fakeroot/fakeroot_1.14.5.bb deleted file mode 100644 index 2d2604f270..0000000000 --- a/meta/recipes-devtools/fakeroot/fakeroot_1.14.5.bb +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | DESCRIPTION = "Provides a fake \"root environment\" by means of LD_PRELOAD and SYSV IPC or TCP trickery" | ||
2 | HOMEPAGE = "http://fakeroot.alioth.debian.org/" | ||
3 | SECTION = "base" | ||
4 | LICENSE = "GPLv3+" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949" | ||
6 | |||
7 | # fakeroot needs getopt which is provided by the util-linux package | ||
8 | RDEPENDS = "util-linux" | ||
9 | RDEPENDS_virtclass-native = "util-linux-native" | ||
10 | PR = "r0" | ||
11 | PROVIDES += "virtual/fakeroot" | ||
12 | |||
13 | SRC_URI = "${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.orig.tar.bz2 \ | ||
14 | file://absolutepaths.patch" | ||
15 | |||
16 | inherit autotools | ||
17 | |||
18 | do_configure_prepend() { | ||
19 | # fakeroot's own bootstrap includes other autoreconf stuff we don't need here | ||
20 | # so manually create the aux directory | ||
21 | mkdir -p ${S}/build-aux | ||
22 | } | ||
23 | |||
24 | do_install_append() { | ||
25 | install -d ${D}${includedir}/fakeroot/ | ||
26 | install -m 644 *.h ${D}${includedir}/fakeroot | ||
27 | } | ||
28 | |||
29 | # Compatability for the rare systems not using or having SYSV | ||
30 | python () { | ||
31 | if bb.data.inherits_class("native", d) and bb.data.getVar('HOST_NONSYSV', d, True) and bb.data.getVar('HOST_NONSYSV', d, True) != '0': | ||
32 | bb.data.setVar('EXTRA_OECONF', ' --with-ipc=tcp ', d) | ||
33 | } | ||
34 | |||
35 | BBCLASSEXTEND = "native" | ||
36 | |||
37 | SRC_URI[md5sum] = "659a1f3a36554abfc2a3eaad2fdc0604" | ||
38 | SRC_URI[sha256sum] = "b035c834944bf9482027f48c388de8492e96609825265ac03f05408d0b3aae68" | ||