diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2005-12-10 18:30:41 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-12-10 18:30:41 +0000 |
commit | 58a6e347cdaf05f9a821c542f0b54921ce7285ae (patch) | |
tree | 429e2c8c19d97394f72be1a792935cf0bb87bee8 /packages/quilt | |
parent | a2bcff621fc9a6119149e54ee45aa9de0e0197fb (diff) |
quilt: Add 0.42 - I've been using this locally for a while with no issues
Diffstat (limited to 'packages/quilt')
-rw-r--r-- | packages/quilt/quilt-native_0.42.bb | 20 | ||||
-rw-r--r-- | packages/quilt/quilt_0.42.bb | 10 |
2 files changed, 30 insertions, 0 deletions
diff --git a/packages/quilt/quilt-native_0.42.bb b/packages/quilt/quilt-native_0.42.bb new file mode 100644 index 0000000000..5dabcffd74 --- /dev/null +++ b/packages/quilt/quilt-native_0.42.bb @@ -0,0 +1,20 @@ +include quilt.inc + +INHIBIT_AUTOTOOLS_DEPS = "1" + +SRC_URI = "cvs://anoncvs:@savannah.nongnu.org/cvsroot/quilt;method=ext;rsh=ssh;module=quilt;tag=VER_${@(bb.data.getVar('PV', d, 1) or '').replace('.', '_')} \ + file://install.patch;patch=1 \ + file://nostrip.patch;patch=1 \ + file://autoreconf.patch;patch=1" +S = "${WORKDIR}/quilt" + +inherit autotools native + +PATCHCLEANCMD = "" +PATCHCMD = "num='%s'; name='%s'; file='%s'; patch -p "$num" -i "$file"" +EXTRA_OECONF = "--disable-nls" + +do_configure () { + chmod 755 configure + oe_runconf +} diff --git a/packages/quilt/quilt_0.42.bb b/packages/quilt/quilt_0.42.bb new file mode 100644 index 0000000000..f04f1809ad --- /dev/null +++ b/packages/quilt/quilt_0.42.bb @@ -0,0 +1,10 @@ +include quilt.inc + +SRC_URI = "cvs://anoncvs:@savannah.nongnu.org/cvsroot/quilt;method=ext;rsh=ssh;module=quilt;tag=VER_${@(bb.data.getVar('PV', d, 1) or '').replace('.', '_')} \ + file://install.patch;patch=1 \ + file://nostrip.patch;patch=1" +S = "${WORKDIR}/quilt" + +inherit autotools gettext + +include quilt-package.inc |