diff options
author | drochner <drochner@pkgsrc.org> | 2004-06-21 18:27:47 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2004-06-21 18:27:47 +0000 |
commit | b8ae38c3a0bbe8309826bcf7c1548ac515ad2a21 (patch) | |
tree | 17e6668f344399a7bc5a4137d42a1e6542d14afd /security/dropbear | |
parent | 904b635199be4a1848b973140daec2e4188c9c8d (diff) | |
download | pkgsrc-b8ae38c3a0bbe8309826bcf7c1548ac515ad2a21.tar.gz |
update to 0.42
Many fixes and feature additions since 0.38. Too many to list here.
Diffstat (limited to 'security/dropbear')
-rw-r--r-- | security/dropbear/Makefile | 4 | ||||
-rw-r--r-- | security/dropbear/distinfo | 8 | ||||
-rw-r--r-- | security/dropbear/patches/patch-aa | 36 |
3 files changed, 27 insertions, 21 deletions
diff --git a/security/dropbear/Makefile b/security/dropbear/Makefile index bb04190ca0b..a639f66ff20 100644 --- a/security/dropbear/Makefile +++ b/security/dropbear/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2004/01/24 15:00:22 grant Exp $ +# $NetBSD: Makefile,v 1.4 2004/06/21 18:27:47 drochner Exp $ -DISTNAME= dropbear-0.38 +DISTNAME= dropbear-0.42 CATEGORIES= security MASTER_SITES= http://matt.ucc.asn.au/dropbear/releases/ EXTRACT_SUFX= .tar.bz2 diff --git a/security/dropbear/distinfo b/security/dropbear/distinfo index 1324ca3f3ba..c47069097f8 100644 --- a/security/dropbear/distinfo +++ b/security/dropbear/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2003/10/30 23:22:32 xtraeme Exp $ +$NetBSD: distinfo,v 1.3 2004/06/21 18:27:47 drochner Exp $ -SHA1 (dropbear-0.38.tar.bz2) = e6afb8861155fd26903e6207850baec6f3ad04de -Size (dropbear-0.38.tar.bz2) = 684584 bytes -SHA1 (patch-aa) = f0541e8b8db0394f007e9f21af09cf642e66c7ed +SHA1 (dropbear-0.42.tar.bz2) = 2b4f1e22af1dfaffdfe7fbcf75cb6b79b322efc3 +Size (dropbear-0.42.tar.bz2) = 1140348 bytes +SHA1 (patch-aa) = d1d4447366634c84082b9c0d737accbe9e80d823 diff --git a/security/dropbear/patches/patch-aa b/security/dropbear/patches/patch-aa index 82366ab1366..6d57999826e 100644 --- a/security/dropbear/patches/patch-aa +++ b/security/dropbear/patches/patch-aa @@ -1,17 +1,23 @@ -$NetBSD: patch-aa,v 1.2 2003/10/30 23:22:32 xtraeme Exp $ +$NetBSD: patch-aa,v 1.3 2004/06/21 18:27:48 drochner Exp $ ---- Makefile.in.orig 2003-10-31 00:14:03.000000000 +0100 -+++ Makefile.in 2003-10-31 00:14:39.000000000 +0100 -@@ -51,9 +51,9 @@ - install -m 755 dropbear $(DESTDIR)$(sbindir) - install -m 755 dropbearkey $(DESTDIR)$(bindir) - install -m 755 dropbearconvert $(DESTDIR)$(bindir) -- -chown root:root $(DESTDIR)$(sbindir)/dropbear -- -chown root:root $(DESTDIR)$(bindir)/dropbearkey -- -chown root:root $(DESTDIR)$(bindir)/dropbearconvert -+ -chown ${ROOT_USER}:${ROOT_GROUP} $(DESTDIR)$(sbindir)/dropbear -+ -chown ${ROOT_USER}:${ROOT_GROUP} $(DESTDIR)$(bindir)/dropbearkey -+ -chown ${ROOT_USER}:${ROOT_GROUP} $(DESTDIR)$(bindir)/dropbearconvert +--- Makefile.in.orig 2004-01-30 17:24:25.000000000 +0100 ++++ Makefile.in +@@ -61,12 +61,12 @@ install: all + $(INSTALL) -m 755 dropbearkey $(DESTDIR)$(bindir) + $(INSTALL) -m 755 dropbearconvert $(DESTDIR)$(bindir) + # chown might fail, so do it separately to the install +- -chown root $(DESTDIR)$(sbindir)/dropbear +- -chgrp 0 $(DESTDIR)$(sbindir)/dropbear +- -chown root $(DESTDIR)$(bindir)/dropbearkey +- -chgrp 0 $(DESTDIR)$(bindir)/dropbearkey +- -chown root $(DESTDIR)$(bindir)/dropbearconvert +- -chgrp 0 $(DESTDIR)$(bindir)/dropbearconvert ++ -chown ${ROOT_USER} $(DESTDIR)$(sbindir)/dropbear ++ -chgrp ${ROOT_GROUP} $(DESTDIR)$(sbindir)/dropbear ++ -chown ${ROOT_USER} $(DESTDIR)$(bindir)/dropbearkey ++ -chgrp ${ROOT_GROUP} $(DESTDIR)$(bindir)/dropbearkey ++ -chown ${ROOT_USER} $(DESTDIR)$(bindir)/dropbearconvert ++ -chgrp ${ROOT_GROUP} $(DESTDIR)$(bindir)/dropbearconvert - - static: dropbear-static dropbearkey-static dropbearconvert-static + strip-static: static + -$(STRIP) staticdropbear |