wok view openssh/receipt @ rev 18077

Rebuild Python packages to remove "*.pyc" files from package.lists (part 1).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 22 17:34:18 2015 +0300 (2015-05-22)
parents 3a08bc61e4ee
children c3364b33da58
line source
1 # SliTaz package receipt.
3 PACKAGE="openssh"
4 VERSION="6.8p1"
5 CATEGORY="security"
6 SHORT_DESC="Openbsd Secure Shell."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.openssh.org/"
11 WGET_URL="ftp://ftp.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/$TARBALL"
12 CONFIG_FILES="/etc/ssh /etc/inetd.conf"
13 TAGS="ssh security"
14 HOST_ARCH="i486 arm"
16 PROVIDE="ssh"
17 DEPENDS="sftp-server libcrypto zlib"
18 BUILD_DEPENDS="libcrypto-dev zlib-dev openssl-dev"
19 TAZPANEL_DAEMON="man::sshd|edit::/etc/ssh/sshd_config|options|web::$WEB_SITE"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 unset LD # for cross compiling with --disable-strip
25 ./configure \
26 --prefix=/usr \
27 --sysconfdir=/etc/ssh \
28 --libexecdir=/usr/sbin \
29 --with-privsep-user=nobody \
30 --with-xauth=/usr/bin/xauth \
31 --with-privsep-path=/var/run/sshd \
32 --without-ssh1 \
33 --without-pam \
34 --disable-strip \
35 $CONFIGURE_ARGS &&
36 make STRIP_OPT="" &&
37 make DESTDIR=$DESTDIR install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr $fs/etc/init.d $fs/etc/ssh
44 cp -a $install/usr/sbin $install/usr/bin $fs/usr
45 rm -f $fs/usr/sbin/sftp-server
46 cp -a $install/etc $fs
47 cp $stuff/openssh $fs/etc/init.d
48 sed -i 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \
49 $fs/etc/ssh/sshd_config
50 }
52 post_install()
53 {
54 grep -q ssh $1/etc/inetd.conf || cat >> $1/etc/inetd.conf <<EOT
55 #ssh stream tcp nowait root sshd sshd -i
56 EOT
57 while read dropbear openssh ; do
58 [ -s $1$dropbear ] || continue
59 dropbearconvert dropbear openssh $1$dropbear $1$openssh
60 dropbearkey -y -f $1$dropbear | grep ssh > $1$openssh.pub
61 dropbearkey -y -f $1$dropbear | grep Fingerprint
62 done <<EOT
63 /etc/dropbear/dropbear_rsa_host_key /etc/ssh/ssh_host_rsa_key
64 /etc/dropbear/dropbear_dss_host_key /etc/ssh/ssh_host_dsa_key
65 EOT
66 ssh-keygen -A
67 }
69 post_remove()
70 {
71 grep -q sshd $1/etc/inetd.conf && sed -i '/sshd/d' $1/etc/inetd.conf
72 }