summaryrefslogtreecommitdiff
blob: 3ad2d4351ae65b7f67fb0389257013ed7a0f71fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
}