blob: b7fbfb158b6e40048677f2b3b0af60216741a525 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbear/dropbear-0.41.ebuild,v 1.5 2004/06/25 03:12:28 agriffis Exp $
DESCRIPTION="small SSH 2 server designed for small memory environments"
HOMEPAGE="http://matt.ucc.asn.au/dropbear/"
SRC_URI="http://matt.ucc.asn.au/dropbear/releases/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="x86 ppc arm"
IUSE="zlib"
DEPEND="zlib? ( sys-libs/zlib )"
src_compile() {
econf `use_enable zlib` || die
emake || die
}
src_install() {
make install DESTDIR=${D} || die
dodoc CHANGES README TODO
}
|