wok-stable annotate dropbear-pam/receipt @ rev 5406
Up: mtpaint (3.31) - Added bzip2 and acl to build depends.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun May 02 23:15:57 2010 +0000 (2010-05-02) |
parents | 5762c3727ccc |
children | d1de0ef9ae8b |
rev | line source |
---|---|
pascal@2186 | 1 # SliTaz package receipt. |
pascal@2186 | 2 |
pascal@2186 | 3 PACKAGE="dropbear-pam" |
pascal@2198 | 4 VERSION="0.52" |
pascal@2186 | 5 CATEGORY="security" |
pascal@2186 | 6 SHORT_DESC="Light SSH client and server using PAM." |
pascal@2186 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@2186 | 8 SOURCE="dropbear" |
pascal@2186 | 9 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@2186 | 10 DEPENDS="zlib pam" |
pascal@2186 | 11 BUILD_DEPENDS="zlib zlib-dev pam pam-dev" |
pascal@3628 | 12 SUGGESTED="sftp-server" |
pascal@2186 | 13 WEB_SITE="http://matt.ucc.asn.au/dropbear/dropbear.html" |
pascal@2186 | 14 WGET_URL="http://matt.ucc.asn.au/dropbear/releases/$TARBALL" |
pascal@2186 | 15 CONFIG_FILES="/etc/dropbear" |
pascal@4904 | 16 PROVIDE="dropbear:pam ssh:pam" |
pascal@2186 | 17 |
pascal@2186 | 18 # Rules to configure and make the package. |
pascal@2186 | 19 compile_rules() |
pascal@2186 | 20 { |
pascal@2186 | 21 local i |
pascal@2186 | 22 local DROPBEARS |
pascal@2186 | 23 DROPBEARS="dropbearkey dropbearconvert dbclient scp" |
pascal@2186 | 24 cd $src |
pascal@2236 | 25 rm -rf _pkg |
pascal@2236 | 26 sed -i -e 's|/usr/X11R6/bin/xauth|/usr/bin/xauth|' \ |
pascal@3628 | 27 -e 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \ |
pascal@2236 | 28 -e 's|ENABLE_SVR_PASSWORD_AUTH|ENABLE_SVR_PAM_AUTH|' \ |
pascal@2236 | 29 options.h |
pascal@2186 | 30 ./configure --prefix=/usr --enable-pam $CONFIGURE_ARGS && |
pascal@2186 | 31 make PROGRAMS="dropbear $DROPBEARS" MULTI=1 && |
pascal@2186 | 32 install -d -m 755 $PWD/_pkg/usr/sbin && |
pascal@2186 | 33 install -m 755 dropbearmulti $PWD/_pkg/usr/sbin/dropbear && |
pascal@2186 | 34 chown root $PWD/_pkg/usr/sbin/dropbear && |
pascal@2186 | 35 chgrp 0 $PWD/_pkg/usr/sbin/dropbear && |
pascal@2186 | 36 install -d -m 755 $PWD/_pkg/usr/bin && |
pascal@2186 | 37 for i in $DROPBEARS ssh; do |
pascal@2186 | 38 ln -s ../sbin/dropbear $PWD/_pkg/usr/bin/$i |
pascal@2186 | 39 done |
pascal@2186 | 40 } |
pascal@2186 | 41 |
pascal@2186 | 42 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2186 | 43 genpkg_rules() |
pascal@2186 | 44 { |
pascal@2186 | 45 mkdir -p $fs/usr |
pascal@2186 | 46 cp -a $_pkg/usr/bin $fs/usr |
pascal@2186 | 47 cp -a $_pkg/usr/sbin $fs/usr |
pascal@2186 | 48 strip -s $fs/usr/bin/* |
pascal@2186 | 49 strip -s $fs/usr/sbin/* |
pascal@2186 | 50 # Config file and init script. |
pascal@2186 | 51 mkdir -p $fs/etc |
pascal@2287 | 52 cp -a ../$SOURCE/stuff/dropbear $fs/etc |
pascal@2287 | 53 cp -a ../$SOURCE/stuff/init.d $fs/etc |
pascal@2236 | 54 cp -a stuff/pam.d $fs/etc |
pascal@2186 | 55 touch $fs/etc/dropbear/dropbear_dss_host_key \ |
pascal@2186 | 56 $fs/etc/dropbear/dropbear_rsa_host_key |
pascal@2186 | 57 |
pascal@2186 | 58 # Fix dropbear initscript perms |
pascal@2186 | 59 chown -R root.root $fs |
pascal@2186 | 60 } |
pascal@2186 | 61 |
pascal@2186 | 62 # Post message when installing. |
pascal@2186 | 63 post_install() |
pascal@2186 | 64 { |
pascal@3761 | 65 echo -e "\nTo starts $SOURCE server you can run :\n" |
pascal@3761 | 66 echo "/etc/init.d/$SOURCE start" |
pascal@3761 | 67 echo -e "Or add $SOURCE to RUN_DAEMONS in /etc/rcS.conf\n" |
pascal@2186 | 68 } |