wok annotate openssh-pam/receipt @ rev 14772

Add some TAZPANEL_DAEMON
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jun 30 09:55:32 2013 +0200 (2013-06-30)
parents ad59999b3fce
children 595b6d418abe
rev   line source
pascal@2188 1 # SliTaz package receipt.
pascal@2188 2
pascal@2188 3 PACKAGE="openssh-pam"
slaxemulator@11063 4 VERSION="5.9p1"
pascal@2188 5 CATEGORY="security"
pascal@2188 6 SHORT_DESC="Openbsd Secure Shell using PAM."
pascal@2188 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14657 8 LICENSE="BSD"
pascal@2188 9 SOURCE="openssh"
pascal@2188 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@2188 11 WEB_SITE="http://www.openssh.org/"
pascal@2188 12 WGET_URL="ftp://ftp.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/$TARBALL"
pascal@14772 13 TAZPANEL_DAEMON="man::sshd|edit::/etc/ssh/sshd_config|options::OPENSSH_OPTIONS|web::$WEB_SITE"
pascal@14772 14 PROVIDE="openssh:pam ssh:pam"
pascal@14772 15
pascal@3628 16 DEPENDS="sftp-server libcrypto zlib pam"
pascal@2188 17 BUILD_DEPENDS="libcrypto-dev zlib-dev openssl-dev pam pam-dev"
pascal@2188 18
pascal@2188 19 # Rules to configure and make the package.
pascal@2188 20 compile_rules()
pascal@2188 21 {
pascal@2188 22 cd $src
pascal@2188 23 ./configure --prefix=/usr --sysconfdir=/etc/ssh --with-pam \
pascal@2188 24 --with-privsep-user=nobody --with-privsep-path=/var/run/sshd \
pankso@2213 25 --libexecdir=/usr/sbin \
pascal@2188 26 $CONFIGURE_ARGS &&
pascal@2188 27 make &&
slaxemulator@11063 28 make DESTDIR=$DESTDIR install
pascal@2188 29 }
pascal@2188 30
pascal@2188 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2188 32 genpkg_rules()
pascal@2188 33 {
mojo@14531 34 mkdir -p $fs/usr $fs/etc/init.d $fs/etc/ssh
pascal@14772 35 cp -a $install/usr/sbin $install/usr/bin $fs/usr
pascal@3628 36 rm -f $fs/usr/sbin/sftp-server
pascal@14772 37 cp -a $install/etc $fs
slaxemulator@9701 38 cp ../$SOURCE/stuff/openssh $fs/etc/init.d
slaxemulator@9003 39 sed -i 's/.*UsePAM.*/UsePAM yes/' $fs/etc/ssh/sshd_config
pascal@2188 40 }
pascal@2188 41
pascal@7303 42 # Pre and post install commands for Tazpkg.
mojo@14531 43 pre_install()
mojo@14531 44 {
pascal@14772 45 mkdir -p $1/var/run/sshd
mojo@14531 46 }
mojo@14531 47
pascal@7303 48 post_install()
pascal@7303 49 {
mojo@14531 50 while read dropbear openssh ; do
pascal@7303 51 [ -s $dropbear ] || continue
pascal@7303 52 dropbearconvert dropbear openssh $1$dropbear $1$openssh
pascal@7303 53 dropbearkey -y -f $1$dropbear | grep ssh > $1$openssh.pub
pascal@7303 54 dropbearkey -y -f $1$dropbear | grep Fingerprint
mojo@14531 55 done <<EOT
pascal@7303 56 /etc/dropbear/dropbear_rsa_host_key /etc/ssh/ssh_host_rsa_key
pascal@7305 57 /etc/dropbear/dropbear_dss_host_key /etc/ssh/ssh_host_dsa_key
pascal@7303 58 EOT
pascal@7303 59 }
mojo@14531 60
mojo@14531 61 # Pre and post remove commands for Tazpkg.
mojo@14531 62 post_remove()
mojo@14531 63 {
pascal@14772 64 rm -fr $1/var/run/sshd
mojo@14531 65 }