[arch-commits] Commit in docbook-utils/repos (3 files)

Andreas Radke andyrtr at archlinux.org
Mon Jun 20 20:02:09 UTC 2016


    Date: Monday, June 20, 2016 @ 20:02:08
  Author: andyrtr
Revision: 270390

archrelease: copy trunk to testing-any

Added:
  docbook-utils/repos/testing-any/
  docbook-utils/repos/testing-any/PKGBUILD
    (from rev 270389, docbook-utils/trunk/PKGBUILD)
  docbook-utils/repos/testing-any/docbook-utils-0.6.14-grep_fix-1.patch
    (from rev 270389, docbook-utils/trunk/docbook-utils-0.6.14-grep_fix-1.patch)

---------------------------------------+
 PKGBUILD                              |   45 ++++++++++++++++++++++++++++++++
 docbook-utils-0.6.14-grep_fix-1.patch |   33 +++++++++++++++++++++++
 2 files changed, 78 insertions(+)

Copied: docbook-utils/repos/testing-any/PKGBUILD (from rev 270389, docbook-utils/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2016-06-20 20:02:08 UTC (rev 270390)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Andreas Radke <andyrtr at archlinux.org>
+
+# Contributor: Chris Severance aur.severach aATt spamgourmet dott com
+# Contributor: Andreas B. Wagner <AndreasBWagner at pointfree.net>
+# Contributor: Suat SARIALP <muhendis.suat at gmail.com>
+
+pkgname=docbook-utils
+pkgver=0.6.14
+pkgrel=7
+pkgdesc='Shell scripts to manage DocBook documents'
+arch=('any')
+url="https://fedorahosted.org/docbook-utils/"
+license=('GPL2')
+depends=('openjade' 'docbook-dsssl' 'docbook-sgml31')
+makedepends=('perl-sgmls')
+optdepends=('perl-sgmls')
+conflicts=('docbook2x')
+source=(ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/${pkgname}-${pkgver}.tar.gz
+        docbook-utils-0.6.14-grep_fix-1.patch)
+sha256sums=('48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df2e92e9'
+            'ddf0ddca0a540fd4f34f38b7b9090f96746e37da12b4e2bf8f4174c5ad61f54a')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i ${srcdir}/docbook-utils-0.6.14-grep_fix-1.patch
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+    --sysconfdir=/etc \
+    --mandir=/usr/share/man
+  make  
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make install DESTDIR="${pkgdir}" htmldir="/usr/share/doc/${pkgname}/html"
+
+  #common alternative names
+  for doctype in 'html' 'ps' 'dvi' 'man' 'pdf' 'rtf' 'tex' 'texi' 'txt'; do
+    ln -svf "docbook2${doctype}" "${pkgdir}/usr/bin/db2${doctype}"
+  done
+}

Copied: docbook-utils/repos/testing-any/docbook-utils-0.6.14-grep_fix-1.patch (from rev 270389, docbook-utils/trunk/docbook-utils-0.6.14-grep_fix-1.patch)
===================================================================
--- testing-any/docbook-utils-0.6.14-grep_fix-1.patch	                        (rev 0)
+++ testing-any/docbook-utils-0.6.14-grep_fix-1.patch	2016-06-20 20:02:08 UTC (rev 270390)
@@ -0,0 +1,33 @@
+Submitted By: Ken Moffat <ken at linuxfromscratch dot org>
+Date: 2011-01-01
+Initial Package Version: 0.6.14
+Upstream Status: unknown
+Origin: fedora
+Description: Grep-2.7 errors out on the 'space' syntax, causing
+docbook2html to fail.  Fixed up by hand (the fedora version depends
+on a different patch which adds --color=never).
+
+diff -Naur docbook-utils-0.6.14.orig/bin/jw.in docbook-utils-0.6.14//bin/jw.in
+--- docbook-utils-0.6.14.orig/bin/jw.in	2003-04-30 17:21:49.000000000 +0100
++++ docbook-utils-0.6.14//bin/jw.in	2011-01-01 18:43:21.558959786 +0000
+@@ -80,9 +80,9 @@
+ SGML_CATALOGS_DIR="/etc/sgml"
+ if [ -f "$SGML_CONF" ]
+ then
+-  RE='^[:space:]*SGML_BASE_DIR[:space:]*=[:space:]*'
++  RE='^[[:space:]]*SGML_BASE_DIR[[:space:]]*=[[:space:]]*'
+   SGML_BASE_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
+-  RE='^[:space:]*SGML_CATALOGS_DIR[:space:]*=[:space:]*'
++  RE='^[[:space:]]*SGML_CATALOGS_DIR[[:space:]]*=[[:space:]]*'
+   SGML_CATALOGS_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
+ fi
+ 
+@@ -312,7 +312,7 @@
+ 	  SGML_CATALOG_FILES=$SGML_CENTRALIZED_CATALOG
+ 	else
+ 	  SGML_CATALOG_FILES=`find $SGML_BASE_DIR -name catalog`
+-	  SGML_CATALOG_FILES=`echo "$SGML_CATALOG_FILES" | tr [:space:] :`
++	  SGML_CATALOG_FILES=`echo "$SGML_CATALOG_FILES" | tr [[:space:]] :`
+ 	fi
+ 	;;
+   no)	SGML_CATALOG_FILES=""



More information about the arch-commits mailing list