diff options
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/groff/groff_1.19.2.bb | 1 | ||||
-rw-r--r-- | recipes/groff/groff_1.20.1.bb | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/recipes/groff/groff_1.19.2.bb b/recipes/groff/groff_1.19.2.bb index 22afab2d98..a5d8766e1c 100644 --- a/recipes/groff/groff_1.19.2.bb +++ b/recipes/groff/groff_1.19.2.bb @@ -27,6 +27,7 @@ do_configure() { do_install_prepend() { install -m 0755 -d ${D} } +BBCLASSEXTEND = "native" SRC_URI[md5sum] = "f7c9cf2e4b9967d3af167d7c9fadaae4" SRC_URI[sha256sum] = "d864fbd0bf6dea24e4f71736da9902a1cae86d0a1a893b5fe17118927257ec3e" diff --git a/recipes/groff/groff_1.20.1.bb b/recipes/groff/groff_1.20.1.bb new file mode 100644 index 0000000000..bb613e8bab --- /dev/null +++ b/recipes/groff/groff_1.20.1.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "GNU roff" +SECTION = "base" +LICENSE = "GPL" +PR = "r0" + +SRC_URI = "http://ftp.gnu.org/gnu/groff/groff-${PV}.tar.gz \ + " +SRC_URI[md5sum] = "48fa768dd6fdeb7968041dd5ae8e2b02" +SRC_URI[sha256sum] = "b645878135cb620c6c417c5601bfe96172245af12045540d7344938b4c2cd805" + +inherit autotools + +do_configure_prepend(){ + sed -i \ + -e '/^GROFFBIN=/s:=.*:=echo:' \ + -e '/^TROFFBIN=/s:=.*:=echo:' \ + -e '/^GROFF_BIN_PATH=/s:=.*:=:' \ + -e '/^GROFF_BIN_DIR=/s:=.*:=:' \ + ${S}/contrib/*/Makefile.sub \ + ${S}/doc/Makefile.in \ + ${S}/doc/Makefile.sub +} + +BBCLASSEXTEND = "native" |