From owner-svn-ports-head@FreeBSD.ORG Tue Jul 22 14:05:45 2014 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 ESMTPS id 34F17AAC; Tue, 22 Jul 2014 14:05:45 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0959B296E; Tue, 22 Jul 2014 14:05:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6ME5in1006632; Tue, 22 Jul 2014 14:05:44 GMT (envelope-from vsevolod@svn.freebsd.org) Received: (from vsevolod@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6ME5ihr006627; Tue, 22 Jul 2014 14:05:44 GMT (envelope-from vsevolod@svn.freebsd.org) Message-Id: <201407221405.s6ME5ihr006627@svn.freebsd.org> From: Vsevolod Stakhov Date: Tue, 22 Jul 2014 14:05:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362543 - in head/mail: exim-ldap2 exim-mysql exim-postgresql exim-sa-exim exim-sqlite 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.18 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, 22 Jul 2014 14:05:45 -0000 Author: vsevolod Date: Tue Jul 22 14:05:43 2014 New Revision: 362543 URL: http://svnweb.freebsd.org/changeset/ports/362543 QAT: https://qat.redports.org/buildarchive/r362543/ Log: Convert to OPTIONS_SLAVE. PR: 191949 Submitted by: v.chernyadev at tradesoft.ru Patch by: dumbbell Modified: head/mail/exim-ldap2/Makefile head/mail/exim-mysql/Makefile head/mail/exim-postgresql/Makefile head/mail/exim-sa-exim/Makefile head/mail/exim-sqlite/Makefile Modified: head/mail/exim-ldap2/Makefile ============================================================================== --- head/mail/exim-ldap2/Makefile Tue Jul 22 14:01:36 2014 (r362542) +++ head/mail/exim-ldap2/Makefile Tue Jul 22 14:05:43 2014 (r362543) @@ -4,6 +4,6 @@ PKGNAMESUFFIX= -ldap2 MASTERDIR= ${.CURDIR}/../exim -WITH_OPENLDAP= yes +OPTIONS_SLAVE= OPENLDAP .include "${MASTERDIR}/Makefile" Modified: head/mail/exim-mysql/Makefile ============================================================================== --- head/mail/exim-mysql/Makefile Tue Jul 22 14:01:36 2014 (r362542) +++ head/mail/exim-mysql/Makefile Tue Jul 22 14:05:43 2014 (r362543) @@ -4,6 +4,6 @@ PKGNAMESUFFIX= -mysql MASTERDIR= ${.CURDIR}/../exim -WITH_MYSQL= yes +OPTIONS_SLAVE= MYSQL .include "${MASTERDIR}/Makefile" Modified: head/mail/exim-postgresql/Makefile ============================================================================== --- head/mail/exim-postgresql/Makefile Tue Jul 22 14:01:36 2014 (r362542) +++ head/mail/exim-postgresql/Makefile Tue Jul 22 14:05:43 2014 (r362543) @@ -4,6 +4,6 @@ PKGNAMESUFFIX= -postgresql MASTERDIR= ${.CURDIR}/../exim -WITH_PGSQL= yes +OPTIONS_SLAVE= PGSQL .include "${MASTERDIR}/Makefile" Modified: head/mail/exim-sa-exim/Makefile ============================================================================== --- head/mail/exim-sa-exim/Makefile Tue Jul 22 14:01:36 2014 (r362542) +++ head/mail/exim-sa-exim/Makefile Tue Jul 22 14:05:43 2014 (r362543) @@ -6,6 +6,6 @@ MASTERDIR= ${.CURDIR}/../exim PORTVERSION?= ${EXIM_VERSION}+${SA_EXIM_VERSION} -WITH_SA_EXIM= yes +OPTIONS_SLAVE= SA_EXIM .include "${MASTERDIR}/Makefile" Modified: head/mail/exim-sqlite/Makefile ============================================================================== --- head/mail/exim-sqlite/Makefile Tue Jul 22 14:01:36 2014 (r362542) +++ head/mail/exim-sqlite/Makefile Tue Jul 22 14:05:43 2014 (r362543) @@ -4,6 +4,6 @@ PKGNAMESUFFIX= -sqlite MASTERDIR= ${.CURDIR}/../exim -WITH_SQLITE= yes +OPTIONS_SLAVE= SQLITE .include "${MASTERDIR}/Makefile"