From owner-svn-ports-all@freebsd.org Thu Feb 25 20:33:44 2016 Return-Path: Delivered-To: svn-ports-all@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 D5E7DAB456B; Thu, 25 Feb 2016 20:33:44 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 8D6A07EA; Thu, 25 Feb 2016 20:33:44 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1PKXh4n076674; Thu, 25 Feb 2016 20:33:43 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1PKXhEn076671; Thu, 25 Feb 2016 20:33:43 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201602252033.u1PKXhEn076671@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Thu, 25 Feb 2016 20:33:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409557 - in head/mail: . postfix-current-sasl postfix-sasl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Feb 2016 20:33:44 -0000 Author: ohauer Date: Thu Feb 25 20:33:43 2016 New Revision: 409557 URL: https://svnweb.freebsd.org/changeset/ports/409557 Log: - add postfix SASL slave port to the tree Requested by many PR: 195662 PR: 205162 Added: head/mail/postfix-current-sasl/ head/mail/postfix-current-sasl/Makefile (contents, props changed) head/mail/postfix-sasl/ head/mail/postfix-sasl/Makefile (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Thu Feb 25 20:26:08 2016 (r409556) +++ head/mail/Makefile Thu Feb 25 20:33:43 2016 (r409557) @@ -489,12 +489,14 @@ SUBDIR += postfinger SUBDIR += postfix SUBDIR += postfix-current + SUBDIR += postfix-current-sasl SUBDIR += postfix-logwatch SUBDIR += postfix-policyd-sf SUBDIR += postfix-policyd-spf-perl SUBDIR += postfix-policyd-spf-python SUBDIR += postfix-policyd-weight SUBDIR += postfix-postfwd + SUBDIR += postfix-sasl SUBDIR += postfixadmin SUBDIR += postgrey SUBDIR += postsrsd Added: head/mail/postfix-current-sasl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/postfix-current-sasl/Makefile Thu Feb 25 20:33:43 2016 (r409557) @@ -0,0 +1,14 @@ +# $FreeBSD$ + +PKGNAMESUFFIX?= -current-sasl + +MAINTAINER= ohauer@FreeBSD.org +COMMENT= Postfix with Cyrus SASL support + +MASTERDIR= ${.CURDIR}/../postfix-current + +OPTIONS_SLAVE= SASL + +SASL_SLAVE= yes + +.include "${MASTERDIR}/Makefile" Added: head/mail/postfix-sasl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/postfix-sasl/Makefile Thu Feb 25 20:33:43 2016 (r409557) @@ -0,0 +1,14 @@ +# $FreeBSD$ + +PKGNAMESUFFIX?= -sasl + +MAINTAINER= ohauer@FreeBSD.org +COMMENT= Postfix with Cyrus SASL support + +MASTERDIR= ${.CURDIR}/../postfix + +OPTIONS_SLAVE= SASL + +SASL_SLAVE= yes + +.include "${MASTERDIR}/Makefile"