From owner-svn-ports-head@freebsd.org Tue Sep 8 12:17:45 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F40F09CB45A; Tue, 8 Sep 2015 12:17:44 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E44E21C54; Tue, 8 Sep 2015 12:17:44 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t88CHiD7070305; Tue, 8 Sep 2015 12:17:44 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t88CHidN070304; Tue, 8 Sep 2015 12:17:44 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201509081217.t88CHidN070304@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Tue, 8 Sep 2015 12:17:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396376 - 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.20 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: Tue, 08 Sep 2015 12:17:45 -0000 Author: danfe Date: Tue Sep 8 12:17:44 2015 New Revision: 396376 URL: https://svnweb.freebsd.org/changeset/ports/396376 Log: - Remove no longer valid "BROKEN on powerpc" statement, port builds fine - Slightly improve option descriptions' wording and rearrange while here Modified: head/mail/smtp-gated/Makefile Modified: head/mail/smtp-gated/Makefile ============================================================================== --- head/mail/smtp-gated/Makefile Tue Sep 8 12:07:09 2015 (r396375) +++ head/mail/smtp-gated/Makefile Tue Sep 8 12:17:44 2015 (r396376) @@ -12,20 +12,21 @@ COMMENT= Proxy for SMTP sessions with vi 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 + man/man5/smtp-gated.conf.5.gz \ + man/man8/smtp-gated.8.gz + +OPTIONS_DEFINE= NAT CHUNKING ECONNRESET PCRE +OPTIONS_DEFAULT= NAT PCRE + +NAT_DESC= NAT transparent proxy code +CHUNKING_DESC= SMTP CHUNKING extension support +ECONNRESET_DESC= Be quiet about "Connection reset by peer" message NAT_CONFIGURE_ENABLE= nat CHUNKING_CONFIGURE_ENABLE= chunking @@ -33,10 +34,4 @@ ECONNRESET_CONFIGURE_ENABLE= silent-econ PCRE_CONFIGURE_OFF= --disable-pcre PCRE_LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre -.include - -.if ${ARCH} == "powerpc" -BROKEN= Does not compile on powerpc: cannot determine endianness -.endif - -.include +.include