blob: c961e76fae9c22a2f0f1edc05aed1882d69b1234 (
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
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbear/dropbear-0.43.ebuild,v 1.6 2005/01/11 20:06:17 vapier Exp $
inherit gnuconfig
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="alpha amd64 arm hppa ia64 mips ppc sparc sh x86"
IUSE="zlib multicall static"
DEPEND="zlib? ( sys-libs/zlib )"
src_unpack() {
unpack ${A}
cd ${S}
gnuconfig_update
}
src_compile() {
econf `use_enable zlib` || die
local maketarget=""
if use multicall ; then
sed -i \
-e '/define DROPBEAR_MULTI/s:/\* *::' \
-e '/define DROPBEAR_MULTI/s:\*/::' \
options.h
use static \
&& maketarget="dropbearmultistatic" \
|| maketarget="dropbearmulti"
else
use static && maketarget="static"
fi
emake ${maketarget} || die "make ${maketarget} failed"
}
src_install() {
if use multicall ; then
local multibin="dropbearmulti"
use static && multibin="static${multibin}"
dodir /usr/bin /usr/sbin
dobin ${multibin} || die "dropbearmulti"
dosym ${multibin} /usr/bin/dropbearkey || die
dosym ${multibin} /usr/bin/dropbearconvert || die
dosym ../bin/${multibin} /usr/sbin/dropbear || die
else
local maketarget="install"
use static && maketarget="install-static"
make ${maketarget} DESTDIR=${D} || die "make ${maketarget} failed"
fi
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
}
|