diff options
author | Donny Davies <woodchip@gentoo.org> | 2002-06-23 01:35:06 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2002-06-23 01:35:06 +0000 |
commit | 93f8b47dc979877edd0ceb9742b8119911c17702 (patch) | |
tree | d84ba237c0197111b580cd48c0614dae836b7b33 /net-misc | |
parent | mask openssh-3.3 temporarily (diff) | |
download | historical-93f8b47dc979877edd0ceb9742b8119911c17702.tar.gz historical-93f8b47dc979877edd0ceb9742b8119911c17702.tar.bz2 historical-93f8b47dc979877edd0ceb9742b8119911c17702.zip |
chase latest release
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/openssh/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/openssh/files/digest-openssh-3.3_p1 | 1 | ||||
-rw-r--r-- | net-misc/openssh/openssh-3.3_p1.ebuild | 83 |
3 files changed, 92 insertions, 1 deletions
diff --git a/net-misc/openssh/ChangeLog b/net-misc/openssh/ChangeLog index 46009692dc56..95de7001ab79 100644 --- a/net-misc/openssh/ChangeLog +++ b/net-misc/openssh/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-misc/openssh # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.8 2002/06/04 23:20:50 stroke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.9 2002/06/23 01:35:06 woodchip Exp $ + +*openssh-3.3_p1 (22 June 2002) + + 22 June 2002; Donny Davies <woodchip@gentoo.org> : + + Chase latest release. Starting with this version sshd uses a new privelaged + process separation scheme. See the docs for more info. *openssh-3.2.3_p1-1 (5 June 2002) diff --git a/net-misc/openssh/files/digest-openssh-3.3_p1 b/net-misc/openssh/files/digest-openssh-3.3_p1 new file mode 100644 index 000000000000..6f1f2ab6d19c --- /dev/null +++ b/net-misc/openssh/files/digest-openssh-3.3_p1 @@ -0,0 +1 @@ +MD5 226fdde5498c56288e777c7a697996e0 openssh-3.3p1.tar.gz 831189 diff --git a/net-misc/openssh/openssh-3.3_p1.ebuild b/net-misc/openssh/openssh-3.3_p1.ebuild new file mode 100644 index 000000000000..d96147fee291 --- /dev/null +++ b/net-misc/openssh/openssh-3.3_p1.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-3.3_p1.ebuild,v 1.1 2002/06/23 01:35:06 woodchip Exp $ + +DESCRIPTION="Port of OpenBSD's free SSH release" +HOMEPAGE="http://www.openssh.com/" + +# openssh recognizes when openssl has been slightly upgraded and refuses to run. +# This new rev will use the new openssl. +RDEPEND="virtual/glibc + pam? ( >=sys-libs/pam-0.73 >=sys-apps/shadow-4.0.2-r2 ) + >=dev-libs/openssl-0.9.6d + sys-libs/zlib" + +DEPEND="${RDEPEND} + sys-devel/perl + sys-apps/groff + tcpd? ( >=sys-apps/tcp-wrappers-7.6 )" + +# Make it more portable between straight releases +# and _p? releases. +PARCH=${P/_/} + +SRC_URI="ftp://ftp.openbsd.org/pub/unix/OpenBSD/OpenSSH/portable/${PARCH}.tar.gz" +S=${WORKDIR}/${PARCH} + +LICENSE="as-is" +SLOT="0" + +pkg_setup() { + if ! groupmod sshd; then + groupadd -g 90 sshd || die "problem adding group sshd" + fi + + if ! id sshd; then + useradd -g sshd -s /dev/null -d /var/empty -c "sshd" sshd + assert "problem adding user sshd" + fi +} + +src_compile() { + local myconf + use tcpd || myconf="${myconf} --without-tcp-wrappers" + use tcpd && myconf="${myconf} --with-tcp-wrappers" + use pam || myconf="${myconf} --without-pam" + use pam && myconf="${myconf} --with-pam" + use ipv6 || myconf="${myconf} --with-ipv4-default" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc/ssh \ + --mandir=/usr/share/man \ + --libexecdir=/usr/lib/misc \ + --datadir=/usr/share/openssh \ + --disable-suid-ssh \ + --with-privsep-path=/var/empty \ + --with-privsep-user=sshd \ + --host=${CHOST} ${myconf} || die "bad configure" + + if [ "`use static`" ] + then + # statically link to libcrypto -- good for the boot cd + perl -pi -e "s|-lcrypto|/usr/lib/libcrypto.a|g" Makefile + fi + + make || die " compile problem" +} + +src_install() { + make install-files DESTDIR=${D} || die + dodoc ChangeLog CREDITS OVERVIEW README* TODO sshd_config + insinto /etc/pam.d ; newins ${FILESDIR}/sshd.pam sshd + exeinto /etc/init.d ; newexe ${FILESDIR}/sshd.rc6 sshd +} + +pkg_postinst() { + # empty dir for the new priv separation auth chroot.. + install -d -m0755 -o root -g root ${ROOT}/var/empty + + einfo + einfo "Remember to merge your config files in /etc/ssh!" + einfo +} |