Wed May 15 10:57:04 2024 UTC (32d)
courier-mta: fix interpreter paths in installed files

Bump PKGREVISION.


(wiz)
diff -r1.68 -r1.69 pkgsrc/mail/courier-mta/Makefile
diff -r1.12 -r1.13 pkgsrc/mail/courier-mta/PLIST

cvs diff -r1.68 -r1.69 pkgsrc/mail/courier-mta/Makefile (expand / switch to unified diff)

--- pkgsrc/mail/courier-mta/Makefile 2024/04/18 06:53:15 1.68
+++ pkgsrc/mail/courier-mta/Makefile 2024/05/15 10:57:04 1.69
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1# $NetBSD: Makefile,v 1.68 2024/04/18 06:53:15 wiz Exp $ 1# $NetBSD: Makefile,v 1.69 2024/05/15 10:57:04 wiz Exp $
2 2
3DISTNAME= courier-${COURIER_VERSION} 3DISTNAME= courier-${COURIER_VERSION}
4PKGNAME= ${DISTNAME:S/-/-mta-/} 4PKGNAME= ${DISTNAME:S/-/-mta-/}
5PKGREVISION=  5PKGREVISION= 1
6CATEGORIES= mail 6CATEGORIES= mail
7 7
8CONFLICTS+= esmtp>=1.2 postfix-[0-9]* qmail-[0-9]* sendmail-[0-9]* 8CONFLICTS+= esmtp>=1.2 postfix-[0-9]* qmail-[0-9]* sendmail-[0-9]*
9 9
10MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
11COMMENT= Courier mail transport agent 11COMMENT= Courier mail transport agent
12HOMEPAGE= https://www.courier-mta.org/ 12HOMEPAGE= https://www.courier-mta.org/
13 13
14DEPENDS+= courier-maildir>=${COURIER_VERSION}:../../mail/courier-maildir 14DEPENDS+= courier-maildir>=${COURIER_VERSION}:../../mail/courier-maildir
15DEPENDS+= couriertcpd>=${COURIER_VERSION}:../../net/couriertcpd 15DEPENDS+= couriertcpd>=${COURIER_VERSION}:../../net/couriertcpd
16DEPENDS+= maildrop>=2.5.0:../../mail/maildrop 16DEPENDS+= maildrop>=2.5.0:../../mail/maildrop
17DEPENDS+= gnupg2-[0-9]*:../../security/gnupg2 17DEPENDS+= gnupg2-[0-9]*:../../security/gnupg2
18DEPENDS+= wget-[0-9]*:../../net/wget 18DEPENDS+= wget-[0-9]*:../../net/wget
@@ -65,27 +65,29 @@ SUBST_FILES.courier= \ @@ -65,27 +65,29 @@ SUBST_FILES.courier= \
65SUBST_SED.courier= -e "s|^ESMTPDSTART=.*|ESMTPDSTART=YES|g" 65SUBST_SED.courier= -e "s|^ESMTPDSTART=.*|ESMTPDSTART=YES|g"
66SUBST_SED.courier+= -e "s|^ESMTPDSSLSTART=.*|ESMTPDSSLSTART=YES|g" 66SUBST_SED.courier+= -e "s|^ESMTPDSSLSTART=.*|ESMTPDSSLSTART=YES|g"
67SUBST_SED.courier+= -e "s|@mydatadir@|@sysconfdir@|g" 67SUBST_SED.courier+= -e "s|@mydatadir@|@sysconfdir@|g"
68SUBST_SED.courier+= -e "s|@datadir@/esmtpd.pem|@sysconfdir@/esmtpd.pem|g" 68SUBST_SED.courier+= -e "s|@datadir@/esmtpd.pem|@sysconfdir@/esmtpd.pem|g"
69SUBST_SED.courier+= -e "s|@datadir@/esmtpd.rand|@sysconfdir@/esmtpd.rand|g" 69SUBST_SED.courier+= -e "s|@datadir@/esmtpd.rand|@sysconfdir@/esmtpd.rand|g"
70SUBST_SED.courier+= -e "s|@libexecdir@/filters|@libexecdir@/courier/filters|g" 70SUBST_SED.courier+= -e "s|@libexecdir@/filters|@libexecdir@/courier/filters|g"
71SUBST_STAGE.courier= pre-configure 71SUBST_STAGE.courier= pre-configure
72 72
73SUBST_CLASSES+= paths 73SUBST_CLASSES+= paths
74SUBST_FILES.paths= ${WRKDIR}/mailer.conf 74SUBST_FILES.paths= ${WRKDIR}/mailer.conf
75SUBST_VARS.paths= PREFIX 75SUBST_VARS.paths= PREFIX
76SUBST_STAGE.paths= pre-configure 76SUBST_STAGE.paths= pre-configure
77 77
78REPLACE_PERL+= courier/webadmin/*.pl courier/webadmin/*.pl.in webadmin/*.pl 78REPLACE_PERL+= courier/webadmin/*.pl courier/webadmin/*.pl.in webadmin/*.pl courier/filters/perlfilter/*.pl
 79
 80CHECK_WRKREF_SKIP+= bin/courier-config
79 81
80SPECIAL_PERMS+= ${DATADIR}/filterctl ${COURIER_USER} ${COURIER_GROUP} 0500 82SPECIAL_PERMS+= ${DATADIR}/filterctl ${COURIER_USER} ${COURIER_GROUP} 0500
81SPECIAL_PERMS+= ${PREFIX}/sbin/courierfilter ${COURIER_USER} \ 83SPECIAL_PERMS+= ${PREFIX}/sbin/courierfilter ${COURIER_USER} \
82 ${COURIER_GROUP} 0500 84 ${COURIER_GROUP} 0500
83 85
84LIBS.SunOS+= -lsocket -lnsl 86LIBS.SunOS+= -lsocket -lnsl
85 87
86.include "../../lang/perl5/buildlink3.mk" 88.include "../../lang/perl5/buildlink3.mk"
87.include "../../security/courier-authlib/buildlink3.mk" 89.include "../../security/courier-authlib/buildlink3.mk"
88 90
89post-extract: 91post-extract:
90 ${CP} ${FILESDIR}/mailer.conf ${WRKDIR}/mailer.conf 92 ${CP} ${FILESDIR}/mailer.conf ${WRKDIR}/mailer.conf
91 93

cvs diff -r1.12 -r1.13 pkgsrc/mail/courier-mta/PLIST (expand / switch to unified diff)

--- pkgsrc/mail/courier-mta/PLIST 2024/02/12 21:06:43 1.12
+++ pkgsrc/mail/courier-mta/PLIST 2024/05/15 10:57:04 1.13
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.12 2024/02/12 21:06:43 hans Exp $ 1@comment $NetBSD: PLIST,v 1.13 2024/05/15 10:57:04 wiz Exp $
2bin/cancelmsg 2bin/cancelmsg
3bin/courier-config 3bin/courier-config
4bin/couriermlm 4bin/couriermlm
5bin/dotforward 5bin/dotforward
6bin/mailq 6bin/mailq
7bin/rmail 7bin/rmail
8bin/sendmail 8bin/sendmail
9bin/testmxlookup 9bin/testmxlookup
10bin/verifysmtp 10bin/verifysmtp
11bin/webmlmd 11bin/webmlmd
12bin/webmlmd.rc 12bin/webmlmd.rc
13libexec/courier/aliascombine 13libexec/courier/aliascombine
14libexec/courier/aliascreate 14libexec/courier/aliascreate
@@ -161,26 +161,29 @@ share/courier/courierwebadmin/dumpenv.pl @@ -161,26 +161,29 @@ share/courier/courierwebadmin/dumpenv.pl
161share/courier/courierwebadmin/login.html 161share/courier/courierwebadmin/login.html
162share/courier/courierwebadmin/notsupp.html 162share/courier/courierwebadmin/notsupp.html
163share/courier/courierwebadmin/unsecure.html 163share/courier/courierwebadmin/unsecure.html
164share/courier/courierwebadmin/webadmin.pl 164share/courier/courierwebadmin/webadmin.pl
165share/courier/courierwebadmin/webadmin.pm 165share/courier/courierwebadmin/webadmin.pm
166share/courier/filterctl 166share/courier/filterctl
167share/courier/makealiases 167share/courier/makealiases
168share/courier/makehosteddomains 168share/courier/makehosteddomains
169share/courier/perlfilter-example.pl 169share/courier/perlfilter-example.pl
170share/courier/perlfilter-ratelimit.pl 170share/courier/perlfilter-ratelimit.pl
171share/courier/perlfilter-wrapper.pl 171share/courier/perlfilter-wrapper.pl
172share/courier/verifysender 172share/courier/verifysender
173share/courier/verifysenderfull 173share/courier/verifysenderfull
 174share/doc/courier/FAQ.html
 175share/doc/courier/aliases.html
 176share/doc/courier/aliaslookup.html
174share/doc/courier/bg.png 177share/doc/courier/bg.png
175share/doc/courier/cancelmsg.html 178share/doc/courier/cancelmsg.html
176share/doc/courier/courier.html 179share/doc/courier/courier.html
177share/doc/courier/courierd.html 180share/doc/courier/courierd.html
178share/doc/courier/courierdsn.html 181share/doc/courier/courierdsn.html
179share/doc/courier/courierfilter.html 182share/doc/courier/courierfilter.html
180share/doc/courier/courierldapaliasd.html 183share/doc/courier/courierldapaliasd.html
181share/doc/courier/couriermlm.html 184share/doc/courier/couriermlm.html
182share/doc/courier/courierperlfilter.html 185share/doc/courier/courierperlfilter.html
183share/doc/courier/documentation.html 186share/doc/courier/documentation.html
184share/doc/courier/dot-courier.html 187share/doc/courier/dot-courier.html
185share/doc/courier/dot-forward.html 188share/doc/courier/dot-forward.html
186share/doc/courier/draft-varshavchik-exdata-smtpext.txt 189share/doc/courier/draft-varshavchik-exdata-smtpext.txt
@@ -194,29 +197,26 @@ share/doc/courier/index.html @@ -194,29 +197,26 @@ share/doc/courier/index.html
194share/doc/courier/install.html 197share/doc/courier/install.html
195share/doc/courier/japanese_flag.png 198share/doc/courier/japanese_flag.png
196share/doc/courier/layout.html 199share/doc/courier/layout.html
197share/doc/courier/links.html 200share/doc/courier/links.html
198share/doc/courier/local.html 201share/doc/courier/local.html
199share/doc/courier/localmailfilter.html 202share/doc/courier/localmailfilter.html
200share/doc/courier/mailq.html 203share/doc/courier/mailq.html
201share/doc/courier/makeacceptmailfor.html 204share/doc/courier/makeacceptmailfor.html
202share/doc/courier/makealiases.html 205share/doc/courier/makealiases.html
203share/doc/courier/makehosteddomains.html 206share/doc/courier/makehosteddomains.html
204share/doc/courier/makepercentrelay.html 207share/doc/courier/makepercentrelay.html
205share/doc/courier/makesmtpaccess.html 208share/doc/courier/makesmtpaccess.html
206share/doc/courier/menu.html 209share/doc/courier/menu.html
207share/doc/courier/FAQ.html 
208share/doc/courier/aliases.html 
209share/doc/courier/aliaslookup.html 
210share/doc/courier/mkesmtpdcert.html 210share/doc/courier/mkesmtpdcert.html
211share/doc/courier/modules.html 211share/doc/courier/modules.html
212share/doc/courier/pop3d.html 212share/doc/courier/pop3d.html
213share/doc/courier/preline.html 213share/doc/courier/preline.html
214share/doc/courier/queue.html 214share/doc/courier/queue.html
215share/doc/courier/ratefilter.html 215share/doc/courier/ratefilter.html
216share/doc/courier/repo.html 216share/doc/courier/repo.html
217share/doc/courier/rpm.html 217share/doc/courier/rpm.html
218share/doc/courier/sendmail.html 218share/doc/courier/sendmail.html
219share/doc/courier/socks.html 219share/doc/courier/socks.html
220share/doc/courier/status.html 220share/doc/courier/status.html
221share/doc/courier/structures.html 221share/doc/courier/structures.html
222share/doc/courier/submit.html 222share/doc/courier/submit.html