From owner-svn-ports-all@FreeBSD.ORG Mon Jun 30 17:33:22 2014 Return-Path: Delivered-To: svn-ports-all@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 A28267DE; Mon, 30 Jun 2014 17:33:22 +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 7533F2037; Mon, 30 Jun 2014 17:33:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5UHXMxV019348; Mon, 30 Jun 2014 17:33:22 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5UHXMpp019346; Mon, 30 Jun 2014 17:33:22 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201406301733.s5UHXMpp019346@svn.freebsd.org> From: Bryan Drewery Date: Mon, 30 Jun 2014 17:33:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359890 - in head/mail/dovecot: . files 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.18 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: Mon, 30 Jun 2014 17:33:22 -0000 Author: bdrewery Date: Mon Jun 30 17:33:21 2014 New Revision: 359890 URL: http://svnweb.freebsd.org/changeset/ports/359890 QAT: https://qat.redports.org/buildarchive/r359890/ Log: - Take maintainership - Attempt to limit portscout to version 1.2 - Fix rc script for one* commands [1] Not bumping PORTREVISION as the installed version doesn't change, should not affect dependent ports. PR: 177497 [1] Submitted by: nick@3wh.net [1] Modified: head/mail/dovecot/Makefile head/mail/dovecot/files/dovecot.in Modified: head/mail/dovecot/Makefile ============================================================================== --- head/mail/dovecot/Makefile Mon Jun 30 17:27:37 2014 (r359889) +++ head/mail/dovecot/Makefile Mon Jun 30 17:33:21 2014 (r359890) @@ -3,12 +3,12 @@ PORTNAME= dovecot PORTVERSION= 1.2.17 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail ipv6 MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/ \ http://www.rename-it.nl/dovecot/${PORTVERSION:R}/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bdrewery@FreeBSD.org COMMENT= Secure and compact IMAP and POP3 servers LICENSE= LGPL21 MIT @@ -31,6 +31,8 @@ CONFLICTS= dovecot2-2.[0-9].* USES= iconv libtool:keepla USE_RC_SUBR= dovecot +PORTSCOUT= limit:^1\.2 + GNU_CONFIGURE= yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --localstatedir=/var \ Modified: head/mail/dovecot/files/dovecot.in ============================================================================== --- head/mail/dovecot/files/dovecot.in Mon Jun 30 17:27:37 2014 (r359889) +++ head/mail/dovecot/files/dovecot.in Mon Jun 30 17:33:21 2014 (r359890) @@ -50,13 +50,11 @@ restart_cmd() # To start multiple instances of dovecot set dovecot_config to # a space seperated list of configuration files. -if checkyesno ${name}_enable; then - for config in ${dovecot_config}; do - required_files="${config}" - command_args="-c ${config}" - base_dir=$(${command} ${command_args} -a | /usr/bin/awk -F ': ' '/^base_dir:/ { print $2 }') - login_dir=$(${command} ${command_args} -a | /usr/bin/awk -F ': ' '/^login_dir:/ { print $2 }') - pidfile="${base_dir}/master.pid" - run_rc_command "$1" - done -fi +for config in ${dovecot_config}; do + required_files="${config}" + command_args="-c ${config}" + base_dir=$(${command} ${command_args} -a | /usr/bin/awk -F ': ' '/^base_dir:/ { print $2 }') + login_dir=$(${command} ${command_args} -a | /usr/bin/awk -F ': ' '/^login_dir:/ { print $2 }') + pidfile="${base_dir}/master.pid" + run_rc_command "$1" +done