diff options
author | Britney Fransen <brfransen@gmail.com> | 2018-02-15 20:50:44 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2018-02-15 20:50:44 (GMT) |
commit | 85af7820ddf206711d890bdbd707c396824aac15 (patch) | |
tree | 8f5027cff84c69e8c6fec299b63e1ed87afc3cc3 /abs/extra/docbook-sgml31 | |
parent | a593241481b9b2c8e2cc74b2587f73d0265670eb (diff) | |
download | linhes_pkgbuild-85af7820ddf206711d890bdbd707c396824aac15.zip linhes_pkgbuild-85af7820ddf206711d890bdbd707c396824aac15.tar.gz linhes_pkgbuild-85af7820ddf206711d890bdbd707c396824aac15.tar.bz2 |
docbook-sgml31: initial inclusion. dep of dockbook-utils
Diffstat (limited to 'abs/extra/docbook-sgml31')
-rw-r--r-- | abs/extra/docbook-sgml31/PKGBUILD | 38 | ||||
-rw-r--r-- | abs/extra/docbook-sgml31/docbook-sgml31.install | 42 |
2 files changed, 80 insertions, 0 deletions
diff --git a/abs/extra/docbook-sgml31/PKGBUILD b/abs/extra/docbook-sgml31/PKGBUILD new file mode 100644 index 0000000..d2a61d3 --- /dev/null +++ b/abs/extra/docbook-sgml31/PKGBUILD @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> + +# Contributor: Chris Severance aur.severach aATt spamgourmet dott com +# Contributor: Andreas B. Wagner <AndreasBWagner@gmail.com> + +pkgname=docbook-sgml31 +pkgver=3.1 +pkgrel=2 +pkgdesc="Legacy docbook-sgml" +arch=('any') +url='http://www.docbook.org/sgml/' +license=('MIT') +depends=('sgml-common') +install=$pkgname.install +source=("http://www.docbook.org/sgml/${pkgver}/docbk31.zip") +sha256sums=('20261d2771b9a052abfa3d8fab1aa62be05791a010281c566f9073bf0e644538') + +build() { + cd "$srcdir" + # This command removes the ENT definitions from the catalog file. + # This command replaces the DTDDECL catalog entry, which is not supported by Linux SGML tools, + # with the SGMLDECL catalog entry. + sed -i -e '/ISO 8879/d' \ + -e 's|DTDDECL "-//OASIS//DTD DocBook V3.1//EN"|SGMLDECL|g' \ + docbook.cat +} + +package() { + cd "$srcdir" + + local DTDDIR="usr/share/sgml/docbook-sgml-${pkgver}" + + install -dm755 "$pkgdir/$DTDDIR" + install -m644 docbook.cat "$pkgdir/$DTDDIR/catalog" + install -m644 *.dtd *.mod *.dcl "$pkgdir/$DTDDIR" +} + diff --git a/abs/extra/docbook-sgml31/docbook-sgml31.install b/abs/extra/docbook-sgml31/docbook-sgml31.install new file mode 100644 index 0000000..30f028a --- /dev/null +++ b/abs/extra/docbook-sgml31/docbook-sgml31.install @@ -0,0 +1,42 @@ +# arg 1: the new package version +post_install() { + add_catalog "${1%-*}" +} + +# arg 1: the new package version +# arg 2: the old package version +pre_upgrade() { + remove_catalog "${2%-*}" +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + add_catalog "${1%-*}" +} + +# arg 1: the old package version +pre_remove() { + remove_catalog "${1%-*}" +} +add_catalog() { + install-catalog --add /etc/sgml/sgml-docbook-dtd-$1.cat \ + /usr/share/sgml/docbook-sgml-$1/catalog > /dev/null 2>&1 + + install-catalog --add /etc/sgml/sgml-docbook-dtd-$1.cat \ + /etc/sgml/sgml-docbook.cat > /dev/null 2>&1 +} + +remove_catalog() { + install-catalog --remove /etc/sgml/sgml-docbook-dtd-$1.cat \ + /usr/share/sgml/docbook-sgml-$1/catalog > /dev/null 2>&1 + + install-catalog --remove /etc/sgml/sgml-docbook-dtd-$1.cat \ + /etc/sgml/sgml-docbook.cat > /dev/null 2>&1 +} +op=$1 +shift +$op "$@" + +# vim:set syntax=sh ts=4 sw=4 noet: + |