Comments
Patch
@@ -198,7 +198,7 @@ PREFERRED_PROVIDER_swt3.4-gtk = "swt3.4-gtk-hildon"
PREFERRED_VERSION_swt3.4-gtk-hildon = "3.4"
# Does not build with later versions
-PREFERRED_VERSION_fakeroot-native = "1.9.6"
+PREFERRED_VERSION_fakeroot-native = "1.15.1"
# newer Versions needs newer autotools we cant relay on
PREFERRED_VERSION_guile-native = "1.8.2"
@@ -184,7 +184,7 @@ PREFERRED_PROVIDER_swt3.4-gtk = "swt3.4-gtk-hildon"
PREFERRED_VERSION_swt3.4-gtk-hildon = "3.4"
# Does not build with later versions
-PREFERRED_VERSION_fakeroot-native = "1.9.6"
+PREFERRED_VERSION_fakeroot-native = "1.15.1"
# newer Versions needs newer autotools we cant relay on
PREFERRED_VERSION_guile-native = "1.8.2"
deleted file mode 100644
@@ -1,18 +0,0 @@
---- fakeroot-1.8.3/configure.ac.orig 2007-10-31 00:17:27.000000000 -0500
-+++ fakeroot-1.8.3/configure.ac 2007-10-31 00:18:12.000000000 -0500
-@@ -1,14 +1,12 @@
- dnl Process this file with autoconf to produce a configure script.
- AC_INIT([fakeroot],[FAKEROOT_VERSION],[schizo@debian.org],[fakeroot])
- AC_PREREQ(2.61)
--LT_PREREQ(2.1a)
- AC_CANONICAL_TARGET
- AM_INIT_AUTOMAKE
- AM_MAINTAINER_MODE
- AC_CONFIG_HEADERS([config.h])
- AC_PROG_MAKE_SET
--LT_INIT
--LT_LANG(C)
-+AC_PROG_LIBTOOL
-
- AC_ARG_WITH([ipc],
- AS_HELP_STRING([--with-ipc@<:@=IPCTYPE@:>@],
deleted file mode 100644
@@ -1,18 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- fakeroot-1.2.13/scripts/fakeroot.in~fix-prefix
-+++ fakeroot-1.2.13/scripts/fakeroot.in
-@@ -15,8 +15,8 @@
- }
-
- # strip /bin/fakeroot to find install prefix
--PREFIX=@prefix@
--BINDIR=@bindir@
-+BINDIR=`dirname $0`
-+PREFIX=`dirname ${BINDIR}`
-
- LIB=lib@fakeroot_transformed@.so.0
- PATHS=@libdir@:${PREFIX}/lib64/libfakeroot:${PREFIX}/lib32/libfakeroot
new file mode 100644
@@ -0,0 +1,21 @@
+require fakeroot_${PV}.bb
+
+RDEPENDS_${PN} = "util-linux-native"
+
+SRC_URI += "file://fix-prefix.patch "
+S = "${WORKDIR}/fakeroot-${PV}"
+
+inherit native
+
+EXTRA_OECONF = " --program-prefix="
+
+# Compatability for the rare systems not using or having SYSV
+python () {
+ if bb.data.getVar('HOST_NONSYSV', d, True) and bb.data.getVar('HOST_NONSYSV', d, True) != '0':
+ bb.data.setVar('EXTRA_OECONF', ' --with-ipc=tcp --program-prefix= ', d)
+}
+
+do_stage_append () {
+ oe_libinstall -so libfakeroot ${STAGING_LIBDIR}/libfakeroot/
+}
+
deleted file mode 100644
@@ -1,21 +0,0 @@
-require fakeroot_${PV}.bb
-
-RDEPENDS_${PN} = "util-linux-native"
-
-SRC_URI += "file://fix-prefix.patch "
-S = "${WORKDIR}/fakeroot-${PV}"
-
-inherit native
-
-EXTRA_OECONF = " --program-prefix="
-
-# Compatability for the rare systems not using or having SYSV
-python () {
- if bb.data.getVar('HOST_NONSYSV', d, True) and bb.data.getVar('HOST_NONSYSV', d, True) != '0':
- bb.data.setVar('EXTRA_OECONF', ' --with-ipc=tcp --program-prefix= ', d)
-}
-
-do_stage_append () {
- oe_libinstall -so libfakeroot ${STAGING_LIBDIR}/libfakeroot/
-}
-
deleted file mode 100644
@@ -1,21 +0,0 @@
-DESCRIPTION = "Gives a fake root environment"
-HOMEPAGE = "http://fakeroot.alioth.debian.org/"
-SECTION = "base"
-LICENSE = "GPL"
-# fakeroot needs getopt which is provided by the util-linux package
-RDEPENDS_${PN} = "util-linux"
-PR = "r3"
-
-SRC_URI = "${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.tar.gz \
- file://configure-libtool.patch"
-
-inherit autotools
-
-do_stage() {
- install -d ${STAGING_INCDIR}/fakeroot
- install -m 644 *.h ${STAGING_INCDIR}/fakeroot
- autotools_stage_all
-}
-
-SRC_URI[md5sum] = "9441c981bfd4e521abcd5d93385f71d8"
-SRC_URI[sha256sum] = "06c2772ae6e446227f6798ad8994fcdb1fe64385bc83a34f7e29fd8af2e4f5da"
Fakeroot 1.9.6 was not fetchable anymore. Updating fakeroot-native to 1.15.1. Signed-off-by: Chris Verges <kg4ysn@gmail.com> --- conf/distro/chinook-compat.conf | 2 +- conf/distro/maemo5-compat.conf | 2 +- .../fakeroot-1.9.6/configure-libtool.patch | 18 ----------------- recipes/fakeroot/fakeroot-1.9.6/fix-prefix.patch | 18 ----------------- recipes/fakeroot/fakeroot-native_1.15.1.bb | 21 ++++++++++++++++++++ recipes/fakeroot/fakeroot-native_1.9.6.bb | 21 -------------------- recipes/fakeroot/fakeroot_1.9.6.bb | 21 -------------------- 7 files changed, 23 insertions(+), 80 deletions(-) delete mode 100644 recipes/fakeroot/fakeroot-1.9.6/configure-libtool.patch delete mode 100644 recipes/fakeroot/fakeroot-1.9.6/fix-prefix.patch create mode 100644 recipes/fakeroot/fakeroot-native_1.15.1.bb delete mode 100644 recipes/fakeroot/fakeroot-native_1.9.6.bb delete mode 100644 recipes/fakeroot/fakeroot_1.9.6.bb