wok annotate dropbear/receipt @ rev 13161

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