Thu Jan 28 12:46:55 2021 UTC ()
Check whether "default" exists before creating the symlink. Bump PKGREVISION.


(schmonz)
diff -r1.1 -r1.2 pkgsrc/mail/ezmlm-idx/INSTALL
diff -r1.58 -r1.59 pkgsrc/mail/ezmlm-idx/Makefile

cvs diff -r1.1 -r1.2 pkgsrc/mail/ezmlm-idx/INSTALL (expand / switch to unified diff)

--- pkgsrc/mail/ezmlm-idx/INSTALL 2017/05/25 20:41:27 1.1
+++ pkgsrc/mail/ezmlm-idx/INSTALL 2021/01/28 12:46:55 1.2
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: INSTALL,v 1.1 2017/05/25 20:41:27 schmonz Exp $ 1# $NetBSD: INSTALL,v 1.2 2021/01/28 12:46:55 schmonz Exp $
2 2
3PKG_SYSCONFDIR=@PKG_SYSCONFDIR@ 3PKG_SYSCONFDIR=@PKG_SYSCONFDIR@
4LN=@LN@ 4LN=@LN@
5 5
6case "${STAGE}" in 6case "${STAGE}" in
7 7
8POST-INSTALL) 8POST-INSTALL)
9 cd ${PKG_SYSCONFDIR} 9 cd ${PKG_SYSCONFDIR}
10 if [ -d en_US ]; then 10 if [ ! -e default -a -d en_US ]; then
11 ${LN} -s en_US default 11 ${LN} -s en_US default
12 fi 12 fi
13 13
14 ;; 14 ;;
15 15
16esac 16esac

cvs diff -r1.58 -r1.59 pkgsrc/mail/ezmlm-idx/Makefile (expand / switch to unified diff)

--- pkgsrc/mail/ezmlm-idx/Makefile 2020/11/19 09:35:41 1.58
+++ pkgsrc/mail/ezmlm-idx/Makefile 2021/01/28 12:46:55 1.59
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1# $NetBSD: Makefile,v 1.58 2020/11/19 09:35:41 schmonz Exp $ 1# $NetBSD: Makefile,v 1.59 2021/01/28 12:46:55 schmonz Exp $
2# 2#
3 3
4DISTNAME= ezmlm-idx-${IDXVERSION} 4DISTNAME= ezmlm-idx-${IDXVERSION}
5PKGREVISION= 13 5PKGREVISION= 14
6CATEGORIES= mail 6CATEGORIES= mail
7IDXVERSION= 7.2.2 7IDXVERSION= 7.2.2
8MASTER_SITES= http://untroubled.org/ezmlm/archive/${IDXVERSION}/ 8MASTER_SITES= http://untroubled.org/ezmlm/archive/${IDXVERSION}/
9 9
10MAINTAINER= schmonz@NetBSD.org 10MAINTAINER= schmonz@NetBSD.org
11HOMEPAGE= https://untroubled.org/ezmlm/ 11HOMEPAGE= https://untroubled.org/ezmlm/
12COMMENT= Version of ezmlm with enhancements by third parties 12COMMENT= Version of ezmlm with enhancements by third parties
13LICENSE= gnu-gpl-v2 13LICENSE= gnu-gpl-v2
14 14
15CONFLICTS= ezmlm-[0-9]* 15CONFLICTS= ezmlm-[0-9]*
16 16
17DEPENDS+= qmail>=1.03:../../mail/qmail 17DEPENDS+= qmail>=1.03:../../mail/qmail
18 18