blob: 46b204687a5f7e881e920f7d9d791b36df117f82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# $NetBSD: Makefile,v 1.4 2008/08/12 20:15:11 tnn Exp $
#
DISTNAME= unfs3-0.9.21
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=unfs3/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://unfs3.sourceforge.net/
COMMENT= Userspace NFSv3 server
GNU_CONFIGURE= yes
PKG_DESTDIR_SUPPORT= user-destdir
CONF_FILES+= ${PREFIX}/share/examples/unfs3/exports \
${PKG_SYSCONFDIR}/exports
RCD_SCRIPTS= unfsd
INSTALLATION_DIRS+= share/examples/unfs3
SUBST_CLASSES+= exports
SUBST_STAGE.exports= pre-configure
SUBST_MESSAGE.exports= Fixing path to exports(5)
SUBST_FILES.exports= daemon.c unfsd.8
SUBST_SED.exports= -e 's,/etc/exports,${PKG_SYSCONFDIR}/exports,g'
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "NetBSD"
BUILDLINK_TRANSFORM+= rm:-lrpcsoc
CPPFLAGS+= -Dxp_sock=xp_fd
.endif
post-install:
${INSTALL_DATA} ${FILESDIR}/exports \
${DESTDIR}${PREFIX}/share/examples/unfs3
.include "../../mk/bsd.pkg.mk"
|