mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
25 lines
578 B
Bash
25 lines
578 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="2"
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="Trace TCP/UDP/... sessions and fetch application data."
|
|
HOMEPAGE="http://chaosreader.sourceforge.net"
|
|
SRC_URI="https://dev.gentoo.org/~spock/portage/distfiles/${P}.bz2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x86-macos"
|
|
LICENSE="GPL-2"
|
|
IUSE=""
|
|
DEPEND=">=dev-lang/perl-5.8.0"
|
|
S=${WORKDIR}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/chaosreader-0.94-zombies.patch
|
|
}
|
|
|
|
src_install() {
|
|
newbin ${P} chaosreader || die
|
|
}
|