diff options
author | Scott Garman <scott.a.garman@intel.com> | 2011-02-09 19:44:21 -0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2011-02-16 07:45:19 -0800 |
commit | 1cd61f6e7dbb2f879adeba83711f21ea5bb5d312 (patch) | |
tree | 68dbb8b820899c27108b104c8579e8e48484237f | |
parent | 1e24e9c842f1f9b8e9543cc2ee2d2a85f10274e6 (diff) | |
download | openembedded-core-1cd61f6e7dbb2f879adeba83711f21ea5bb5d312.tar.gz openembedded-core-1cd61f6e7dbb2f879adeba83711f21ea5bb5d312.tar.bz2 openembedded-core-1cd61f6e7dbb2f879adeba83711f21ea5bb5d312.zip |
docbook-utils-native: new recipe v0.6.14
Recipe derived from OpenEmbedded. Starting with a -native only
version for now.
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
-rw-r--r-- | meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb new file mode 100644 index 0000000000..2263c0a982 --- /dev/null +++ b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb @@ -0,0 +1,48 @@ +SUMMARY = "Utilities for formatting and manipulating DocBook documents" +DESCRIPTION = "A collection of all the free software tools you need to \ +work on and format DocBook documents." +HOMEPAGE = "http://sources.redhat.com/docbook-tools/" +SECTION = "console/utils" +PRIORITY = "required" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" +DEPENDS = "openjade-native sgmlspl-native docbook-dsssl-stylesheets-native docbook-sgml-dtd-3.1-native" + +PR = "r0" + +SRC_URI = "ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-${PV}.tar.gz" + +SRC_URI[md5sum] = "6b41b18c365c01f225bc417cf632d81c" +SRC_URI[sha256sum] = "48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df2e92e9" + +inherit autotools native + +do_configure_prepend() { + # Fix hard-coded references to /etc/sgml + sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" bin/jw.in + sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" doc/man/Makefile.am + sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" doc/HTML/Makefile.am +} + +do_install() { + install -d ${D}${bindir} + # Install the binaries and a bunch of other commonly used names for them. + for doctype in html ps dvi man pdf rtf tex texi txt + do + install -m 0755 ${S}/bin/docbook2$doctype ${D}${bindir}/ + ln -sf docbook2x-$doctype ${D}${bindir}/db2$doctype + ln -sf docbook2$doctype ${D}${bindir}/db2$doctype + ln -sf docbook2$doctype ${D}${bindir}/docbook-to-$doctype + done + + install -m 0755 ${S}/bin/jw ${D}${bindir}/ + for i in backends/dvi backends/html backends/man \ + backends/pdf backends/ps backends/rtf backends/tex \ + backends/texi backends/txt frontends/docbook \ + helpers/docbook2man-spec.pl helpers/docbook2texi-spec.pl \ + docbook-utils.dsl + do + install -d ${D}${datadir}/sgml/docbook/utils-${PV}/`dirname $i` + install ${S}/$i ${D}${datadir}/sgml/docbook/utils-${PV}/$i + done +} |