blob: 90615471792f77d67843108130f65296bf171c14 (
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
130
131
132
133
134
135
136
137
138
139
|
# Created by: Dom Mitchell <dom@happygiraffe.net>
# $FreeBSD$
PORTNAME= ucspi-tcp
PORTVERSION= 0.88
PORTREVISION= 2
CATEGORIES= sysutils net
MASTER_SITES= http://cr.yp.to/ucspi-tcp/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= garga/ucspi-tcp
PATCH_DIST_STRIP= -p1
MAINTAINER= garga@FreeBSD.org
COMMENT= Command-line tools for building TCP client-server applications
OPTIONS_DEFINE= MANPAGES RSS_DIFF RBL2SMTPD IPV6 SSL LIMITS
OPTIONS_DEFAULT=MANPAGES
RSS_DIFF_DESC= Patch rblsmtpd for qmail users
RBL2SMTPD_DESC= Don't drop connection, pass envvar to smtpd
LIMITS_DESC= Implement per-connection and other limits
ALL_TARGET= prog install instcheck
SCRIPTS_ENV= BINOWN="${BINOWN}" \
BINGRP="${BINGRP}" \
BINMODE="${BINMODE}" \
MANMODE="${MANMODE}" \
CFLAGS="${CFLAGS}"
PROGRAMS= addcr \
argv0 \
delcr \
fixcrio \
mconnect-io \
rblsmtpd \
recordio \
tcpclient \
tcprules \
tcprulescheck \
tcpserver
SCRIPTS= date@ \
finger@ \
http@ \
mconnect \
who@ \
tcpcat
.include <bsd.port.pre.mk>
# SSL and LIMITS can't coexist
.if ${PORT_OPTIONS:MSSL} && ${PORT_OPTIONS:MLIMITS}
BROKEN= SSL and LIMITS options cannot coexist, please choose one of them
.endif
# Restrict optimization to -O - -O2 causes problems at least on amd64
.if ${ARCH} == "amd64"
CFLAGS+= -O
.endif
.if ${PORT_OPTIONS:MMANPAGES}
MASTER_SITES+= http://smarden.org/pape/djb/manpages/:man \
${MASTER_SITE_LOCAL:S/$/:man/}
MASTER_SITE_SUBDIR+= garga/ucspi-tcp/:man
DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} \
${DISTNAME}-man.tar.gz:man
MAN1= addcr.1 argv0.1 date@.1 delcr.1 finger@.1 fixcrio.1 \
http@.1 mconnect.1 rblsmtpd.1 recordio.1 tcpcat.1 \
tcpclient.1 tcprules.1 tcprulescheck.1 tcpserver.1 who@.1
.endif
.if ${PORT_OPTIONS:MRSS_DIFF}
PATCH_SITES+= http://www.qmail.org/:rss
PATCHFILES+= ucspi-rss.diff:rss
.endif
.if ${PORT_OPTIONS:MSSL}
# we can't use USE_OPENSSL=yes after including bsd.port.pre.mk
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
PATCH_SITES+= http://www.nrg4u.com/qmail/:ssl
PATCHFILES+= ucspi-tcp-ssl-20050405.patch.gz:ssl
.endif
.if ${PORT_OPTIONS:MRBL2SMTPD}
PATCHFILES+= ucspi-tcp_rbl2smtpd.diff:rbl2smtpd
.endif
.if ${PORT_OPTIONS:MLIMITS}
PATCH_SITES+= http://linux.voyager.hr/ucspi-tcp/files/:limits
PATCHFILES+= tcpserver-limits-2006-01-26.diff:limits
.endif
.if ${PORT_OPTIONS:MIPV6}
# Neither can IPv6 and SSL
. if ${PORT_OPTIONS:MSSL}
BROKEN= SSL and IPv6 options cannot coexist, please choose one of them
. endif
# Same for IPv6 and LIMITS
. if ${PORT_OPTIONS:MLIMITS}
BROKEN= IPv6 and LIMITS options cannot coexist, please choose one of them
. endif
PATCH_SITES+= http://www.fefe.de/ucspi/:ipv6
PATCHFILES+= ucspi-tcp-0.88-ipv6.diff19.bz2:ipv6
.endif
PATCH_SITES+= ${MASTER_SITE_LOCAL:S/$/:rss,ssl,rbl2smtpd/}
PATCH_SITE_SUBDIR+= garga/ucspi-tcp/:rss,ssl,rbl2smtpd
post-patch:
.if ${PORT_OPTIONS:MSSL}
@${REINPLACE_CMD} -e 's|#INCS=-I/usr/local/include|INCS=-I${OPENSSLBASE}/include|g; \
s|-lcrypto|-L${OPENSSLBASE}/lib |g' \
${WRKSRC}/Makefile
.endif
post-configure:
@${ECHO_CMD} ${PREFIX} > ${WRKSRC}/conf-home
@${ECHO_CMD} ${CC} ${CFLAGS} > ${WRKSRC}/conf-cc
@${ECHO_CMD} ${CC} -s > ${WRKSRC}/conf-ld
do-install:
.for file_name in ${PROGRAMS}
@${INSTALL_PROGRAM} ${WRKSRC}/${file_name} ${PREFIX}/bin
.endfor
.for file_name in ${SCRIPTS}
@${INSTALL_SCRIPT} ${WRKSRC}/${file_name} ${PREFIX}/bin
.endfor
.if ${PORT_OPTIONS:MMANPAGES}
. for file_name in ${MAN1}
${INSTALL_MAN} ${WRKSRC}-man/${file_name} ${MAN1PREFIX}/man/man1/
. endfor
.endif
.include <bsd.port.post.mk>
|