[notify] dropbear: upate to 2013.59

includes two security fixes, see
http://article.gmane.org/gmane.network.ssh.dropbear/1394
This commit is contained in:
Juergen Daubert 2013-10-04 20:04:21 +02:00
parent 8b7bf915eb
commit 67eb0f7fd5
3 changed files with 13 additions and 12 deletions

View File

@ -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

View File

@ -1,2 +1,2 @@
e499ac93e2ce3c14c3806c4f74e74371 dropbear
8d3579bbbfcea48404a3219643076450 dropbear-2013.58.tar.bz2
6c1e6c2c297f4034488ffc95e8b7e6e9 dropbear-2013.59.tar.bz2

View File

@ -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/
}