diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/nonworking/docbook | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/nonworking/docbook')
-rw-r--r-- | packages/nonworking/docbook/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/nonworking/docbook/docbook_4.2.bb | 19 |
2 files changed, 19 insertions, 0 deletions
diff --git a/packages/nonworking/docbook/.mtn2git_empty b/packages/nonworking/docbook/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/nonworking/docbook/.mtn2git_empty diff --git a/packages/nonworking/docbook/docbook_4.2.bb b/packages/nonworking/docbook/docbook_4.2.bb index e69de29bb2..5bd2aa0e63 100644 --- a/packages/nonworking/docbook/docbook_4.2.bb +++ b/packages/nonworking/docbook/docbook_4.2.bb @@ -0,0 +1,19 @@ +SRC_URI = http://www.oasis-open.org/docbook/sgml/${PV}/docbook-${PV}.zip +S = ${WORKDIR} + +installfiles = calstblx.dtd ChangeLog dbgenent.mod dbnotnx.mod docbook.cat docbook.dtd README \ +catalog.xml dbcentx.mod dbhierx.mod dbpoolx.mod docbook.dcl docbookx.dtd soextblx.dtd + +do_stage () { + install -d ${STAGING_DIR}/share/sgml/docbook_${PV} + for i in ${installfiles}; do + install -m 0644 $i ${STAGING_DIR}/share/sgml/docbook_${PV} + done +} + +do_install () { + install -d ${D}/${datadir}/sgml/docbook_${PV} + for i in ${installfiles}; do + install -m 0644 $i ${D}/${datadir}/sgml/docbook_${PV} + done +} |