diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-29 07:38:49 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-29 07:38:49 +0000 |
commit | 9b500c111c91f1571e9d5305ba3a224ae3e5935d (patch) | |
tree | 1787ac5b0212a47085365b458f083153e6743b0b /net-misc/ossh | |
parent | version bump (diff) | |
download | historical-9b500c111c91f1571e9d5305ba3a224ae3e5935d.tar.gz historical-9b500c111c91f1571e9d5305ba3a224ae3e5935d.tar.bz2 historical-9b500c111c91f1571e9d5305ba3a224ae3e5935d.zip |
initial ebuild
Diffstat (limited to 'net-misc/ossh')
-rw-r--r-- | net-misc/ossh/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/ossh/files/digest-ossh-1.5.12 | 1 | ||||
-rw-r--r-- | net-misc/ossh/ossh-1.5.12.ebuild | 49 |
3 files changed, 58 insertions, 0 deletions
diff --git a/net-misc/ossh/ChangeLog b/net-misc/ossh/ChangeLog new file mode 100644 index 000000000000..c33da0161de0 --- /dev/null +++ b/net-misc/ossh/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-misc/ossh +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ossh/ChangeLog,v 1.1 2004/05/29 07:38:49 vapier Exp $ + +*ossh-1.5.12 (29 May 2004) + + 29 May 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me cause i'm bored. diff --git a/net-misc/ossh/files/digest-ossh-1.5.12 b/net-misc/ossh/files/digest-ossh-1.5.12 new file mode 100644 index 000000000000..e03a33d396a0 --- /dev/null +++ b/net-misc/ossh/files/digest-ossh-1.5.12 @@ -0,0 +1 @@ +MD5 634495d7e1a188bf43df05d32a5454db ossh-1.5.12.tar.gz 359092 diff --git a/net-misc/ossh/ossh-1.5.12.ebuild b/net-misc/ossh/ossh-1.5.12.ebuild new file mode 100644 index 000000000000..3ad2d4351ae6 --- /dev/null +++ b/net-misc/ossh/ossh-1.5.12.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# 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.1 2004/05/29 07:38:49 vapier Exp $ + +inherit gnuconfig 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-misc/dante ) + dev-libs/gmp + dev-libs/openssl" +PROVIDE="virtual/ssh" + +src_unpack() { + unpack ${A} + cd ${S} + gnuconfig_update + 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 +} |