void-packages/templates/nfs-utils/template
Juan RP 9a3f2e7c3d Handle openrc_services more gracefully.
1) There's no need to specify the trigger anymore.
2) There's no need to add the OpenRC run dependency anymore.

Just specifying $openrc_services is enough.

--HG--
extra : convert_revision : 34e4d6d37a07a18837ef2216474ee0ca6fd55124
2009-05-14 21:26:44 +02:00

33 lines
1.1 KiB
Text

# Template file for 'nfs-utils'
pkgname=nfs-utils
version=1.1.6
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=9c7b4ba94cad4751604c31b9e428b0233b944fcb8ba89eebbd50e78cff73a5d5
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 nfsd default nfslock default"
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
}