summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-02-21 04:10:42 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-02-21 04:10:42 +0000
commitd84b401fc5975836f4e3a8d3de39d9f5e90041fa (patch)
tree01f8c3b84003c3af3f99fe44c56142470acbe2b2 /net-misc/ossh/ossh-1.5.12.ebuild
parentremove media-sound/ecamegapedal, bug 251219 (diff)
downloadgentoo-2-d84b401fc5975836f4e3a8d3de39d9f5e90041fa.tar.gz
gentoo-2-d84b401fc5975836f4e3a8d3de39d9f5e90041fa.tar.bz2
gentoo-2-d84b401fc5975836f4e3a8d3de39d9f5e90041fa.zip
remove net-misc/ossh, bug 251057
Diffstat (limited to 'net-misc/ossh/ossh-1.5.12.ebuild')
-rw-r--r--net-misc/ossh/ossh-1.5.12.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/net-misc/ossh/ossh-1.5.12.ebuild b/net-misc/ossh/ossh-1.5.12.ebuild
deleted file mode 100644
index 56a4f9e3f102..000000000000
--- a/net-misc/ossh/ossh-1.5.12.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ossh/ossh-1.5.12.ebuild,v 1.5 2007/01/05 09:03:53 flameeyes Exp $
-
-inherit flag-o-matic
-
-DESCRIPTION="another SSH implementation"
-HOMEPAGE="ftp://ftp.pdc.kth.se/pub/krypto/ossh/"
-SRC_URI="ftp://ftp.nada.kth.se/pub/krypto/ossh/${P}.tar.gz"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="x86"
-IUSE="zlib socks5"
-
-DEPEND="!virtual/ssh
- zlib? ( sys-libs/zlib )
- socks5? ( net-proxy/dante )
- dev-libs/gmp
- dev-libs/openssl"
-PROVIDE="virtual/ssh"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- sed -i '/^LIBS/s:$: -lcrypto:' Makefile.in
- sed -i 's:des\.h:openssl/des.h:' cipher.h
-}
-
-src_compile() {
- append-flags -I${ROOT}/usr/include/openssl
- econf \
- `use_with socks5 socks` \
- `use_with zlib` \
- --with-etcdir=/etc/ossh \
- || die
- emake || die
-}
-
-src_install() {
- dodir /usr/share /etc/ossh
- make \
- install_prefix=${D} \
- libexec=/usr/sbin \
- mandir=/usr/share/man \
- install || die
- dodoc ChangeLog OVERVIEW README TODO
-}