wok-stable view openssh/receipt @ rev 5352

Up: tcl, tcl-dev (8.5.8) - Added soft link for tclsh8.5 to tclsh. Helps with packages needing to have tclsh not tclsh8.5.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Apr 28 12:58:38 2010 +0000 (2010-04-28)
parents 116ca1384948
children eb7d8ec19f8a
line source
1 # SliTaz package receipt.
3 PACKAGE="openssh"
4 VERSION="5.5p1"
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 }