From c81b5b1a83946ac4c0465fc97c1447b0545690b2 Mon Sep 17 00:00:00 2001 From: Danilo Egea Gondolfo Date: Sun, 29 Sep 2013 23:36:27 +0000 Subject: [PATCH] - Change maintainer email to @FreeBSD.org - Add stage support - Use options helpers - Convert LIB_DEPENDS to new syntax Approved by: wg (mentor) --- mail/smtp-gated/Makefile | 35 +++++++++-------------------------- 1 file changed, 9 insertions(+), 26 deletions(-) diff --git a/mail/smtp-gated/Makefile b/mail/smtp-gated/Makefile index a7cee1237a3e..31c640eb1cf6 100644 --- a/mail/smtp-gated/Makefile +++ b/mail/smtp-gated/Makefile @@ -7,7 +7,7 @@ PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://software.klolik.org/smtp-gated/files/ -MAINTAINER= danilogondolfo@gmail.com +MAINTAINER= danilo@FreeBSD.org COMMENT= Proxy for SMTP sessions with virus and spam scan LICENSE= GPLv2 @@ -23,32 +23,15 @@ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -MAN5= smtp-gated.conf.5 -MAN8= smtp-gated.8 -PLIST_FILES= sbin/smtp-gated +PLIST_FILES= sbin/smtp-gated \ + man/man5/smtp-gated.conf.5.gz \ + man/man8/smtp-gated.8.gz -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MNAT} -CONFIGURE_ARGS+= --enable-nat -.else -CONFIGURE_ARGS+= --disable-nat -.endif - -.if ${PORT_OPTIONS:MCHUNKING} -CONFIGURE_ARGS+= --enable-chunking -.endif - -.if ${PORT_OPTIONS:MECONNRESET} -CONFIGURE_ARGS+= --enable-silent-econnreset -.endif - -.if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre -.else -CONFIGURE_ARGS+= --disable-pcre -.endif +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