summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/groff/PKGBUILD
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/groff/PKGBUILD
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/groff/PKGBUILD')
-rw-r--r--abs/core-testing/groff/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/abs/core-testing/groff/PKGBUILD b/abs/core-testing/groff/PKGBUILD
deleted file mode 100644
index 5183acc..0000000
--- a/abs/core-testing/groff/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: judd <jvinet@zeroflux.org>
-pkgname=groff
-pkgver=1.19.2
-pkgrel=13
-pkgdesc="GNU troff text-formatting system"
-arch=(i686 x86_64)
-url="http://www.gnu.org/software/groff/groff.html"
-license=('GPL')
-groups=('base')
-depends=('perl' 'gcc-libs')
-source=(ftp://ftp.gnu.org/gnu/groff/groff-$pkgver.tar.gz
- man-utf8.tmac)
-md5sums=('f7c9cf2e4b9967d3af167d7c9fadaae4'
- 'faefbef2b05ee5438b632464607c6cc4')
-
-build() {
- cd $startdir/src/$pkgname-$pkgver
- ./configure --prefix=/usr --without-x
- mkdir -p $startdir/pkg/usr
- make -j1 || return 1
- make prefix=$startdir/pkg/usr install
- cd $startdir/pkg/usr/bin
- # needed for xman
- ln -s eqn geqn
- ln -s tbl gtbl
- ln -s soelim zsoelim
- rm -rf $startdir/pkg/usr/lib
-
- # Fix some issues when encoding to utf8 man pages
- # The output chars don't match keyboard chars...
- cat $startdir/src/man-utf8.tmac >> \
- $startdir/pkg/usr/share/groff/site-tmac/man.local
-}