From owner-svn-ports-head@freebsd.org Tue Jun 2 14:59:42 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0F1B02F18B6; Tue, 2 Jun 2020 14:59:42 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49bwDs6bqCz43ZQ; Tue, 2 Jun 2020 14:59:41 +0000 (UTC) (envelope-from mandree@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DDFA31E4FE; Tue, 2 Jun 2020 14:59:41 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 052Exfd2035933; Tue, 2 Jun 2020 14:59:41 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 052ExfvH035932; Tue, 2 Jun 2020 14:59:41 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <202006021459.052ExfvH035932@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Tue, 2 Jun 2020 14:59:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r537562 - head/mail/mailfromd X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/mail/mailfromd X-SVN-Commit-Revision: 537562 X-SVN-Commit-Repository: ports 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.33 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, 02 Jun 2020 14:59:42 -0000 Author: mandree Date: Tue Jun 2 14:59:41 2020 New Revision: 537562 URL: https://svnweb.freebsd.org/changeset/ports/537562 Log: mail/mailfromd: mark compatible with BDB 5+, add gnutls requisite The gnutls dependency wasn't listed, and it appears that if the requisite mail/mailutils is compiled against db5, then mailfromd compiles fine. Bump PORTREVISION while here. Reported by: vd@ Modified: head/mail/mailfromd/Makefile Modified: head/mail/mailfromd/Makefile ============================================================================== --- head/mail/mailfromd/Makefile Tue Jun 2 14:53:24 2020 (r537561) +++ head/mail/mailfromd/Makefile Tue Jun 2 14:59:41 2020 (r537562) @@ -3,7 +3,7 @@ PORTNAME= mailfromd PORTVERSION= 8.5 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= mail MASTER_SITES= http://download.gnu.org.ua/pub/release/${PORTNAME}/ \ http://download.gnu.org.ua/pub/alpha/${PORTNAME}/ @@ -14,7 +14,8 @@ COMMENT= Mail filtering daemon for Sendmail, Postfix, LICENSE= GPLv3+ LIB_DEPENDS= libmailutils.so:mail/mailutils \ - libadns.so:dns/adns + libadns.so:dns/adns \ + libgnutls.so:security/gnutls USES= gmake localbase readline tar:xz GNU_CONFIGURE= yes @@ -53,11 +54,10 @@ DSPAM_CONFIGURE_WITH= dspam NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls -BDB_USES= bdb:48 +BDB_USES= bdb BDB_CONFIGURE_WITH= berkeley-db BDB_CPPFLAGS= -I${BDB_INCLUDE_DIR} BDB_LDFLAGS= -L${BDB_LIB_DIR} -INVALID_BDB_VER= 5+ GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm GDBM_CONFIGURE_WITH= gdbm