svn commit: r556321 - head/mail/sympa

Matthias Fechner mfechner at FreeBSD.org
Thu Nov 26 08:11:24 UTC 2020


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 at 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 at 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	\


More information about the svn-ports-all mailing list