pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/security/dropbear Initial import of dropbear-0.36 into...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f1da2eb89db5
branches:  trunk
changeset: 460108:f1da2eb89db5
user:      agc <agc%pkgsrc.org@localhost>
date:      Tue Aug 19 15:46:44 2003 +0000

description:
Initial import of dropbear-0.36 into the NetBSD Packages Collection.

The search for a small Secure Shell server to fit on a laptop with 4
megs ram and no hard disk was fruitless, so Matt Johnston decided to
write his own, and Dropbear is the result.  It implements various
features of the SSH 2 protocol, including X11 and Authentication Agent
forwarding.  Dropbear is Open Source software, distributed under a
MIT-style license.

Features

    * A small memory footprint - Dropbear can compile to a 110kB
      statically linked binary with uClibc (and only minimal options
      selected).
    * Implements X11 forwarding, and authentication-agent forwarding
      for OpenSSH clients
    * Compatible with OpenSSH ~/.ssh/authorized_keys public key
      authentication
    * Features can easily be disabled when compiling to save space.
    * Preliminary TCP forwarding support (-L style only)

diffstat:

 security/dropbear/DESCR            |  19 +++++++++++++++++++
 security/dropbear/Makefile         |  17 +++++++++++++++++
 security/dropbear/PLIST            |   4 ++++
 security/dropbear/distinfo         |   5 +++++
 security/dropbear/patches/patch-aa |  17 +++++++++++++++++
 5 files changed, 62 insertions(+), 0 deletions(-)

diffs (82 lines):

diff -r ddc75abf350d -r f1da2eb89db5 security/dropbear/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/dropbear/DESCR   Tue Aug 19 15:46:44 2003 +0000
@@ -0,0 +1,19 @@
+The search for a small Secure Shell server to fit on a laptop with 4
+megs ram and no hard disk was fruitless, so Matt Johnston decided to
+write his own, and Dropbear is the result.  It implements various
+features of the SSH 2 protocol, including X11 and Authentication Agent
+forwarding.  Dropbear is Open Source software, distributed under a
+MIT-style license.
+
+
+Features
+
+    * A small memory footprint - Dropbear can compile to a 110kB
+      statically linked binary with uClibc (and only minimal options
+      selected).
+    * Implements X11 forwarding, and authentication-agent forwarding
+      for OpenSSH clients
+    * Compatible with OpenSSH ~/.ssh/authorized_keys public key
+      authentication
+    * Features can easily be disabled when compiling to save space.
+    * Preliminary TCP forwarding support (-L style only)
diff -r ddc75abf350d -r f1da2eb89db5 security/dropbear/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/dropbear/Makefile        Tue Aug 19 15:46:44 2003 +0000
@@ -0,0 +1,17 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/08/19 15:46:44 agc Exp $
+
+DISTNAME=      dropbear-0.36
+CATEGORIES=    security
+MASTER_SITES=  http://matt.ucc.asn.au/dropbear/
+EXTRACT_SUFX=  .tar.bz2
+
+MAINTAINER=    tech-pkg%NetBSD.org@localhost
+HOMEPAGE=      http://matt.ucc.asn.au/dropbear/dropbear.html
+COMMENT=       ssh2 server, aimed at embedded market
+
+GNU_CONFIGURE= yes
+USE_GMAKE=     yes
+
+MAKEFLAGS+=    ROOT_USER=${ROOT_USER} ROOT_GROUP=${ROOT_GROUP}
+
+.include "../../mk/bsd.pkg.mk"
diff -r ddc75abf350d -r f1da2eb89db5 security/dropbear/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/dropbear/PLIST   Tue Aug 19 15:46:44 2003 +0000
@@ -0,0 +1,4 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2003/08/19 15:46:44 agc Exp $
+bin/dropbearconvert
+bin/dropbearkey
+sbin/dropbear
diff -r ddc75abf350d -r f1da2eb89db5 security/dropbear/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/dropbear/distinfo        Tue Aug 19 15:46:44 2003 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2003/08/19 15:46:44 agc Exp $
+
+SHA1 (dropbear-0.36.tar.bz2) = 89977e99411c5bc67c2de006665afde7bfc3dff2
+Size (dropbear-0.36.tar.bz2) = 724179 bytes
+SHA1 (patch-aa) = c2d54d4e96ce101435ae2793bd175c7aa1418877
diff -r ddc75abf350d -r f1da2eb89db5 security/dropbear/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/dropbear/patches/patch-aa        Tue Aug 19 15:46:44 2003 +0000
@@ -0,0 +1,17 @@
+$NetBSD: patch-aa,v 1.1.1.1 2003/08/19 15:46:44 agc Exp $
+
+--- Makefile.in        2003/08/19 15:34:20     1.1
++++ Makefile.in        2003/08/19 15:35:01
+@@ -49,9 +49,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
+ 
+ 
+ static: dropbear-static dropbearkey-static dropbearconvert-static



Home | Main Index | Thread Index | Old Index