diff options
author | Chris Larson <clarson@kergoth.com> | 2003-10-06 22:02:15 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-10-06 22:02:15 +0000 |
commit | 7ecef35f40180062e095587008617c96436c832b (patch) | |
tree | 302a70e131f6b19eb8c13d46c05a1dd39d9fe558 | |
parent | 63abe5646a89ebcf83e64116c340054248b8eacb (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into direwolf.ppp.ti.com:/home/kergoth/coding/projects/user/oe/packages
2003/10/06 17:02:06-05:00 ti.com!kergoth
Add and use debian's patch for genext2fs, has some bugfixes.
BKrev: 3f81e667oDWAFnrMh0aZ4sY_ycsU4Q
-rw-r--r-- | genext2fs/genext2fs-1.3.oe | 11 | ||||
-rw-r--r-- | genext2fs/genext2fs-1.3/debian.patch | 0 | ||||
-rw-r--r-- | genext2fs/genext2fs-native-1.3.oe | 11 |
3 files changed, 22 insertions, 0 deletions
diff --git a/genext2fs/genext2fs-1.3.oe b/genext2fs/genext2fs-1.3.oe index e69de29bb2..a4c85a367a 100644 --- a/genext2fs/genext2fs-1.3.oe +++ b/genext2fs/genext2fs-1.3.oe @@ -0,0 +1,11 @@ +SRC_URI := ${DEBIAN_MIRROR}/main/g/genext2fs/genext2fs_1.3.orig.tar.gz \ + file://${FILESDIR}/debian.patch;patch=1 +S := ${WORKDIR}/genext2fs-${PV}.orig + +do_compile () { + oe_runmake +} + +do_install () { + oe_runmake 'DESTDIR=${D}' install +} diff --git a/genext2fs/genext2fs-1.3/debian.patch b/genext2fs/genext2fs-1.3/debian.patch new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/genext2fs/genext2fs-1.3/debian.patch diff --git a/genext2fs/genext2fs-native-1.3.oe b/genext2fs/genext2fs-native-1.3.oe index e69de29bb2..b2fb40012a 100644 --- a/genext2fs/genext2fs-native-1.3.oe +++ b/genext2fs/genext2fs-native-1.3.oe @@ -0,0 +1,11 @@ +include genext2fs-${PV}.oe +inherit native +FILESDIR = ${TOPDIR}/genext2fs/genext2fs-${PV} + +do_stage () { + install -m 0755 genext2fs ${STAGING_BINDIR}/ +} + +do_install () { + true +} |