summaryrefslogtreecommitdiff
blob: 998780d7849d80bba5d4eb454453ecf6dcab1a03 (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

inherit autotools eutils

DESCRIPTION="MITM all SSL connections on a LAN and dynamically generates certs"
HOMEPAGE="http://thoughtcrime.org/software/sslsniff/"
SRC_URI="http://thoughtcrime.org/software/sslsniff/${P}.tar.gz"

LICENSE="GPL-3" # plus OpenSSL exception
SLOT="0"
KEYWORDS="~amd64 ~x86"

DEPEND="dev-libs/boost:=
	dev-libs/log4cpp:=
	dev-libs/openssl:0"
RDEPEND="${DEPEND}"

DOCS=( AUTHORS README )

# last two patches are taken from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652756
PATCHES=(
	"${FILESDIR}"/${PN}-0.6-asneeded.patch
	"${FILESDIR}"/${P}-error-redefinition.patch
	"${FILESDIR}"/${P}-fix-compatibility-with-boost-1.47-and-higher.patch
	"${FILESDIR}"/${P}-underlinking.patch
)

src_prepare() {
	epatch ${PATCHES[@]}
	epatch_user

	eautoreconf
}

src_install() {
	default

	insinto /usr/share/sslsniff
	doins leafcert.pem IPSCACLASEA1.crt

	insinto /usr/share/sslsniff/updates
	doins updates/*xml

	insinto /usr/share/sslsniff/certs
	doins certs/*
}