summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/groff
diff options
context:
space:
mode:
authorMingli Yu <Mingli.Yu@windriver.com>2016-09-06 10:39:37 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-20 15:11:07 +0100
commit2833b4008a587c7f3c08d667608256f26fc0d917 (patch)
tree5b7e6b04526dd4067c33412a3cddde1def708ab5 /meta/recipes-extended/groff
parente5de85169786fb9bd2ae64d79db7903505865615 (diff)
downloadpoky-2833b4008a587c7f3c08d667608256f26fc0d917.tar.gz
groff: not ship /usr/bin/glilypond
Not ship /usr/bin/glilypond and related files such as man file /usr/share/man/man1/glilypond.1 and other three files related to glilypond under /usr/lib/groff/glilypond in embedded system, it is because: - Remove the confusion about glilypond fails to run because it lacks dependency on File::HomeDir perl module - We don't often have need for sheet music conversion in groff in embedded or IoT devices (glilypond transforms sheet music written in the lilypond language into the groff language using the .PSPIC request, such that groff can transform it into a format that can be displayed directly). (From OE-Core rev: 9a0bf9567f80f06ea067189bf5c27bb5155a85b0) Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/groff')
-rw-r--r--meta/recipes-extended/groff/groff_1.22.3.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-extended/groff/groff_1.22.3.bb b/meta/recipes-extended/groff/groff_1.22.3.bb
index af5acbeb78..dd241f3f84 100644
--- a/meta/recipes-extended/groff/groff_1.22.3.bb
+++ b/meta/recipes-extended/groff/groff_1.22.3.bb
@@ -62,6 +62,11 @@ do_install_append() {
62 if [ -f ${SPECIAL_AWK} ]; then 62 if [ -f ${SPECIAL_AWK} ]; then
63 sed -i -e 's:#!.*awk:#! ${USRBINPATH}/awk:' ${SPECIAL_AWK} 63 sed -i -e 's:#!.*awk:#! ${USRBINPATH}/awk:' ${SPECIAL_AWK}
64 fi 64 fi
65
66 # not ship /usr/bin/glilypond and its releated files in embedded target system
67 rm -rf ${D}${bindir}/glilypond
68 rm -rf ${D}${libdir}/groff/glilypond
69 rm -rf ${D}${mandir}/man1/glilypond*
65} 70}
66 71
67do_install_append_class-native() { 72do_install_append_class-native() {