remake: Add remake-native and remake

remake is a patched version of GNU Make that adds improved error
reporting, the ability to trace execution in a comprehensible way,
and a debugger.

[YOCTO #2402]

(From OE-Core rev: 823fab378bd46da6a296a67f981dffb31b1c8061)

Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Wenzong Fan 2012-07-23 13:50:53 +08:00 committed by Richard Purdie
parent 171cb46830
commit 32ed8db131
3 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,16 @@
SUMMARY = "Makefile debugger which is gnumake 3.81 compatible"
DESCRIPTION = "remake is a patched and modernized version of GNU make \
utility that adds improved error reporting, the ability to trace \
execution in a comprehensible way, and a debugger."
HOMEPAGE = "http://bashdb.sourceforge.net/remake/"
SECTION = "devel"
SRC_URI = "git://github.com/rocky/remake.git"
inherit autotools gettext update-alternatives
ALTERNATIVE_${PN} = "make"
ALTERNATIVE_LINK_NAME[make] = "${bindir}/make"
ALTERNATIVE_TARGET[make] = "${bindir}/remake"
ALTERNATIVE_PRIORITY = "100"

View File

@ -0,0 +1,16 @@
Upstream-Status: Pending
version-remake.texi is not there but it is required by remake.texi,
just add it for getting the 'make remake.info' works.
==============================================================
diff --git a/doc/version-remake.texi b/doc/version-remake.texi
new file mode 100644
index 0000000..2a3b72b
--- /dev/null
+++ b/doc/version-remake.texi
@@ -0,0 +1,4 @@
+@set UPDATED 10 June 2012
+@set UPDATED-MONTH June 2012
+@set EDITION 3.82+dbg-0.9git
+@set VERSION 3.82+dbg-0.9git

View File

@ -0,0 +1,25 @@
PR = "r0"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://tests/COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://glob/COPYING.LIB;md5=4a770b67e6be0f60da244beb2de0fce4"
require remake.inc
SRC_URI += "file://version-remake.texi.patch"
SRCREV = "414d6e84121c6740ff5079370c905dea0f0e1ddb"
S = "${WORKDIR}/git"
DEPENDS += "readline"
PROVIDES += "make"
do_configure_prepend() {
# create config.rpath which required by configure.ac
autopoint || touch config.rpath
}
do_compile_prepend() {
# updating .po and other gnu build files
make update
}
BBCLASSEXTEND = "native"