From owner-svn-ports-head@freebsd.org Wed Jul 20 17:07:56 2016 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 9A7DFB9F3BA; Wed, 20 Jul 2016 17:07:56 +0000 (UTC) (envelope-from adamw@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 537941CBD; Wed, 20 Jul 2016 17:07:56 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6KH7tLe014733; Wed, 20 Jul 2016 17:07:55 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6KH7t7N014732; Wed, 20 Jul 2016 17:07:55 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201607201707.u6KH7t7N014732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Wed, 20 Jul 2016 17:07:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418843 - head/mail/dovecot2 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.22 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: Wed, 20 Jul 2016 17:07:56 -0000 Author: adamw Date: Wed Jul 20 17:07:55 2016 New Revision: 418843 URL: https://svnweb.freebsd.org/changeset/ports/418843 Log: Remove the SSL option and make it mandatory. I received a report that the build is broken on 9.x with SSL disabled. I think the right solution here is just to remove the SSL option entirely. I really can't think of a use-case where IMAP/POP/LMTP without TLS capability is a good idea. Plus, NetBSD and OpenBSD both have SSL mandatory. PORTREVISION bump is necessary here, because it was possible to have no SSL on 10.x with a successful build. Discussed with: Larry Rosenman, maintainer of dovecot2-pigeonhole Modified: head/mail/dovecot2/Makefile Modified: head/mail/dovecot2/Makefile ============================================================================== --- head/mail/dovecot2/Makefile Wed Jul 20 15:56:32 2016 (r418842) +++ head/mail/dovecot2/Makefile Wed Jul 20 17:07:55 2016 (r418843) @@ -14,7 +14,7 @@ PORTNAME= dovecot PORTVERSION= 2.2.25 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail ipv6 MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/ PKGNAMESUFFIX= 2 @@ -27,13 +27,14 @@ LICENSE_COMB= dual CONFLICTS= dovecot-1.[0-9]* -USES= cpe iconv libtool +USES= cpe iconv libtool ssl USE_RC_SUBR= dovecot GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var \ --with-statedir=/var/db/dovecot \ --without-shadow \ + --with-ssl=openssl \ --with-docs USE_LDCONFIG= ${PREFIX}/lib/dovecot @@ -42,8 +43,8 @@ INSTALL_TARGET= install-strip USERS= dovecot dovenull GROUPS= ${USERS} -OPTIONS_DEFINE= KQUEUE LIBWRAP LZ4 SSL VPOPMAIL DOCS EXAMPLES -OPTIONS_DEFAULT=KQUEUE SSL GSSAPI_NONE +OPTIONS_DEFINE= KQUEUE LIBWRAP LZ4 VPOPMAIL DOCS EXAMPLES +OPTIONS_DEFAULT=KQUEUE GSSAPI_NONE OPTIONS_SUB= yes OPTIONS_GROUP= DB FTS @@ -110,9 +111,6 @@ SOLR_LIB_DEPENDS= libexpat.so:textproc/e SQLITE_USES= sqlite:3 SQLITE_CONFIGURE_WITH= sqlite -SSL_USES= ssl -SSL_CONFIGURE_WITH= ssl=openssl - TEXTCAT_CONFIGURE_WITH= textcat TEXTCAT_LIB_DEPENDS= libtextcat.so:textproc/libtextcat