blob: bdd5d139be1bc2403b5232e22cf8176e0245193f (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Analyze any RTP session through heuristics over UDP network traffic"
HOMEPAGE="http://xenion.reactive-search.com/?page_id=7"
SRC_URI="http://xenion.antifork.org/rtpbreak/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="net-libs/libnet:1.1
>=net-libs/libpcap-0.7"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-limits.patch
"${FILESDIR}"/${P}-missing-headers.patch
)
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
}
src_install() {
dobin src/rtpbreak
einstalldocs
dodoc -r doc
}
|