blob: f9ce55c252505410c9a46fbcaa273db18e255d67 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="tool for checking well known weaknesses in the TCP/IP protocol"
HOMEPAGE="http://lin.fsid.cvut.cz/~kra/index.html"
SRC_URI="http://lin.fsid.cvut.cz/~kra/hunt/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-exit.patch \
"${FILESDIR}"/${P}-flags.patch \
"${FILESDIR}"/${P}-log2.patch
}
src_compile() {
emake CC=$(tc-getCC)
}
src_install() {
dobin hunt
doman man/hunt.1
dodoc CHANGES README* TODO tpsetup/transproxy
}
|