summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-04-30 11:40:12 +0000
committerAchim Gottinger <achim@gentoo.org>2001-04-30 11:40:12 +0000
commit1e4b581725e1a7a7c13b336f3a400ccddd16f81d (patch)
treefd15ffd5b93cf4325374f478fab91303c35bf2e4 /net-misc/openssh
parentCleanup (diff)
downloadgentoo-2-1e4b581725e1a7a7c13b336f3a400ccddd16f81d.tar.gz
gentoo-2-1e4b581725e1a7a7c13b336f3a400ccddd16f81d.tar.bz2
gentoo-2-1e4b581725e1a7a7c13b336f3a400ccddd16f81d.zip
Cleanup
Diffstat (limited to 'net-misc/openssh')
-rw-r--r--net-misc/openssh/files/digest-openssh-2.3.0_p1-r11
-rw-r--r--net-misc/openssh/files/digest-openssh-2.3.0_p1-r41
-rw-r--r--net-misc/openssh/openssh-2.3.0_p1-r4.ebuild52
3 files changed, 0 insertions, 54 deletions
diff --git a/net-misc/openssh/files/digest-openssh-2.3.0_p1-r1 b/net-misc/openssh/files/digest-openssh-2.3.0_p1-r1
deleted file mode 100644
index 894bbf191bc9..000000000000
--- a/net-misc/openssh/files/digest-openssh-2.3.0_p1-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b3d53dfb45da6e7bf88aaaf65b528aac openssh-2.3.0p1.tar.gz
diff --git a/net-misc/openssh/files/digest-openssh-2.3.0_p1-r4 b/net-misc/openssh/files/digest-openssh-2.3.0_p1-r4
deleted file mode 100644
index 894bbf191bc9..000000000000
--- a/net-misc/openssh/files/digest-openssh-2.3.0_p1-r4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b3d53dfb45da6e7bf88aaaf65b528aac openssh-2.3.0p1.tar.gz
diff --git a/net-misc/openssh/openssh-2.3.0_p1-r4.ebuild b/net-misc/openssh/openssh-2.3.0_p1-r4.ebuild
deleted file mode 100644
index c61511501fe3..000000000000
--- a/net-misc/openssh/openssh-2.3.0_p1-r4.ebuild
+++ /dev/null
@@ -1,52 +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-r4.ebuild,v 1.2 2001/01/18 18:22:11 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
- 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
-}
-