blob: 648a0d888ab735823f10dea9c4453a54167aa2a2 (
plain) (
blame)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# Ports collection makefile for: sfs
# Date created: 2002-07-11
# Whom: Michael Handler <handler@grendel.net>
# Matthew Dodd <winter@jurai.net>
#
# $FreeBSD$
#
PORTNAME= sfs
PORTVERSION= 0.7.2
PORTREVISION= 10
CATEGORIES= security net
MASTER_SITES= http://www.fs.net/sfswww/dist/
MAINTAINER= malus.x@gmail.com
COMMENT= Self-Certifying File System: A secure global network file system
PLIST_SUB= SFS_VERSION=${PORTVERSION}
INFO= sfs
USE_RC_SUBR= sfscd sfssd
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-sfsuser=sfs \
--with-sfsgroup=sfs \
--with-sfsdir=/var/spool/sfs \
--with-etcdir=${PREFIX}/etc/sfs \
--disable-uvfs \
--with-gmp=${LOCALBASE}
LIB_DEPENDS+= gmp.10:${PORTSDIR}/math/gmp
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386"
IGNORE= nfsmounter component fails to execute correctly on ${ARCH} systems
.elif ${OSVERSION} >= 800000
BROKEN= does not build
.endif
MAN1= \
dirsearch.1 \
newaid.1 \
rex.1 \
sfsagent.1 \
sfskey.1 \
ssu.1
MAN5= \
sfs_config.5 \
sfs_srp_params.5 \
sfs_users.5 \
sfsauthd_config.5 \
sfscd_config.5 \
sfsrwsd_config.5 \
sfssd_config.5
MAN7= \
sfs.7
MAN8= \
funmount.8 \
sfsauthd.8 \
sfscd.8 \
sfsrwsd.8 \
sfssd.8 \
vidb.8
post-extract:
@${FIND} -E ${WRKDIR} -type f -iregex ".*\.(C|h)" -print0 | \
${XARGS} -0 ${REINPLACE_CMD} -e 's/template get/get/'
@${REINPLACE_CMD} -e 's/authsess::\(authsess\)/\1/' \
${WRKSRC}/agent/agent.h
@${REINPLACE_CMD} -e 's/\(u_int32_t val\)/\1 = 0/' \
${WRKSRC}/arpc/xdrmisc.C
@${REINPLACE_CMD} -e 's/\(errorbuf = \)""/\1const_cast<char *> ("")/' \
${WRKSRC}/async/parseopt.C
@${REINPLACE_CMD} -e 's/, \(&dummy_len\)/, (socklen_t *)\1/' \
${WRKSRC}/rex/connect.c
@${REINPLACE_CMD} -e 's/, \(&reslen\)/, (socklen_t *)\1/' \
${WRKSRC}/rex/listen.c
@${REINPLACE_CMD} -e 's/ptyclient::\(ptyclient\)/\1/' \
${WRKSRC}/rex/ptyd.C
@${REINPLACE_CMD} -e 's/\("ptyd"\)/const_cast<char *> (\1)/' \
${WRKSRC}/rex/rexd.C
@${REINPLACE_CMD} -e 's/, &sn/, (socklen_t *)\&sn/' \
${WRKSRC}/rex/uasync.c
@${REINPLACE_CMD} -e \
's/\(\\"" << cp->id << "\\"\)/const_cast<char *> (\1)/' \
${WRKSRC}/rpcc/gencfile.C
@${REINPLACE_CMD} -e 's/= fhextra =/=/' ${WRKSRC}/sfscd/ctlnode.C
@${REINPLACE_CMD} -e 's/\("-c"\)/const_cast<char *> (\1)/' \
${WRKSRC}/sfsmisc/agentmisc.C
@${REINPLACE_CMD} -e 's/\("localhost"\)/const_cast<char *> (\1)/' \
${WRKSRC}/sfsrwsd/client.C
post-configure:
@${REINPLACE_CMD} -e 's/^\(NOPAGING =\).*$$/(\1)/' \
${WRKSRC}/sfsrwcd/Makefile
pre-install:
PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PKGNAME} PRE-INSTALL
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/sfsauthd/upgradedb.pl ${PREFIX}/lib/sfs-${PORTVERSION}/upgradedb.pl
${MKDIR} ${PREFIX}/etc/sfs
${INSTALL_DATA} ${FILESDIR}/etc-sfsrwsd_config.sample ${PREFIX}/etc/sfs/sfsrwsd_config.sample
${MKDIR} ${PREFIX}/share/doc/sfs
${INSTALL_DATA} ${FILESDIR}/share-doc-WELCOME ${PREFIX}/share/doc/sfs/WELCOME
${INSTALL_DATA} ${FILESDIR}/share-doc-README ${PREFIX}/share/doc/sfs/README
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/sfs/README.packageblurb
${INSTALL_DATA} ${WRKSRC}/README.0.7-upgrade ${PREFIX}/share/doc/sfs/README.0.7-upgrade
PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PKGNAME} POST-INSTALL
.include <bsd.port.post.mk>
|