Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Nov 2020 08:11:23 +0000 (UTC)
From:      Matthias Fechner <mfechner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r556321 - head/mail/sympa
Message-ID:  <202011260811.0AQ8BNi4063704@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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	\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011260811.0AQ8BNi4063704>