4e3cfa31e5
UNFS3 is a user-space implementation of the NFSv3 server specification. It provides a daemon for the MOUNT and NFS protocols, which are used by NFS clients for accessing files on the server. Since it runs in user-space, you can use it in a jail. WWW: http://unfs3.sourceforge.net/
29 lines
553 B
Makefile
29 lines
553 B
Makefile
# New ports collection makefile for: unfs3
|
|
# Date created: Mon Feb 16
|
|
# Whom: Clement Laforet <clement@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= unfs3
|
|
PORTVERSION= 0.9.5
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= clement@FreeBSD.org
|
|
COMMENT= A user-space implementation of the NFSv3 server specification
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_BISON= YES
|
|
|
|
MAN7= tags.7
|
|
MAN8= unfsd.8
|
|
PLIST_FILES= sbin/unfsd
|
|
|
|
.if defined(WITH_CLUSTER_EXT)
|
|
CONFIGURE_ARGS+= --enable-cluster
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|