diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /core/groff |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'core/groff')
-rw-r--r-- | core/groff/PKGBUILD | 43 | ||||
-rw-r--r-- | core/groff/groff.install | 20 | ||||
-rw-r--r-- | core/groff/site.tmac | 16 |
3 files changed, 79 insertions, 0 deletions
diff --git a/core/groff/PKGBUILD b/core/groff/PKGBUILD new file mode 100644 index 000000000..73e68b3a6 --- /dev/null +++ b/core/groff/PKGBUILD @@ -0,0 +1,43 @@ +# $Id: PKGBUILD 104541 2011-01-03 22:33:16Z tpowa $ +# Maintainer: judd <jvinet@zeroflux.org> +pkgname=groff +pkgver=1.21 +pkgrel=1 +pkgdesc="GNU troff text-formatting system" +arch=(i686 x86_64) +url="http://www.gnu.org/software/groff/groff.html" +license=('GPL') +depends=('perl' 'gcc-libs' 'texinfo') +makedepends=('netpbm' 'psutils' 'ghostscript') +optdepends=('netpbm: for use together with man -H command interaction in browsers' + 'psutils: for use together with man -H command interaction in browsers') +source=(ftp://ftp.gnu.org/gnu/groff/groff-$pkgver.tar.gz + site.tmac) +options=('!makeflags') +install=groff.install +md5sums=('8b8cd29385b97616a0f0d96d0951c5bf' + 'a1fedafd7863b37968d32ad9ae1d8c13') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --without-x + mkdir -p $pkgdir/usr + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make prefix=$pkgdir/usr install + cd $pkgdir/usr/bin + # needed for xman + ln -s eqn geqn + ln -s tbl gtbl + ln -s soelim zsoelim + rm -rf $pkgdir/usr/lib/groff/site-tmac + # Fix some issues when encoding to utf8 man pages + # The output chars don't match keyboard chars... + cat $srcdir/site.tmac >> \ + $pkgdir/usr/share/groff/site-tmac/man.local + cat $srcdir/site.tmac >> \ + $pkgdir/usr/share/groff/site-tmac/mdoc.local +} diff --git a/core/groff/groff.install b/core/groff/groff.install new file mode 100644 index 000000000..6807e4bef --- /dev/null +++ b/core/groff/groff.install @@ -0,0 +1,20 @@ +infodir=/usr/share/info +filelist=(groff.info groff.info-1 groff.info-2 groff.info-3) + +post_install() { + for file in ${filelist[@]}; do + install-info $infodir/$file $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + for file in ${filelist[@]}; do + install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +} + +# vim:set ts=2 sw=2 et: diff --git a/core/groff/site.tmac b/core/groff/site.tmac new file mode 100644 index 000000000..8ef1040ca --- /dev/null +++ b/core/groff/site.tmac @@ -0,0 +1,16 @@ +. +.if n \{\ +. \" Character translations for non-keyboard +. \" characters - to make them searchable +. if '\*[.T]'utf8' \{\ +. char \- \N'45' +. char - \N'45' +. char ' \N'39' +. char \' \N'39' +. \} +. +. \" Shut off SGR by default (groff colors) +. \" Require GROFF_SGR envvar defined to turn it on +. if '\V[GROFF_SGR]'' \ +. output x X tty: sgr 0 +.\} |