summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/texi2html/texi2html_5.0.bb
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2011-12-19 08:41:25 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-22 13:13:43 +0000
commit4890cf6ca08f54ac825b2a81b4a2d349e19210b6 (patch)
tree0020a6b291e34709f91e7f8c1ccc9999bad91c9e /meta/recipes-extended/texi2html/texi2html_5.0.bb
parent15fcdd1d48bfa20c5183766e14c89d45ea1477a6 (diff)
downloadpoky-4890cf6ca08f54ac825b2a81b4a2d349e19210b6.tar.gz
texi2html: Upgrade to 5.0
Add patch to update GETTEXT_MACRO_VERSION to 0.18 (From OE-Core rev: 9d634d7fa355918d42f5279bc2a62c183027f5fd) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/texi2html/texi2html_5.0.bb')
-rw-r--r--meta/recipes-extended/texi2html/texi2html_5.0.bb25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-extended/texi2html/texi2html_5.0.bb b/meta/recipes-extended/texi2html/texi2html_5.0.bb
new file mode 100644
index 0000000000..068f8bcde0
--- /dev/null
+++ b/meta/recipes-extended/texi2html/texi2html_5.0.bb
@@ -0,0 +1,25 @@
1DESCRIPTION = "Perl script that converts Texinfo to HTML"
2HOMEPAGE = "http://www.nongnu.org/texi2html/"
3SECTION = "console/utils"
4LICENSE = "GPLv2"
5LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
6
7PR = "r0"
8
9SRC_URI = "http://download.savannah.gnu.org/releases/texi2html/${P}.tar.bz2 \
10 file://fix_gettext_version.patch"
11
12SRC_URI[md5sum] = "f15ac876fcdc8be865b16535f480aa54"
13SRC_URI[sha256sum] = "e8a98b0ee20c495a6ab894398a065ef580272dbd5a15b1b19e8bd1bc89d9f9fa"
14
15inherit autotools gettext
16
17do_configure_prepend() {
18 # Make a directory for the old gettext setup
19 mkdir ${S}/po
20}
21
22do_configure_append() {
23 # Clean up the phony po directory
24 rm -rf ${S}/po
25}