Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/iplog/
Date: Fri, 16 Jul 2021 01:35:00
Message-Id: 1626399202.9edbadd7a1a92eebb5a46ce0b89d614e114ac64e.sam@gentoo
1 commit: 9edbadd7a1a92eebb5a46ce0b89d614e114ac64e
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Sun Jul 11 14:30:42 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 01:33:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9edbadd7
7
8 net-analyzer/iplog: EAPI8 revbump, ebuild improvements
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Closes: https://github.com/gentoo/gentoo/pull/21603
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 net-analyzer/iplog/iplog-2.2.3-r3.ebuild | 31 +++++++++++++++++++++++++++++++
16 1 file changed, 31 insertions(+)
17
18 diff --git a/net-analyzer/iplog/iplog-2.2.3-r3.ebuild b/net-analyzer/iplog/iplog-2.2.3-r3.ebuild
19 new file mode 100644
20 index 00000000000..09cfb969491
21 --- /dev/null
22 +++ b/net-analyzer/iplog/iplog-2.2.3-r3.ebuild
23 @@ -0,0 +1,31 @@
24 +# Copyright 1999-2021 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=8
28 +
29 +inherit flag-o-matic toolchain-funcs
30 +
31 +DESCRIPTION="TCP/IP traffic logger"
32 +HOMEPAGE="http://ojnk.sourceforge.net/"
33 +SRC_URI="mirror://sourceforge/ojnk/${P}.tar.gz"
34 +
35 +LICENSE="|| ( GPL-2 FDL-1.1 )"
36 +SLOT="0"
37 +KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86"
38 +
39 +DEPEND="net-libs/libpcap"
40 +RDEPEND="${DEPEND}"
41 +
42 +PATCHES=( "${FILESDIR}"/${PV}-DLT_LINUX_SSL.patch )
43 +
44 +DOCS=( AUTHORS NEWS README TODO example-iplog.conf )
45 +
46 +src_compile() {
47 + append-cppflags -D_REENTRANT
48 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" all
49 +}
50 +
51 +src_install() {
52 + default
53 + newinitd "${FILESDIR}"/iplog.rc6 iplog
54 +}