pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mail/ezmlm-idx



Module Name:    pkgsrc
Committed By:   schmonz
Date:           Thu Jan 28 12:46:55 UTC 2021

Modified Files:
        pkgsrc/mail/ezmlm-idx: INSTALL Makefile

Log Message:
Check whether "default" exists before creating the symlink. Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/mail/ezmlm-idx/INSTALL
cvs rdiff -u -r1.58 -r1.59 pkgsrc/mail/ezmlm-idx/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mail/ezmlm-idx/INSTALL
diff -u pkgsrc/mail/ezmlm-idx/INSTALL:1.1 pkgsrc/mail/ezmlm-idx/INSTALL:1.2
--- pkgsrc/mail/ezmlm-idx/INSTALL:1.1   Thu May 25 20:41:27 2017
+++ pkgsrc/mail/ezmlm-idx/INSTALL       Thu Jan 28 12:46:55 2021
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.1 2017/05/25 20:41:27 schmonz Exp $
+# $NetBSD: INSTALL,v 1.2 2021/01/28 12:46:55 schmonz Exp $
 
 PKG_SYSCONFDIR=@PKG_SYSCONFDIR@
 LN=@LN@
@@ -7,7 +7,7 @@ case "${STAGE}" in
 
 POST-INSTALL)
        cd ${PKG_SYSCONFDIR}
-       if [ -d en_US ]; then
+       if [ ! -e default -a -d en_US ]; then
                ${LN} -s en_US default
        fi
 

Index: pkgsrc/mail/ezmlm-idx/Makefile
diff -u pkgsrc/mail/ezmlm-idx/Makefile:1.58 pkgsrc/mail/ezmlm-idx/Makefile:1.59
--- pkgsrc/mail/ezmlm-idx/Makefile:1.58 Thu Nov 19 09:35:41 2020
+++ pkgsrc/mail/ezmlm-idx/Makefile      Thu Jan 28 12:46:55 2021
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.58 2020/11/19 09:35:41 schmonz Exp $
+# $NetBSD: Makefile,v 1.59 2021/01/28 12:46:55 schmonz Exp $
 #
 
 DISTNAME=              ezmlm-idx-${IDXVERSION}
-PKGREVISION=           13
+PKGREVISION=           14
 CATEGORIES=            mail
 IDXVERSION=            7.2.2
 MASTER_SITES=          http://untroubled.org/ezmlm/archive/${IDXVERSION}/



Home | Main Index | Thread Index | Old Index