From owner-svn-ports-head@FreeBSD.ORG Sun Sep 29 23:36:28 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F0C7981A; Sun, 29 Sep 2013 23:36:27 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DCECB2E99; Sun, 29 Sep 2013 23:36:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8TNaR7v033653; Sun, 29 Sep 2013 23:36:27 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8TNaRmu033652; Sun, 29 Sep 2013 23:36:27 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201309292336.r8TNaRmu033652@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sun, 29 Sep 2013 23:36:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328760 - head/mail/smtp-gated X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Sep 2013 23:36:28 -0000 Author: danilo Date: Sun Sep 29 23:36:27 2013 New Revision: 328760 URL: http://svnweb.freebsd.org/changeset/ports/328760 Log: - Change maintainer email to @FreeBSD.org - Add stage support - Use options helpers - Convert LIB_DEPENDS to new syntax Approved by: wg (mentor) Modified: head/mail/smtp-gated/Makefile Modified: head/mail/smtp-gated/Makefile ============================================================================== --- head/mail/smtp-gated/Makefile Sun Sep 29 23:32:33 2013 (r328759) +++ head/mail/smtp-gated/Makefile Sun Sep 29 23:36:27 2013 (r328760) @@ -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 - -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 +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