wok annotate dropbear/receipt @ rev 15309

lm-sensors: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 15:02:39 2013 +0000 (2013-09-27)
parents 0237a09acf6e
children 30f922b03115
rev   line source
pankso@126 1 # SliTaz package receipt.
pankso@126 2
pankso@126 3 PACKAGE="dropbear"
pascal@14442 4 VERSION="2013.58"
pankso@209 5 CATEGORY="security"
pankso@126 6 SHORT_DESC="Light SSH client and server."
pankso@126 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14657 8 LICENSE="MIT"
pankso@12689 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@126 10 WEB_SITE="http://matt.ucc.asn.au/dropbear/dropbear.html"
pankso@126 11 WGET_URL="http://matt.ucc.asn.au/dropbear/releases/$TARBALL"
pascal@1273 12 CONFIG_FILES="/etc/dropbear"
pankso@12839 13 SUGGESTED="sftp-server"
pascal@4904 14 PROVIDE="ssh"
jozee@4934 15 TAGS="ssh"
pankso@12839 16 HOST_ARCH="i486 arm"
pankso@126 17
pankso@12689 18 DEPENDS="zlib"
pankso@12689 19 BUILD_DEPENDS="zlib-dev pam pam-dev"
pankso@12689 20
pankso@12839 21 # Handle multiarch compilation.
pankso@12834 22 case "$ARCH" in
pankso@12839 23 arm)
pankso@12839 24 BUILD_DEPENDS=""
pankso@12839 25 CROSS_ARGS="--disable-zlib"
pankso@12839 26 CROSS_BUGS="Fails to find zlib: -lz... no" ;;
pankso@12834 27 esac
pankso@12834 28
pankso@126 29 # Rules to configure and make the package.
pankso@126 30 compile_rules()
pankso@126 31 {
pankso@126 32 local i
pankso@126 33 local DROPBEARS
pankso@126 34 DROPBEARS="dropbearkey dropbearconvert dbclient scp"
pankso@126 35 cd $src
pascal@9432 36 sed -i -e 's|/usr/.*/xauth|/usr/bin/xauth|' \
pascal@9432 37 -e 's|/usr/.*/sftp-server|/usr/sbin/sftp-server|' \
pascal@11595 38 -e 's|ENABLE_SVR_PAM_AUTH|ENABLE_SVR_PASSWORD_AUTH|' \
pascal@3628 39 options.h
pankso@12839 40 ./configure --prefix=/usr --without-pam $CONFIGURE_ARGS $CROSS_ARGS &&
pankso@12834 41 make PROGRAMS="dropbear $DROPBEARS" MULTI=1 SCPPROGRESS=1 &&
slaxemulator@11100 42 install -d -m 755 $DESTDIR/usr/sbin &&
slaxemulator@11100 43 install -m 755 dropbearmulti $DESTDIR/usr/sbin/dropbear &&
pankso@12834 44 chown 0.0 $DESTDIR/usr/sbin/dropbear || exit 1
pankso@12834 45
pankso@12834 46 # No pam support in ARM
pankso@12834 47 case "$ARCH" in
pankso@12834 48 arm) echo "Skipping Dropbear PAM..." ;;
pankso@12839 49 i?86)
pankso@12834 50 sed -i 's|ENABLE_SVR_PASSWORD_AUTH|ENABLE_SVR_PAM_AUTH|' \
pankso@12834 51 options.h
pankso@12834 52 ./configure --prefix=/usr --enable-pam $CONFIGURE_ARGS &&
pankso@12834 53 make PROGRAMS="dropbear $DROPBEARS" MULTI=1 SCPPROGRESS=1 &&
pankso@12834 54 install -m 755 dropbearmulti $DESTDIR/usr/sbin/dropbear-pam &&
pankso@12834 55 chown 0.0 $DESTDIR/usr/sbin/dropbear-pam || exit 1 ;;
pankso@12834 56 esac
pankso@12834 57
slaxemulator@11100 58 install -d -m 755 $DESTDIR/usr/bin &&
pascal@1440 59 for i in $DROPBEARS ssh; do
pankso@12834 60 ln -s ../sbin/dropbear $DESTDIR/usr/bin/$i || exit 1
pankso@126 61 done
pankso@126 62 }
pankso@126 63
pankso@126 64 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@126 65 genpkg_rules()
pankso@126 66 {
pankso@126 67 mkdir -p $fs/usr
pankso@12689 68 cp -a $install/usr/bin $fs/usr
pankso@12689 69 cp -a $install/usr/sbin $fs/usr
pascal@11595 70 rm -f $fs/usr/sbin/dropbear-pam
pankso@126 71 # Config file and init script.
pankso@126 72 mkdir -p $fs/etc
slaxemulator@11100 73 cp -a $stuff/dropbear $fs/etc
slaxemulator@11100 74 cp -a $stuff/init.d $fs/etc
slaxemulator@11100 75 cp -a $stuff/sshx $fs/usr/bin
pascal@14027 76 ln -s sshx $fs/usr/bin/pppssh
pankso@12834 77 touch $fs/etc/dropbear/dropbear_dss_host_key \
erjo@1410 78 $fs/etc/dropbear/dropbear_rsa_host_key
pankso@12689 79
erjo@1074 80 # Fix dropbear initscript perms
pankso@1091 81 chown -R root.root $fs
pankso@126 82 }
pankso@126 83
pankso@126 84 # Post message when installing.
pankso@126 85 post_install()
pankso@126 86 {
pascal@7304 87 while read dropbear openssh ; do
pascal@7304 88 [ -s $openssh ] || continue
pankso@12834 89 dropbearconvert openssh dropbear ${root}$openssh ${root}$dropbear
pankso@12834 90 dropbearkey -y -f ${root}$dropbear | grep Fingerprint
pascal@7304 91 done <<EOT
pascal@7304 92 /etc/dropbear/dropbear_rsa_host_key /etc/ssh/ssh_host_rsa_key
pascal@7305 93 /etc/dropbear/dropbear_dss_host_key /etc/ssh/ssh_host_dsa_key
pascal@7304 94 EOT
pankso@126 95 echo -e "\nTo starts $PACKAGE server you can run :\n"
pankso@126 96 echo "/etc/init.d/$PACKAGE start"
pankso@126 97 echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n"
pankso@126 98 }