svn commit: r467559 - in head/mail/postgrey: . files

Kurt Jaeger pi at FreeBSD.org
Tue Apr 17 04:40:07 UTC 2018


Author: pi
Date: Tue Apr 17 04:40:06 2018
New Revision: 467559
URL: https://svnweb.freebsd.org/changeset/ports/467559

Log:
  mail/postgrey: fix files/postgrey.in for PG_* -> POSTGREY_* variables
  
  PR:		227261
  Submitted by:	Melissa Pilgrim <ports.maintainer at evilphi.com> (maintainer)
  Reported by:	Pierre Guinoiseau <pierre at guinoiseau.eu>, Paul Blazejowski <paulb at blazebox.homeip.net>

Modified:
  head/mail/postgrey/Makefile
  head/mail/postgrey/files/postgrey.in

Modified: head/mail/postgrey/Makefile
==============================================================================
--- head/mail/postgrey/Makefile	Tue Apr 17 04:17:13 2018	(r467558)
+++ head/mail/postgrey/Makefile	Tue Apr 17 04:40:06 2018	(r467559)
@@ -3,7 +3,7 @@
 
 PORTNAME=	postgrey
 PORTVERSION=	1.37
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	mail
 MASTER_SITES=	http://postgrey.schweikert.ch/pub/ \
 		http://postgrey.schweikert.ch/pub/old/

Modified: head/mail/postgrey/files/postgrey.in
==============================================================================
--- head/mail/postgrey/files/postgrey.in	Tue Apr 17 04:17:13 2018	(r467558)
+++ head/mail/postgrey/files/postgrey.in	Tue Apr 17 04:40:06 2018	(r467559)
@@ -12,7 +12,7 @@
 # postgrey_enable (bool)        Set to 'YES' to enable
 #                               Default: NO
 # postgrey_dbdir (path)         Location of postgrey database files.
-#                               Default: %%PG_DBDIR%%
+#                               Default: %%POSTGREY_DBDIR%%
 # postgrey_flags (extra args)   Additional command-line parameters.
 #                               Default: --inet=10023
 #
@@ -30,13 +30,13 @@ rcvar=postgrey_enable
 load_rc_config $name
 
 : ${postgrey_enable:=NO}
-: ${postgrey_dbdir:=%%PG_DBDIR%%}
+: ${postgrey_dbdir:=%%POSTGREY_DBDIR%%}
 : ${postgrey_flags:=--inet=10023}
 
 command=%%PREFIX%%/sbin/postgrey
 extra_commands=reload
-pidfile=%%PG_RUNDIR%%/postgrey.pid
-required_dirs="${postgrey_dbdir} %%PG_RUNDIR%%"
+pidfile=%%POSTGREY_RUNDIR%%/postgrey.pid
+required_dirs="${postgrey_dbdir} %%POSTGREY_RUNDIR%%"
 
 command_args="-d --pidfile=${pidfile} --dbdir=${postgrey_dbdir}"
 


More information about the svn-ports-head mailing list