wok annotate dropbear/receipt @ rev 4904

Add ssh virtual package
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 12 16:02:24 2010 +0100 (2010-02-12)
parents a975000773d0
children 74a6a43bf614
rev   line source
pankso@126 1 # SliTaz package receipt.
pankso@126 2
pankso@126 3 PACKAGE="dropbear"
pascal@2198 4 VERSION="0.52"
pankso@209 5 CATEGORY="security"
pankso@126 6 SHORT_DESC="Light SSH client and server."
pankso@126 7 MAINTAINER="pascal.bellard@slitaz.org"
pankso@126 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@2186 9 DEPENDS="zlib"
pascal@1439 10 BUILD_DEPENDS="zlib-dev"
pascal@3628 11 SUGGESTED="sftp-server"
pankso@126 12 WEB_SITE="http://matt.ucc.asn.au/dropbear/dropbear.html"
pankso@126 13 WGET_URL="http://matt.ucc.asn.au/dropbear/releases/$TARBALL"
pascal@1273 14 CONFIG_FILES="/etc/dropbear"
pascal@4904 15 PROVIDE="ssh"
pankso@126 16
pankso@126 17 # Rules to configure and make the package.
pankso@126 18 compile_rules()
pankso@126 19 {
pankso@126 20 local i
pankso@126 21 local DROPBEARS
pankso@126 22 DROPBEARS="dropbearkey dropbearconvert dbclient scp"
pankso@126 23 cd $src
pascal@3628 24 sed -i -e 's|/usr/X11R6/bin/xauth|/usr/bin/xauth|' \
pascal@3628 25 -e 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \
pascal@3628 26 options.h
pascal@2186 27 ./configure --prefix=/usr --without-pam $CONFIGURE_ARGS &&
pascal@1439 28 make PROGRAMS="dropbear $DROPBEARS" MULTI=1 &&
pascal@1439 29 install -d -m 755 $PWD/_pkg/usr/sbin &&
pascal@1439 30 install -m 755 dropbearmulti $PWD/_pkg/usr/sbin/dropbear &&
pascal@1439 31 chown root $PWD/_pkg/usr/sbin/dropbear &&
pascal@1439 32 chgrp 0 $PWD/_pkg/usr/sbin/dropbear &&
pascal@1439 33 install -d -m 755 $PWD/_pkg/usr/bin &&
pascal@1440 34 for i in $DROPBEARS ssh; do
pankso@126 35 ln -s ../sbin/dropbear $PWD/_pkg/usr/bin/$i
pankso@126 36 done
pankso@126 37 }
pankso@126 38
pankso@126 39 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@126 40 genpkg_rules()
pankso@126 41 {
pankso@126 42 mkdir -p $fs/usr
pankso@126 43 cp -a $_pkg/usr/bin $fs/usr
pankso@126 44 cp -a $_pkg/usr/sbin $fs/usr
pankso@126 45 strip -s $fs/usr/bin/*
pankso@126 46 strip -s $fs/usr/sbin/*
pankso@126 47 # Config file and init script.
pankso@126 48 mkdir -p $fs/etc
pankso@126 49 cp -a stuff/dropbear $fs/etc
pankso@126 50 cp -a stuff/init.d $fs/etc
erjo@1410 51 touch $fs/etc/dropbear/dropbear_dss_host_key \
erjo@1410 52 $fs/etc/dropbear/dropbear_rsa_host_key
erjo@1074 53
erjo@1074 54 # Fix dropbear initscript perms
pankso@1091 55 chown -R root.root $fs
pankso@126 56 }
pankso@126 57
pankso@126 58 # Post message when installing.
pankso@126 59 post_install()
pankso@126 60 {
pankso@126 61 echo -e "\nTo starts $PACKAGE server you can run :\n"
pankso@126 62 echo "/etc/init.d/$PACKAGE start"
pankso@126 63 echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n"
pankso@126 64 }