blob: c6cb66095f13ec46f86ff35bd804b0a62126dcd8 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/sslh/sslh-1.10.ebuild,v 1.1 2011/11/28 08:39:50 radhermit Exp $
EAPI="4"
inherit toolchain-funcs
DESCRIPTION="SSLH lets one accept both HTTPS and SSH connections on the same port"
HOMEPAGE="http://www.rutschle.net/tech/sslh.shtml"
SRC_URI="http://www.rutschle.net/tech/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="tcpd"
RDEPEND="tcpd? ( sys-apps/tcp-wrappers )"
DEPEND="${RDEPEND}
dev-lang/perl"
RESTRICT="test"
src_prepare() {
sed -i \
-e '/strip sslh/d' \
-e '/^LIBS=/s:$: $(LDFLAGS):' \
-e '/^CFLAGS=/d' \
Makefile || die
}
src_compile() {
emake \
CC="$(tc-getCC)" \
USELIBWRAP=$(usev tcpd)
}
src_install() {
dobin sslh-{fork,select}
dosym sslh-fork /usr/bin/sslh
doman sslh.8.gz
dodoc ChangeLog README
newinitd "${FILESDIR}"/sslh.init.d sslh
newconfd "${FILESDIR}"/sslh.conf.d sslh
}
|