summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2000-12-11 18:55:53 +0000
committerAchim Gottinger <achim@gentoo.org>2000-12-11 18:55:53 +0000
commita67b3de2080e452c0ce64d485fbe58c2b77d97c7 (patch)
tree60ce02f261b0088211aa702574e735280575b53b /net-misc/openssh
parent*** empty log message *** (diff)
downloadgentoo-2-a67b3de2080e452c0ce64d485fbe58c2b77d97c7.tar.gz
gentoo-2-a67b3de2080e452c0ce64d485fbe58c2b77d97c7.tar.bz2
gentoo-2-a67b3de2080e452c0ce64d485fbe58c2b77d97c7.zip
*** empty log message ***
Diffstat (limited to 'net-misc/openssh')
-rw-r--r--net-misc/openssh/files/digest-openssh-2.3.0_p11
-rw-r--r--net-misc/openssh/openssh-2.3.0_p1.ebuild54
2 files changed, 0 insertions, 55 deletions
diff --git a/net-misc/openssh/files/digest-openssh-2.3.0_p1 b/net-misc/openssh/files/digest-openssh-2.3.0_p1
deleted file mode 100644
index 894bbf191bc9..000000000000
--- a/net-misc/openssh/files/digest-openssh-2.3.0_p1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b3d53dfb45da6e7bf88aaaf65b528aac openssh-2.3.0p1.tar.gz
diff --git a/net-misc/openssh/openssh-2.3.0_p1.ebuild b/net-misc/openssh/openssh-2.3.0_p1.ebuild
deleted file mode 100644
index 1b0cce193809..000000000000
--- a/net-misc/openssh/openssh-2.3.0_p1.ebuild
+++ /dev/null
@@ -1,54 +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.ebuild,v 1.2 2000/12/05 18:34:25 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=">=sys-apps/bash-2.04
- >=sys-apps/tcp-wrappers-7.6
- >=sys-libs/glibc-2.1.3
- >=sys-libs/pam-0.72
- >=dev-libs/openssl-0.9.6"
-
-src_compile() {
- try ./configure --prefix=/usr --sysconfdir=/etc/ssh \
- --libexecdir=/usr/libexec --mandir=/usr/man \
- --enable-gnome-askpass \
- --with-tcp-wrappers --with-ipv4-default --host=${CHOST}
- try make
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-# patch -p0 < contrib/chroot.diff
-}
-
-src_install() {
- try make manpages install-files DESTDIR=${D}
- dodoc ChangeLog COPYING.* CREDITS OVERVIEW README* TODO UPGRADING
- cd ${O}/files
- dodir /etc/rc.d/init.d/
- insinto /etc/rc.d/init.d
- insopts -m755
- doins sshd
- insinto /etc/pam.d
- donewins sshd.pam sshd
-}
-
-pkg_config() {
-
- # Make ssh start at boot
- echo "Generating symlinks"
- ${ROOT}/usr/sbin/rc-update add sshd
-
-}
-
-
-