Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/tcptraceroute/
Date: Thu, 03 Sep 2020 08:23:43
Message-Id: 1599121418.fac63b866dff9c88a264bd752c5e702256411927.jer@gentoo
1 commit: fac63b866dff9c88a264bd752c5e702256411927
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 3 08:23:17 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 3 08:23:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fac63b86
7
8 net-analyzer/tcptraceroute: Update SRC_URI/EAPI
9
10 Package-Manager: Portage-3.0.5, Repoman-3.0.1
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 .../tcptraceroute-1.5_beta7-r3.ebuild | 39 ++++++++++++++++++++++
14 1 file changed, 39 insertions(+)
15
16 diff --git a/net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r3.ebuild b/net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r3.ebuild
17 new file mode 100644
18 index 00000000000..1479b57dfa8
19 --- /dev/null
20 +++ b/net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r3.ebuild
21 @@ -0,0 +1,39 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +inherit autotools
27 +
28 +DESCRIPTION="tcptraceroute is a traceroute implementation using TCP packets"
29 +HOMEPAGE="https://github.com/mct/tcptraceroute"
30 +SRC_URI="https://github.com/mct/${PN}/archive/${P/_}.tar.gz -> ${P}.tar.gz"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
35 +
36 +DEPEND="
37 + net-libs/libnet:1.1
38 + net-libs/libpcap
39 +"
40 +RDEPEND="${DEPEND}"
41 +RESTRICT="test"
42 +PATCHES=(
43 + "${FILESDIR}"/${P}-cross-compile-checks.patch
44 +)
45 +S=${WORKDIR}/${PN}-${P/_}
46 +
47 +src_prepare() {
48 + default
49 + eautoreconf
50 +}
51 +
52 +src_install() {
53 + dosbin tcptraceroute
54 + fowners root:wheel /usr/sbin/tcptraceroute
55 + fperms 4710 /usr/sbin/tcptraceroute
56 + doman tcptraceroute.1
57 + dodoc examples.txt README ChangeLog
58 + docinto html
59 + dodoc tcptraceroute.1.html
60 +}