diff options
author | Juergen Daubert <jue@jue.li> | 2013-10-04 20:04:21 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2013-10-04 20:04:21 +0200 |
commit | 67eb0f7fd53d945cc2eaf963b93726d74ab17e05 (patch) | |
tree | fa060149957c379e83ef6390908ff39315f2f426 /dropbear | |
parent | 8b7bf915eb372510fdceba1a22730af5e03d4334 (diff) | |
download | opt-67eb0f7fd53d945cc2eaf963b93726d74ab17e05.tar.gz opt-67eb0f7fd53d945cc2eaf963b93726d74ab17e05.tar.xz |
[notify] dropbear: upate to 2013.59
includes two security fixes, see
http://article.gmane.org/gmane.network.ssh.dropbear/1394
Diffstat (limited to 'dropbear')
-rw-r--r-- | dropbear/.footprint | 3 | ||||
-rw-r--r-- | dropbear/.md5sum | 2 | ||||
-rw-r--r-- | dropbear/Pkgfile | 20 |
3 files changed, 13 insertions, 12 deletions
diff --git a/dropbear/.footprint b/dropbear/.footprint index ae5106679..2dccda90d 100644 --- a/dropbear/.footprint +++ b/dropbear/.footprint @@ -10,8 +10,9 @@ drwxr-xr-x root/root usr/bin/ drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/man1/ -rw-r--r-- root/root usr/man/man1/dbclient.1.gz +-rw-r--r-- root/root usr/man/man1/dropbearconvert.1.gz +-rw-r--r-- root/root usr/man/man1/dropbearkey.1.gz drwxr-xr-x root/root usr/man/man8/ -rw-r--r-- root/root usr/man/man8/dropbear.8.gz --rw-r--r-- root/root usr/man/man8/dropbearkey.8.gz drwxr-xr-x root/root usr/sbin/ -rwxr-xr-x root/root usr/sbin/dropbear diff --git a/dropbear/.md5sum b/dropbear/.md5sum index f5a025db3..a8b18c783 100644 --- a/dropbear/.md5sum +++ b/dropbear/.md5sum @@ -1,2 +1,2 @@ e499ac93e2ce3c14c3806c4f74e74371 dropbear -8d3579bbbfcea48404a3219643076450 dropbear-2013.58.tar.bz2 +6c1e6c2c297f4034488ffc95e8b7e6e9 dropbear-2013.59.tar.bz2 diff --git a/dropbear/Pkgfile b/dropbear/Pkgfile index e7903f19f..7d371c1e3 100644 --- a/dropbear/Pkgfile +++ b/dropbear/Pkgfile @@ -4,23 +4,23 @@ # Depends on: zlib name=dropbear -version=2013.58 +version=2013.59 release=1 source=(http://matt.ucc.asn.au/$name/releases/$name-$version.tar.bz2 \ $name) build () { cd $name-$version - - # /proc/net/rt_cache might be rather big, don't use it to gather entropy - sed -i 's/rt_cache/unix/' random.c - sed -i 's|libexec|lib/ssh|; s|X11R6/bin|bin|; s|bin/X11|bin|' options.h - ./configure --prefix=/usr + sed -i 's|libexec|lib/ssh|; s|bin/X11|bin|' options.h + + ./configure --prefix=/usr \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --mandir=/usr/man make make DESTDIR=$PKG install - install -d $PKG/{etc/{rc.d,dropbear},usr/man/man{1,8}} - install -m 644 dbclient.1 $PKG/usr/man/man1 - install -m 644 dropbear{.8,key.8} $PKG/usr/man/man8 - install -m 755 $SRC/dropbear $PKG/etc/rc.d + + install -d $PKG/etc/{rc.d,dropbear}/ + install -D -m 755 $SRC/dropbear $PKG/etc/rc.d/ } |