wok-current view openssh/receipt @ rev 7432
remove python-pymedia
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Mon Nov 29 08:27:17 2010 +0100 (2010-11-29) | 
| parents | d2fa95a8cd5d | 
| children | 6fc060ce8c8c | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="openssh"
     4 VERSION="5.6p1"
     5 CATEGORY="security"
     6 SHORT_DESC="Openbsd Secure Shell."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 TARBALL="$PACKAGE-$VERSION.tar.gz"
     9 WEB_SITE="http://www.openssh.org/"
    10 WGET_URL="ftp://ftp.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/$TARBALL"
    11 DEPENDS="sftp-server libcrypto zlib"
    12 BUILD_DEPENDS="libcrypto-dev zlib-dev openssl-dev"
    13 PROVIDE="ssh"
    14 TAGS="ssh"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	cd $src
    20 	./configure --prefix=/usr --sysconfdir=/etc/ssh --without-pam \
    21 		--with-privsep-user=nobody --with-privsep-path=/var/run/sshd \
    22 		--libexecdir=/usr/sbin \
    23 		$CONFIGURE_ARGS &&
    24 	make &&
    25 	make DESTDIR=$PWD/_pkg install
    26 }
    28 # Rules to gen a SliTaz package suitable for Tazpkg.
    29 genpkg_rules()
    30 {
    31 	mkdir -p $fs/usr $fs/etc/init.d $fs/etc/ssh $fs/var/run/sshd
    32 	cp -a $_pkg/usr/sbin $_pkg/usr/bin $fs/usr
    33 	rm -f $fs/usr/sbin/sftp-server
    34 	cp -a $_pkg/etc $fs
    35 	cp stuff/openssh $fs/etc/init.d
    36 	sed -i 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \
    37 		$fs/etc/ssh/sshd_config
    38 }
    40 # Pre and post install commands for Tazpkg.
    41 post_install()
    42 {
    43 	while read dropbear openssh ; do
    44 		[ -s $dropbear ] || continue
    45 		dropbearconvert dropbear openssh $1$dropbear $1$openssh
    46 		dropbearkey -y -f $1$dropbear | grep ssh > $1$openssh.pub
    47 		dropbearkey -y -f $1$dropbear | grep Fingerprint
    48 	done <<EOT
    49 /etc/dropbear/dropbear_rsa_host_key	/etc/ssh/ssh_host_rsa_key
    50 /etc/dropbear/dropbear_dss_host_key	/etc/ssh/ssh_host_dsa_key
    51 EOT
    52 }