diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-28 02:50:01 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-28 02:50:01 +0000 |
commit | 4131e12f51b57acff7449ff9a015fd57085ba8cd (patch) | |
tree | e1aaeb8fd5340e2ab8fa88f8b09bdbe4ec78e85f | |
parent | b8fbcbf83af1c65cb7bb473eb629584f18b60e13 (diff) |
Fix up sgml-common-native stage target.
BKrev: 401723594fUA7ZeSDELZHPLPDiLIZQ
-rw-r--r-- | sgml-common/sgml-common-native_0.6.3.oe | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sgml-common/sgml-common-native_0.6.3.oe b/sgml-common/sgml-common-native_0.6.3.oe index e69de29bb2..08d4807d5c 100644 --- a/sgml-common/sgml-common-native_0.6.3.oe +++ b/sgml-common/sgml-common-native_0.6.3.oe @@ -0,0 +1,26 @@ +include sgml-common_${PV}.oe +inherit native + +DEPENDS = patcher-native +FILESDIR = ${@os.path.dirname(oe.data.getVar('FILE',d,1))}/sgml-common-${PV} +S = ${WORKDIR}/sgml-common-${PV} +PACKAGES = + +do_stage () { + install -m 0755 bin/install-catalog ${STAGING_BINDIR}/ + install -m 0755 bin/sgmlwhich ${STAGING_BINDIR}/ + install -d ${STAGING_DIR}/etc + install -m 0644 config/sgml.conf ${STAGING_DIR}/etc/ + install -d ${STAGING_DIR}/share/sgml + install -m 0644 xml.dcl ${STAGING_DIR}/share/sgml/ + install -d ${STAGING_DIR}/share/xml/xml-iso-entities-8879.1986 + install -m 0644 xml-iso-entities/catalog ${STAGING_DIR}/share/sgml/xml-iso-entities-8879.1986/ + install -m 0644 xml-iso-entities/*.ent ${STAGING_DIR}/share/sgml/xml-iso-entities-8879.1986/ + install -d ${STAGING_DIR}/share/sgml/sgml-iso-entities-8879.1986 + install -m 0644 sgml-iso-entities/catalog ${STAGING_DIR}/share/sgml/sgml-iso-entities-8879.1986/ + install -m 0644 sgml-iso-entities/*.ent ${STAGING_DIR}/share/sgml/sgml-iso-entities-8879.1986/ +} + +do_install () { + : +} |