blob: 7d4d3189b9d1912d787827eae8d5146be6f85beb (
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
|
# 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.42.ebuild,v 1.2 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 mips arm"
IUSE="zlib"
DEPEND="zlib? ( sys-libs/zlib )"
src_compile() {
econf `use_enable zlib` || die
emake || die
}
src_install() {
make install DESTDIR=${D} || die
exeinto /etc/init.d ; newexe ${FILESDIR}/dropbear.init.d dropbear
insinto /etc/conf.d ; newins ${FILESDIR}/dropbear.conf.d dropbear
dodoc CHANGES README TODO SMALL
}
|