From owner-svn-ports-head@freebsd.org Thu Nov 26 08:11:24 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 27FAF4A5131; Thu, 26 Nov 2020 08:11:24 +0000 (UTC) (envelope-from mfechner@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 4ChVp40gKsz3P5h; Thu, 26 Nov 2020 08:11:24 +0000 (UTC) (envelope-from mfechner@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 0A6411FEF2; Thu, 26 Nov 2020 08:11:24 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AQ8BNwo063705; Thu, 26 Nov 2020 08:11:23 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AQ8BNi4063704; Thu, 26 Nov 2020 08:11:23 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <202011260811.0AQ8BNi4063704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 26 Nov 2020 08:11:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r556321 - head/mail/sympa X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: head/mail/sympa X-SVN-Commit-Revision: 556321 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.34 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: Thu, 26 Nov 2020 08:11:24 -0000 Author: mfechner Date: Thu Nov 26 08:11:23 2020 New Revision: 556321 URL: https://svnweb.freebsd.org/changeset/ports/556321 Log: Add postfix as build dependency. While creating a package of sympa the configure script searches for the path of postmap and if it is not found, it falls back to standard path /usr/sbin/postmap As the correct path is required, that postfix integration will not work like it is described here: https://sympa-community.github.io/manual/install/configure-mail-server-postfix.html adding postfix as a build dependency ensures that the correct path for postmap is detected and the file /usr/local/libexec/sympa/sympa_newaliases.pl will have the correct path. PR: 251143 Approved by: dgeo@centrale-marseille.fr (maintainer) Modified: head/mail/sympa/Makefile Modified: head/mail/sympa/Makefile ============================================================================== --- head/mail/sympa/Makefile Thu Nov 26 08:02:37 2020 (r556320) +++ head/mail/sympa/Makefile Thu Nov 26 08:11:23 2020 (r556321) @@ -3,6 +3,7 @@ PORTNAME= sympa DISTVERSION= 6.2.58 +PORTREVISION= 1 CATEGORIES= mail MAINTAINER= dgeo@centrale-marseille.fr @@ -11,7 +12,8 @@ COMMENT= Electronic mailing list manager LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} \ + postfix>=0:mail/postfix RUN_DEPENDS= \ p5-App-cpanminus>=0:devel/p5-App-cpanminus \ p5-Archive-Zip>=1.05:archivers/p5-Archive-Zip \