diff options
Diffstat (limited to 'abs')
| -rw-r--r-- | abs/extra/docbook-utils/PKGBUILD | 47 | ||||
| -rw-r--r-- | abs/extra/docbook-utils/docbook-utils-0.6.14-grep_fix-1.patch | 33 | ||||
| -rw-r--r-- | abs/extra/ijs/PKGBUILD | 30 | 
3 files changed, 110 insertions, 0 deletions
| diff --git a/abs/extra/docbook-utils/PKGBUILD b/abs/extra/docbook-utils/PKGBUILD new file mode 100644 index 0000000..096ead7 --- /dev/null +++ b/abs/extra/docbook-utils/PKGBUILD @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> + +# Contributor: Chris Severance aur.severach aATt spamgourmet dott com +# Contributor: Andreas B. Wagner <AndreasBWagner@pointfree.net> +# Contributor: Suat SARIALP <muhendis.suat@gmail.com> + +pkgname=docbook-utils +pkgver=0.6.14 +pkgrel=8 +pkgdesc='Shell scripts to manage DocBook documents' +arch=('any') +url="https://www.sourceware.org/docbook-tools/" +license=('GPL2') +depends=('openjade' 'docbook-dsssl' 'docbook-sgml31') +makedepends=('perl-sgmls') +optdepends=('perl-sgmls: for conversion to man and texinfo' +            'lynx: for conversion to txt' +            'texlive-htmlxml: for conversion to pdf') +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 +} diff --git a/abs/extra/docbook-utils/docbook-utils-0.6.14-grep_fix-1.patch b/abs/extra/docbook-utils/docbook-utils-0.6.14-grep_fix-1.patch new file mode 100644 index 0000000..f966697 --- /dev/null +++ b/abs/extra/docbook-utils/docbook-utils-0.6.14-grep_fix-1.patch @@ -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="" diff --git a/abs/extra/ijs/PKGBUILD b/abs/extra/ijs/PKGBUILD new file mode 100644 index 0000000..19ab821 --- /dev/null +++ b/abs/extra/ijs/PKGBUILD @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> + +pkgname=ijs +pkgver=0.35 +pkgrel=1 +pkgdesc="a library which implements a protocol for transmission of raster page images" +arch=('x86_64') +url="https://www.openprinting.org/download/ijs/" +license=('GPL') +depends=('glibc' 'sh') +makedepends=('docbook-utils' 'ghostscript') +source=("https://www.openprinting.org/download/ijs/download/ijs-$pkgver.tar.bz2") +md5sums=('896fdcb7a01c586ba6eb81398ea3f6e9') + +build() { +	cd "$pkgname-$pkgver" +	./configure --prefix=/usr \ +          --disable-static \ +          --enable-shared \ +          --mandir=/usr/share/man +	make +} + +package() { +	cd "$pkgname-$pkgver" +	make DESTDIR="$pkgdir/" install +        # install doc +        install -Dm644 ijs_spec.pdf ${pkgdir}/usr/share/doc/$pkgname/ijs_spec.pdf +} | 
