diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-21 11:44:54 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-21 11:44:54 +0000 |
commit | faedc55e301848ba76aa6df3698d0e21a8717201 (patch) | |
tree | b0c1bac2fcd028d66dec0bddf3bb65b9d7552f59 /meta/packages/fakeroot | |
parent | e423fc9d57748b50d673c044aeefd956c04affbe (diff) | |
download | poky-faedc55e301848ba76aa6df3698d0e21a8717201.tar.gz |
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
Diffstat (limited to 'meta/packages/fakeroot')
-rw-r--r-- | meta/packages/fakeroot/fakeroot-native_1.2.13.bb | 1 | ||||
-rw-r--r-- | meta/packages/fakeroot/fakeroot_1.2.13.bb | 11 |
2 files changed, 11 insertions, 1 deletions
diff --git a/meta/packages/fakeroot/fakeroot-native_1.2.13.bb b/meta/packages/fakeroot/fakeroot-native_1.2.13.bb index eb58e92b6e..9d48d65229 100644 --- a/meta/packages/fakeroot/fakeroot-native_1.2.13.bb +++ b/meta/packages/fakeroot/fakeroot-native_1.2.13.bb | |||
@@ -2,6 +2,7 @@ SECTION = "base" | |||
2 | PR = "r0" | 2 | PR = "r0" |
3 | require fakeroot_${PV}.bb | 3 | require fakeroot_${PV}.bb |
4 | inherit native | 4 | inherit native |
5 | RDEPENDS="util-linux-native" | ||
5 | 6 | ||
6 | SRC_URI += "file://fix-prefix.patch;patch=1" | 7 | SRC_URI += "file://fix-prefix.patch;patch=1" |
7 | S = "${WORKDIR}/fakeroot-${PV}" | 8 | S = "${WORKDIR}/fakeroot-${PV}" |
diff --git a/meta/packages/fakeroot/fakeroot_1.2.13.bb b/meta/packages/fakeroot/fakeroot_1.2.13.bb index 8ae7ca38be..e29cf162b4 100644 --- a/meta/packages/fakeroot/fakeroot_1.2.13.bb +++ b/meta/packages/fakeroot/fakeroot_1.2.13.bb | |||
@@ -1,8 +1,17 @@ | |||
1 | DESCRIPTION = "Gives a fake root environment" | 1 | DESCRIPTION = "Gives a fake root environment" |
2 | SECTION = "base" | ||
3 | HOMEPAGE = "http://joostje.op.het.net/fakeroot/index.html" | 2 | HOMEPAGE = "http://joostje.op.het.net/fakeroot/index.html" |
3 | SECTION = "base" | ||
4 | LICENSE = "GPL" | 4 | LICENSE = "GPL" |
5 | # fakeroot needs getopt which is provided by the util-linux package | ||
6 | RDEPENDS = "util-linux" | ||
7 | PR = "r1" | ||
5 | 8 | ||
6 | SRC_URI = "http://openzaurus.org/mirror/fakeroot_${PV}.tar.gz" | 9 | SRC_URI = "http://openzaurus.org/mirror/fakeroot_${PV}.tar.gz" |
7 | 10 | ||
8 | inherit autotools | 11 | inherit autotools |
12 | |||
13 | do_stage() { | ||
14 | install -d ${STAGING_INCDIR}/fakeroot | ||
15 | install -m 644 *.h ${STAGING_INCDIR}/fakeroot | ||
16 | autotools_stage_all | ||
17 | } | ||