summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-06-09 02:10:54 +0000
committerAchim Gottinger <achim@gentoo.org>2001-06-09 02:10:54 +0000
commit3b85f6dfe5c5a53951d993f35d74fe88597ee623 (patch)
treeb0ddc2a1d67e12d8db8eeca758d016248d77d1a8 /net-misc/openssh
parentSome cleanup (diff)
downloadgentoo-2-3b85f6dfe5c5a53951d993f35d74fe88597ee623.tar.gz
gentoo-2-3b85f6dfe5c5a53951d993f35d74fe88597ee623.tar.bz2
gentoo-2-3b85f6dfe5c5a53951d993f35d74fe88597ee623.zip
*** empty log message ***
Diffstat (limited to 'net-misc/openssh')
-rw-r--r--net-misc/openssh/files/digest-openssh-2.3.0_p1-r51
-rw-r--r--net-misc/openssh/openssh-2.3.0_p1-r5.ebuild57
2 files changed, 0 insertions, 58 deletions
diff --git a/net-misc/openssh/files/digest-openssh-2.3.0_p1-r5 b/net-misc/openssh/files/digest-openssh-2.3.0_p1-r5
deleted file mode 100644
index 894bbf191bc9..000000000000
--- a/net-misc/openssh/files/digest-openssh-2.3.0_p1-r5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b3d53dfb45da6e7bf88aaaf65b528aac openssh-2.3.0p1.tar.gz
diff --git a/net-misc/openssh/openssh-2.3.0_p1-r5.ebuild b/net-misc/openssh/openssh-2.3.0_p1-r5.ebuild
deleted file mode 100644
index 90c2365cf6f6..000000000000
--- a/net-misc/openssh/openssh-2.3.0_p1-r5.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-2.3.0_p1-r5.ebuild,v 1.1 2001/03/06 06:20:41 achim Exp $
-
-P=openssh-2.3.0p1
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="Port of OpenBSD's free SSH release"
-SRC_URI="ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/"${A}
-HOMEPAGE="http://www.openssh.com/"
-
-DEPEND="virtual/glibc
- tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
- pam? ( >=sys-libs/pam-0.73 )
- >=dev-libs/openssl-0.9.6"
-
-src_compile() {
- local myconf
- if [ "`use tcpd`" ]
- then
- myconf="--with-tcp-wrappers"
- fi
- if [ "`use pam`" ]
- then
- myconf="${myconf} --without-shadow"
- else
- myconf="${myconf} --without-pam"
- fi
-
- try ./configure --prefix=/usr --sysconfdir=/etc/ssh \
- --libexecdir=/usr/lib/misc --mandir=/usr/share/man \
- --with-ipv4-default --host=${CHOST} ${myconf}
- try make
-}
-
-src_install() {
-
- try make manpages install-files DESTDIR=${D}
- dodoc ChangeLog COPYING.* CREDITS OVERVIEW README* TODO
- insinto /etc/pam.d
- donewins ${FILESDIR}/sshd.pam sshd
- exeinto /etc/rc.d/init.d
- newexe ${FILESDIR}/openssh sshd
- newexe ${FILESDIR}/svc-openssh svc-sshd
- exeinto /var/lib/supervise/services/sshd
- newexe ${FILESDIR}/sshd-run run
-}
-
-
-pkg_postinst() {
- # Make ssh start at boot
- . ${ROOT}/etc/rc.d/config/functions
- einfo ">>> Generating symlinks"
- ${ROOT}/usr/sbin/rc-update add svc-sshd
-}
-