blob: aa4d668fb56d401b5b03e316b3dcdabb7facd551 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbear/dropbear-2012.55.ebuild,v 1.1 2012/02/24 18:24:24 vapier Exp $
EAPI="4"
inherit eutils savedconfig pam
DESCRIPTION="small SSH 2 client/server designed for small memory environments"
HOMEPAGE="http://matt.ucc.asn.au/dropbear/dropbear.html"
SRC_URI="http://matt.ucc.asn.au/dropbear/releases/${P}.tar.bz2
http://matt.ucc.asn.au/dropbear/testing/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="bsdpty minimal multicall pam static syslog zlib"
DEPEND="static? ( zlib? ( sys-libs/zlib[static-libs] ) )
pam? ( virtual/pam )"
RDEPEND="${DEPEND}
!static? ( zlib? ( sys-libs/zlib ) )
pam? ( >=sys-auth/pambase-20080219.1 )"
REQUIRED_USE="pam? ( !static )"
set_options() {
progs="dropbear dbclient dropbearkey"
progs+=" $(usex minimal "" "dropbearconvert scp")"
use multicall && makeopts+=" MULTI=1"
use static && makeopts+=" STATIC=1"
}
src_prepare() {
epatch "${FILESDIR}"/dropbear-0.46-dbscp.patch
sed -i \
-e '/SFTPSERVER_PATH/s:".*":"/usr/lib/misc/sftp-server":' \
-e '/XAUTH_COMMAND/s:/X11R6/:/:' \
options.h
sed -i \
-e '/pam_start/s:sshd:dropbear:' \
svr-authpam.c || die
restore_config options.h
}
src_configure() {
econf \
$(use_enable zlib) \
$(use_enable pam) \
$(use_enable !bsdpty openpty) \
$(use_enable syslog)
}
src_compile() {
set_options
emake ${makeopts} PROGRAMS="${progs}"
}
src_install() {
set_options
emake install DESTDIR="${D}" ${makeopts} PROGRAMS="${progs}"
doman *.8
newinitd "${FILESDIR}"/dropbear.init.d dropbear
newconfd "${FILESDIR}"/dropbear.conf.d dropbear
dodoc CHANGES README TODO SMALL MULTI
# The multi install target does not install the links
if use multicall ; then
cd "${D}"/usr/bin
local x
for x in ${progs} ; do
ln -s dropbearmulti ${x} || die "ln -s dropbearmulti to ${x} failed"
done
rm -f dropbear
dodir /usr/sbin
dosym ../bin/dropbearmulti /usr/sbin/dropbear
cd "${S}"
fi
save_config options.h
if ! use minimal ; then
mv "${D}"/usr/bin/{,db}scp || die
fi
pamd_mimic system-remote-login dropbear auth account password session
}
pkg_preinst() {
enewgroup sshd 22
enewuser sshd 22 -1 /var/empty sshd
}
|