void-packages/srcpkgs/nfs-utils/template

88 lines
2.5 KiB
Text
Raw Normal View History

# Template file for 'nfs-utils'
pkgname=nfs-utils
2014-10-07 11:54:56 +00:00
version=1.3.1
2014-10-13 15:10:49 +00:00
revision=2
short_desc="Network File System client utilities"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2"
homepage="http://nfs.sourceforge.net"
2012-11-16 09:19:52 +00:00
distfiles="${KERNEL_SITE}/utils/${pkgname}/${version}/${pkgname}-${version}.tar.xz"
2014-10-07 11:54:56 +00:00
checksum=ff79d70b7b58b2c8f9b798c58721127e82bb96022adc04a5c4cb251630e696b8
hostmakedepends="pkg-config"
makedepends="libblkid-devel libmount-devel libtirpc-devel
librpcsecgss-devel>=0.19_3 libnfsidmap-devel>=0.25_3 keyutils-devel
libevent-devel device-mapper-devel libcap-devel mit-krb5-devel
2014-08-20 10:23:31 +00:00
libblkid-devel sqlite-devel"
depends="rpcbind"
conf_files="/etc/idmapd.conf"
2014-10-13 15:10:49 +00:00
replaces="runit-void<20141013_2"
make_dirs="
/var/lib/nfs/rpc_pipefs 0755 root root
/var/lib/nfs/sm 0750 root root"
do_configure() {
configure_args+=" --with-statduser=nobody --enable-gss --enable-nfsv4
--with-statedir=/var/lib/nfs --enable-libmount-mount
--with-gssglue --without-tcp-wrappers --enable-ipv6
--sbindir=/usr/sbin "
2013-11-13 14:14:56 +00:00
./configure ${configure_args} \
--with-tirpcinclude=$XBPS_CROSS_BASE/usr/include/tirpc \
--with-krb5=$XBPS_CROSS_BASE \
CC_FOR_BUILD="$CC" CFLAGS_FOR_BUILD="$CFLAGS"
}
do_build() {
make ${makejobs}
}
do_install() {
make DESTDIR=${DESTDIR} install
2013-04-16 08:49:17 +00:00
vmkdir usr/sbin
mv ${DESTDIR}/sbin/* ${DESTDIR}/usr/sbin
# conffiles
2014-10-13 15:10:49 +00:00
vconf ${FILESDIR}/exports
vconf ${FILESDIR}/idmapd.conf
vsv statd
# systemd glue
2014-08-20 10:23:31 +00:00
if [ "$build_option_systemd" ]; then
vmkdir usr/lib/systemd/system
install -m644 ${FILESDIR}/*.{service,mount} ${DESTDIR}/usr/lib/systemd/system
fi
2013-11-13 14:49:47 +00:00
rm -rf ${DESTDIR}/var/lib/nfs
}
nfs-utils-server_package() {
2013-11-13 14:14:56 +00:00
short_desc="Network File System utilities - Server utilities"
depends="rpcbind"
2014-10-13 15:10:49 +00:00
replaces="runit-void<20141013_2"
conf_files="/etc/exports"
make_dirs="
/var/lib/nfs/v4recovery 0755 root root
/var/lib/nfs/sm 0750 root root
/etc/exports.d 0750 root root"
pkg_install() {
2013-04-16 08:51:05 +00:00
vmove etc/exports
for f in exportfs rpc.mountd rpc.nfsd blkmapd rpc.svcgssd; do
vmove usr/sbin/${f}
[ "$f" = "blkmapd" ] && continue
2013-04-16 08:53:36 +00:00
vmove usr/share/man/man8/$(basename ${f}).8
done
2013-04-16 08:53:36 +00:00
for f in mountd nfsd svcgssd; do
vmove usr/share/man/man8/${f}.8
done
vmove usr/share/man/man5
vmove usr/share/man/man7
2014-08-20 10:23:31 +00:00
if [ "$build_option_systemd" ]; then
for f in blkmapd nfsd rpc-mountd rpc-svcgssd; do
vmove usr/lib/systemd/system/${f}.service
done
vmove usr/lib/systemd/system/proc-fs-nfsd.mount
fi
2014-10-13 15:10:49 +00:00
# runit services
vsv nfs-server
}
}