wok annotate openssh/receipt @ rev 14532

openssh: privsep-path fixs no start
author Richard Dunbar <mojo@slitaz.org>
date Sun May 19 00:48:28 2013 +0000 (2013-05-19)
parents d88afe58888c
children ad59999b3fce
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@860 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1597 9 WEB_SITE="http://www.openssh.org/"
pascal@860 10 WGET_URL="ftp://ftp.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/$TARBALL"
pascal@3628 11 DEPENDS="sftp-server libcrypto zlib"
pascal@1514 12 BUILD_DEPENDS="libcrypto-dev zlib-dev openssl-dev"
pascal@4904 13 PROVIDE="ssh"
jozee@4970 14 TAGS="ssh"
pascal@860 15
pascal@860 16 # Rules to configure and make the package.
pascal@860 17 compile_rules()
pascal@860 18 {
pascal@860 19 cd $src
pascal@2188 20 ./configure --prefix=/usr --sysconfdir=/etc/ssh --without-pam \
pascal@860 21 --with-privsep-user=nobody --with-privsep-path=/var/run/sshd \
pankso@2213 22 --libexecdir=/usr/sbin \
pascal@1514 23 $CONFIGURE_ARGS &&
pascal@1514 24 make &&
slaxemulator@11063 25 make DESTDIR=$DESTDIR install
pascal@860 26 }
pascal@860 27
pascal@860 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@860 29 genpkg_rules()
pascal@860 30 {
mojo@14532 31 mkdir -p $fs/usr $fs/etc/init.d $fs/etc/ssh
pankso@5183 32 cp -a $_pkg/usr/sbin $_pkg/usr/bin $fs/usr
pascal@3628 33 rm -f $fs/usr/sbin/sftp-server
pascal@860 34 cp -a $_pkg/etc $fs
slaxemulator@11063 35 cp $stuff/openssh $fs/etc/init.d
pascal@2598 36 sed -i 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \
pascal@2598 37 $fs/etc/ssh/sshd_config
pascal@860 38 }
pascal@860 39
pascal@7303 40 # Pre and post install commands for Tazpkg.
mojo@14532 41 pre_install()
mojo@14532 42 {
mojo@14532 43 mkdir -p /var/run/sshd
mojo@14532 44 }
mojo@14532 45
pascal@7303 46 post_install()
pascal@7303 47 {
mojo@14532 48 while read dropbear openssh ; do
pascal@7303 49 [ -s $dropbear ] || continue
pascal@7303 50 dropbearconvert dropbear openssh $1$dropbear $1$openssh
pascal@7303 51 dropbearkey -y -f $1$dropbear | grep ssh > $1$openssh.pub
pascal@7303 52 dropbearkey -y -f $1$dropbear | grep Fingerprint
mojo@14532 53 done <<EOT
pascal@7303 54 /etc/dropbear/dropbear_rsa_host_key /etc/ssh/ssh_host_rsa_key
pascal@7305 55 /etc/dropbear/dropbear_dss_host_key /etc/ssh/ssh_host_dsa_key
pascal@7303 56 EOT
pascal@7303 57 }
mojo@14532 58
mojo@14532 59 # Pre and post remove commands for Tazpkg.
mojo@14532 60 post_remove()
mojo@14532 61 {
mojo@14532 62 rm -fr /var/run/sshd
mojo@14532 63 }
mojo@14532 64