wok annotate openssh/receipt @ rev 15291

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