void-packages/srcpkgs/nfs-utils/template
Juan RP 5aa2f34f73 Update packages that use $openrc_services with the third argument.
Packages that can be started without modifications are enabled,
well some of them, otherwise disabled.

--HG--
extra : convert_revision : 42105adabbc02b0f07a5d7173664778a5001c739
2010-04-16 22:09:33 +02:00

37 lines
1.1 KiB
Plaintext

# Template file for 'nfs-utils'
pkgname=nfs-utils
version=1.2.0
revision=1
distfiles="http://downloads.sf.net/nfs/$pkgname-$version.tar.bz2"
build_style=gnu_configure
configure_args="--with-statduser=nobody --disable-gss --disable-nfsv4
--enable-nfsv3 --with-statedir=/var/lib/nfs --enable-mount"
short_desc="Network File System utilities"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=cb39468b3acd0bf3870cde4bbb06fe01a88e7cf0c81cff87fa7794cab871a1d1
long_desc="
The $pkgname package provides a daemon for the kernel NFS server and
related tools, which provides a much higher level of performance than the
traditional Linux NFS server used by most users."
openrc_services="
mountd default false
nfsd default false
nfslock default false"
conf_files="/etc/exports"
Add_dependency full glibc
Add_dependency full portmap
Add_dependency full libblkid
Add_dependency build tcp_wrappers
Add_dependency run tcp_wrappers-libs
post_install()
{
# Install the OpenRC services.
for f in mountd nfsd nfslock; do
install -D -m755 ${FILESDIR}/${f}.rc ${DESTDIR}/etc/init.d/${f}
done
install -D -m644 ${FILESDIR}/exports ${DESTDIR}/etc/exports
}