diff options
author | Robert Schuster <thebohemian@gmx.net> | 2007-12-31 11:50:13 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2007-12-31 11:50:13 +0000 |
commit | 4875f9bd2c47f8cdc40c5fd70012e262f8be4934 (patch) | |
tree | 9ca93b2b8e7c1b6dd091490ad33119df0e4fe4f0 /packages/sgml-common/sgml-common-native_0.6.3.bb | |
parent | 275f358d054ba5c4721cfe87edaec8202ee8095e (diff) |
PR 3656
docbook-dsssl-stylesheets-native: New recipe.
docbook-sgml-dtd-native: New recipe.
docbook-utils-native 0.6.14: Added recipe for new version.
docbook-utils 0.6.14: Added recipe for new version.
openjade-native: Made functional from native staging location
- fixed compilation error
opensp-native: Made functional from native staging location.
sgml-common-native 0.6.3: Made functional from native staging location.
sgml-common 0.6.3: Added pkginstall and pkgpostinstall.
Diffstat (limited to 'packages/sgml-common/sgml-common-native_0.6.3.bb')
-rw-r--r-- | packages/sgml-common/sgml-common-native_0.6.3.bb | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/packages/sgml-common/sgml-common-native_0.6.3.bb b/packages/sgml-common/sgml-common-native_0.6.3.bb index 749e26a500..873de8021b 100644 --- a/packages/sgml-common/sgml-common-native_0.6.3.bb +++ b/packages/sgml-common/sgml-common-native_0.6.3.bb @@ -8,18 +8,29 @@ 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/ + # For unknown reasons 'make install' does not work. + install -m 0755 bin/install-catalog ${STAGING_BINDIR_NATIVE}/ + install -m 0755 bin/sgmlwhich ${STAGING_BINDIR_NATIVE}/ + + install -d ${sysconfdir}/sgml + install -m 0644 config/sgml.conf ${sysconfdir}/sgml + install -d ${STAGING_DATADIR}/sgml install -m 0644 xml.dcl ${STAGING_DATADIR}/sgml/ - install -d ${STAGING_DATADIR}/xml/xml-iso-entities-8879.1986 - install -m 0644 xml-iso-entities/catalog ${STAGING_DATADIR}/xml/xml-iso-entities-8879.1986/ - install -m 0644 xml-iso-entities/*.ent ${STAGING_DATADIR}/xml/xml-iso-entities-8879.1986/ + + install -d ${STAGING_DATADIR}/sgml/xml-iso-entities-8879.1986 + install -m 0644 xml-iso-entities/catalog ${STAGING_DATADIR}/sgml/xml-iso-entities-8879.1986/ + install -m 0644 xml-iso-entities/*.ent ${STAGING_DATADIR}/sgml/xml-iso-entities-8879.1986/ install -d ${STAGING_DATADIR}/sgml/sgml-iso-entities-8879.1986 install -m 0644 sgml-iso-entities/catalog ${STAGING_DATADIR}/sgml/sgml-iso-entities-8879.1986/ install -m 0644 sgml-iso-entities/*.ent ${STAGING_DATADIR}/sgml/sgml-iso-entities-8879.1986/ + + install-catalog \ + --add ${sysconfdir}/sgml/sgml-ent.cat ${STAGING_DATADIR}/sgml/sgml-iso-entities-8879.1986/catalog + + install-catalog \ + --add ${sysconfdir}/sgml/sgml-docbook.cat ${sysconfdir}/sgml/sgml-ent.cat + } do_install () { |