Thu Sep 23 22:20:06 2021 UTC ()
courier: fix a typo and add an explanatory comment (NFC)

That dependency should probably just be removed, but follow the intent
of the previous commit for now.


(gutteridge)
diff -r1.18 -r1.19 pkgsrc/meta-pkgs/courier/Makefile

cvs diff -r1.18 -r1.19 pkgsrc/meta-pkgs/courier/Makefile (expand / switch to unified diff)

--- pkgsrc/meta-pkgs/courier/Makefile 2021/09/22 21:24:57 1.18
+++ pkgsrc/meta-pkgs/courier/Makefile 2021/09/23 22:20:06 1.19
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.18 2021/09/22 21:24:57 mef Exp $ 1# $NetBSD: Makefile,v 1.19 2021/09/23 22:20:06 gutteridge Exp $
2 2
3DISTNAME= courier-${COURIER_VERSION} 3DISTNAME= courier-${COURIER_VERSION}
4CATEGORIES= meta-pkgs mail 4CATEGORIES= meta-pkgs mail
5MASTER_SITES= # empty 5MASTER_SITES= # empty
6DISTFILES= # empty 6DISTFILES= # empty
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://www.courier-mta.org/ 9HOMEPAGE= https://www.courier-mta.org/
10COMMENT= Meta-package for the Courier mail server suite 10COMMENT= Meta-package for the Courier mail server suite
11 11
12META_PACKAGE= yes 12META_PACKAGE= yes
13 13
14# COURIER_VERSION should match the variable of the same name found in 14# COURIER_VERSION should match the variable of the same name found in
@@ -20,23 +20,24 @@ COURIER_VERSION= 0.65.0 @@ -20,23 +20,24 @@ COURIER_VERSION= 0.65.0
20# should match in version number: 20# should match in version number:
21# 21#
22# net/couriertcpd, mail/courier-maildir, mail/courier-mta 22# net/couriertcpd, mail/courier-maildir, mail/courier-mta
23# 23#
24DEPENDS+= couriertcpd>=${COURIER_VERSION}:../../net/couriertcpd 24DEPENDS+= couriertcpd>=${COURIER_VERSION}:../../net/couriertcpd
25DEPENDS+= courier-maildir>=${COURIER_VERSION}:../../mail/courier-maildir 25DEPENDS+= courier-maildir>=${COURIER_VERSION}:../../mail/courier-maildir
26DEPENDS+= courier-mta>=${COURIER_VERSION}:../../mail/courier-mta 26DEPENDS+= courier-mta>=${COURIER_VERSION}:../../mail/courier-mta
27 27
28# The following packages must be from the same lineage as the version 28# The following packages must be from the same lineage as the version
29# of Courier: 29# of Courier:
30# 30#
31# mail/maildrop, mail/courier-imap, mail/sqwebmail 31# mail/maildrop, mail/courier-imap, mail/sqwebmail
32# 32#
33#EPENDS+= maildrop>=2.5.0:../../mail/maildrop 33# maildrop is presently a hard dependency of courier-mta.
 34#DEPENDS+= maildrop>=2.5.0:../../mail/maildrop
34DEPENDS+= courier-imap>=4.8.0:../../mail/courier-imap 35DEPENDS+= courier-imap>=4.8.0:../../mail/courier-imap
35DEPENDS+= sqwebmail>=5.4.1:../../mail/sqwebmail 36DEPENDS+= sqwebmail>=5.4.1:../../mail/sqwebmail
36 37
37# We tack on courier-analog because its version is somewhat tied to the 38# We tack on courier-analog because its version is somewhat tied to the
38# log format of the current Courier release. 39# log format of the current Courier release.
39# 40#
40DEPENDS+= courier-analog>=0.16:../../mail/courier-analog 41DEPENDS+= courier-analog>=0.16:../../mail/courier-analog
41 42
42.include "../../mk/bsd.pkg.mk" 43.include "../../mk/bsd.pkg.mk"