mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
83 lines
2.9 KiB
Bash
83 lines
2.9 KiB
Bash
# $Id: PKGBUILD 139844 2011-10-05 07:58:31Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
# Contributor: John Proctor <jproctor@prium.net>
|
|
# Contributor: dibblethewrecker <dibblethewrecker.at.jiwe.org>
|
|
# Contributor: abelstr <abel@pinklf.eu>
|
|
# Contributor: Marco Lima <cipparello gmail com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch to not use PAGESIZE - not implemented for ARM
|
|
|
|
plugrel=1
|
|
|
|
pkgname=nfs-utils
|
|
pkgver=1.2.5
|
|
pkgrel=2
|
|
pkgdesc="Support programs for Network File Systems"
|
|
arch=('i686' 'x86_64')
|
|
url='http://nfs.sourceforge.net'
|
|
license=('GPL')
|
|
backup=(etc/{exports,idmapd.conf} etc/conf.d/{nfs-common.conf,nfs-server.conf})
|
|
depends=('glibc' 'e2fsprogs' 'rpcbind' 'libtirpc>=0.2.1' 'librpcsecgss>=0.19-2' 'nfsidmap' 'libevent>=2.0.10' 'libgssglue' 'device-mapper')
|
|
makedepends=('pkgconfig' 'autoconf' 'automake')
|
|
source=(http://downloads.sourceforge.net/project/nfs/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2
|
|
nfs-common
|
|
nfs-common.conf
|
|
nfs-server
|
|
nfs-server.conf
|
|
exports
|
|
idmapd.conf
|
|
start-statd.patch
|
|
nfs-utils-1.1.4-mtab-sym.patch
|
|
nfs-utils-1.1.4-no-exec.patch
|
|
18-dont-use-PAGE_SIZE.patch)
|
|
install=nfs-utils.install
|
|
md5sums=('8395ac770720b83c5c469f88306d7765'
|
|
'dd0d65fc6e8f422fa12520813098264b'
|
|
'f73f197a16b02c3e248488ec35c4cf43'
|
|
'e619f18354ff958ed624d05d08853d8f'
|
|
'9cef69bc686cc5dcac23fbb51450747d'
|
|
'ff585faf410a62c4333a027c50b56bae'
|
|
'eb4f4027fab6fc1201f1ca04f5954c76'
|
|
'e9144277a89a620d9bc80413158a7d27'
|
|
'7674106eaaa4c149bccd4f05fe3604e9'
|
|
'4f4827dfc93008dfadd0a530ad0872b2'
|
|
'1a56922af585f4cc3ec4e7504f00c3a2')
|
|
|
|
build() {
|
|
cd $srcdir/${pkgname}-${pkgver}
|
|
patch -Np1 -i ../nfs-utils-1.1.4-mtab-sym.patch
|
|
#patch -Np1 -i ../nfs-utils-1.1.4-no-exec.patch
|
|
# arch specific patch
|
|
patch -Np0 -i $srcdir/start-statd.patch
|
|
|
|
# ALARM
|
|
patch -Np1 -i ../18-dont-use-PAGE_SIZE.patch
|
|
|
|
./configure --prefix=/usr --enable-nfsv3 --enable-nfsv4 --enable-gss \
|
|
--without-tcp-wrappers --with-statedir=/var/lib/nfs \
|
|
--enable-ipv6 --sysconfdir=/etc --enable-libmount-mount
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/${pkgname}-${pkgver}
|
|
make DESTDIR=$pkgdir install
|
|
|
|
# support python2 (FS#25120)
|
|
sed -i '1s/python$/python2/' "$pkgdir"/usr/sbin/{nfsiostat,mountstats}
|
|
|
|
# NFS & NFSv4 init scripts
|
|
install -D -m 755 ../nfs-common "$pkgdir/"etc/rc.d/nfs-common
|
|
install -D -m 755 ../nfs-server "$pkgdir/"etc/rc.d/nfs-server
|
|
# Configuration
|
|
install -D -m 644 ../exports "$pkgdir/"etc/exports
|
|
install -D -m 644 ../idmapd.conf "$pkgdir/"etc/idmapd.conf
|
|
install -D -m 644 ../nfs-common.conf "$pkgdir/"etc/conf.d/nfs-common.conf
|
|
install -D -m 644 ../nfs-server.conf "$pkgdir/"etc/conf.d/nfs-server.conf
|
|
# directories
|
|
mkdir "$pkgdir/"etc/exports.d
|
|
mkdir "$pkgdir/"var/lib/nfs/rpc_pipefs
|
|
mkdir "$pkgdir/"var/lib/nfs/v4recovery
|
|
}
|