diff options
author | schmonz <schmonz@pkgsrc.org> | 2006-12-20 03:22:39 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2006-12-20 03:22:39 +0000 |
commit | 46a1ac85773484cf286e76d93637d5d153fd49e7 (patch) | |
tree | cce587f9e9e330662a0ca9dc737f7379b18e0891 /mail | |
parent | 2e256e92d0f2a0a16b3130d1f4a0e27948fe8cce (diff) | |
download | pkgsrc-46a1ac85773484cf286e76d93637d5d153fd49e7.tar.gz |
Fix authfile thinko in tmda-ofmipd. From TMDA SVN revision 2133,
via bug report and patch from Nathan Arthur. Bump PKGREVISION.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/tmda/Makefile | 3 | ||||
-rw-r--r-- | mail/tmda/distinfo | 3 | ||||
-rw-r--r-- | mail/tmda/patches/patch-aa | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/mail/tmda/Makefile b/mail/tmda/Makefile index 48b39212090..cb91f6a297f 100644 --- a/mail/tmda/Makefile +++ b/mail/tmda/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.31 2006/11/07 07:42:09 schmonz Exp $ +# $NetBSD: Makefile,v 1.32 2006/12/20 03:22:39 schmonz Exp $ # DISTNAME= tmda-1.1.9 +PKGREVISION= 1 CATEGORIES= mail python MASTER_SITES= http://tmda.net/releases/ MASTER_SITES+= ftp://tmda.net/pub/tmda/releases/ diff --git a/mail/tmda/distinfo b/mail/tmda/distinfo index b9d93acda31..4daced43143 100644 --- a/mail/tmda/distinfo +++ b/mail/tmda/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.16 2006/11/07 07:42:09 schmonz Exp $ +$NetBSD: distinfo,v 1.17 2006/12/20 03:22:39 schmonz Exp $ SHA1 (tmda-1.1.9.tgz) = 5c5a0d5e6679dcccfc7e781f859a01054e37d9fe RMD160 (tmda-1.1.9.tgz) = 63cd03cfec6bd644311c2b258f3f4f8fdb3b25f5 Size (tmda-1.1.9.tgz) = 331721 bytes +SHA1 (patch-aa) = 579bd9685d0736dccf332e69246a5a5463746791 diff --git a/mail/tmda/patches/patch-aa b/mail/tmda/patches/patch-aa new file mode 100644 index 00000000000..eacec90839b --- /dev/null +++ b/mail/tmda/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2006/12/20 03:22:39 schmonz Exp $ + +--- bin/tmda-ofmipd.orig 2006-10-30 00:58:42.000000000 -0500 ++++ bin/tmda-ofmipd +@@ -288,7 +288,7 @@ if running_as_root: + if not opts.username: + opts.username = 'tofmipd' + if not opts.authfile: +- authfile = '/etc/tofmipd' ++ opts.authfile = '/etc/tofmipd' + ipauthmapfile = '/etc/ipauthmap' + else: + tmda_path = os.path.join(os.path.expanduser('~'), '.tmda') |