blob: 2021fcdea4ee6bc4879b87dc0a7fd2fb61d7faef (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
MY_P=${P/_/}
MY_P=${MY_P/-/_}
DESCRIPTION="powerful tool for testing stability of utilizing IP protocols"
HOMEPAGE="http://www.mirrors.wiretapped.net/security/packet-construction/rain/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
SRC_URI="
mirror://ubuntu/pool/universe/r/${PN}/${MY_P}.orig.tar.gz
mirror://ubuntu/pool/universe/r/${PN}/${MY_P}-1.diff.gz
"
DOCS=( BUGS CHANGES README TODO )
S="${WORKDIR}/${MY_P/_/-}"
PATCHES=(
"${WORKDIR}"/${MY_P}-1.diff
"${FILESDIR}"/${P}-fno-common.patch
"${FILESDIR}"/${P}-gentoo.patch
"${FILESDIR}"/${P}-die-on-error.patch
)
src_prepare() {
default
eautoreconf
}
src_install() {
default
gunzip "${ED}"/usr/share/man/man1/${PN}.1.gz || die
}
|