blob: 952640dcbfb79b9840ea98de948cba20f31b0ad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $Id: PKGBUILD 97756 2010-11-01 19:49:14Z tpowa $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
pkgname=libtirpc
pkgver=0.2.1
pkgrel=2
pkgdesc="Transport Independent RPC library (SunRPC replacement)"
arch=(i686 x86_64)
depends=('glibc' 'libgssglue' 'heimdal')
url="http://libtirpc.sourceforge.net/"
license=('GPL2')
source=(http://downloads.sourceforge.net/sourceforge/libtirpc/$pkgname-$pkgver.tar.bz2
libtirpc-0.2.1-fortify.patch)
backup=('etc/netconfig')
options=(!libtool)
build() {
cd $srcdir/$pkgname-$pkgver
# fix http://bugs.gentoo.org/293593
# https://bugs.archlinux.org/task/20082
patch -Np1 -i ../libtirpc-0.2.1-fortify.patch
./configure --prefix=/usr --enable-gss
make || return 1
make DESTDIR=$pkgdir install || return 1
# install netconfig
install -D -m644 doc/etc_netconfig $pkgdir/etc/netconfig
}
md5sums=('d77eb15f464bf9d6e66259eaf78b2a4e'
'2e5c067f1651469dfbbdc91d3c9c60e8')
|