blob: d751a18e6957e47573eb859d53022537beeec3ed (
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
|
# New ports collection makefile for: coda-server-6
# Date created: 9 september 2003
# Whom: Tim Robbins
# $FreeBSD$
PORTNAME= coda
PORTVERSION= 6.9.1
CATEGORIES= net
# as of 5 Oct 2006 the archive is not present on ftp.wu-wien.ac.at
# but maybe it'll appear there soon
MASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/coda/src/ \
ftp://ftp.planetmirror.com/pub/coda/src/ \
ftp://ftp.nctu.edu.tw/mirror/Coda/src/ \
ftp://ftp.wu-wien.ac.at/pub/systems/coda/src/
PKGNAMESUFFIX= -${CODA_SUITE}
MAINTAINER= ports@FreeBSD.org
COMMENT= Server programs for a replicated high-performance network file system
LIB_DEPENDS= lwp.2:${PORTSDIR}/devel/lwp \
rpc2.8:${PORTSDIR}/devel/rpc2 \
rvm.3:${PORTSDIR}/devel/rvm
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --mandir=${PREFIX}/man
ALL_TARGET= coda
INSTALL_TARGET= ${CODA_SUITE}-install
CODA_SUITE?= server
.if ${CODA_SUITE} == server
MAN5= backuplogs.5 \
dumpfile.5 \
dumplist.5 \
maxgroupid.5 \
passwd.coda.5 \
servers.5 \
vicetab.5 \
volumelist.5 \
vrdb.5
MAN8= auth2.8 \
backup.8 \
bldvldb.sh.8 \
codasrv.8 \
createvol_rep.8 \
initpw.8 \
merge.8 \
norton.8 \
pdbtool.8 \
purgevol_rep.8 \
readdump.8 \
startserver.8 \
updateclnt.8 \
updatesrv.8 \
vice-setup.8 \
volutil.8
.else
MAN1= au.1 \
cfs.1 \
clog.1 \
cmon.1 \
coda_replay.1 \
cpasswd.1 \
ctokens.1 \
cunlog.1 \
hoard.1 \
mkcodabf.1 \
repair.1 \
spy.1
MAN8= venus-setup.8 \
venus.8 \
volmunge.8 \
vutil.8
.endif
.include <bsd.port.pre.mk>
.if ${CODA_SUITE} == client
.if ${OSVERSION} < 501106
IGNORE= lacks kernel support on this version of FreeBSD
.endif
# this needs testing with the new version (6.1.1)
#.if ${OSVERSION} >= 600000
#IGNORE= makes a kernel panic on this version of FreeBSD
#.endif
pre-everything::
@${ECHO_CMD} ""
@${ECHO_CMD} "WARNING:"
@${ECHO_CMD} "This version ${PORTVERSION} of the coda client has not been tested at all under FreeBSD."
@${ECHO_CMD} "Previous version 6.0.7 was known to cause a kernel panic."
@${ECHO_CMD} "If you make some tests, please send the results to ports@FreeBSD.org"
@${ECHO_CMD} ""
.endif
.include <bsd.port.post.mk>
|