blob: 31c640eb1cf66939001e58ad024f5da355795004 (
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
|
# Created by: msciciel
# $FreeBSD$
PORTNAME= smtp-gated
PORTVERSION= 1.4.20.0
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://software.klolik.org/smtp-gated/files/
MAINTAINER= danilo@FreeBSD.org
COMMENT= Proxy for SMTP sessions with virus and spam scan
LICENSE= GPLv2
OPTIONS_DEFINE= NAT CHUNKING ECONNRESET PCRE
OPTIONS_DEFAULT= NAT PCRE
NAT_DESC= NAT transparent proxy code
CHUNKING_DESC= Enable support for SMTP CHUNKING extension
ECONNRESET_DESC= Be quiet about Connection reset by peer message
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
PLIST_FILES= sbin/smtp-gated \
man/man5/smtp-gated.conf.5.gz \
man/man8/smtp-gated.8.gz
NAT_CONFIGURE_ENABLE= nat
CHUNKING_CONFIGURE_ENABLE= chunking
ECONNRESET_CONFIGURE_ENABLE= silent-econnreset
PCRE_CONFIGURE_OFF= --disable-pcre
PCRE_LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre
.include <bsd.port.pre.mk>
.if ${ARCH} == "powerpc"
BROKEN= Does not compile on powerpc: cannot determine endianness
.endif
.include <bsd.port.post.mk>
|