blob: d77e00474f5c4e1808e8f94d3f7574dc279c9a78 (
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
60
61
62
63
|
# 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.44_alpha4.ebuild,v 1.1 2004/09/22 19:00:28 vapier Exp $
inherit gnuconfig eutils
MY_P="${P/_alpha/test}"
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/${MY_P}.tar.bz2
http://matt.ucc.asn.au/dropbear/testing/${MY_P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="-*"
IUSE="zlib multicall static"
DEPEND="zlib? ( sys-libs/zlib )"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
gnuconfig_update
epatch ${FILESDIR}/${PV}-install.patch
}
src_compile() {
econf `use_enable zlib` || die
if use multicall ; then
sed -i \
-e '/define DROPBEAR_MULTI/s:/\* *::' \
-e '/define DROPBEAR_MULTI/s:\*/::' \
options.h
if use static ; then
emake dropbearmultistatic || die "multi static failed"
else
emake dropbearmulti || die "multi failed"
fi
else
emake || die "make failed"
fi
}
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 ${multibin} /usr/bin/dbclient || die
dosym ../bin/${multibin} /usr/sbin/dropbear || die
else
make install DESTDIR=${D} || die
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
}
|