From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F1B0A139347 for ; Fri, 16 Jul 2021 01:35:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37CA4E0CCB; Fri, 16 Jul 2021 01:35:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 10C24E0C83 for ; Fri, 16 Jul 2021 01:35:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 14847342D16 for ; Fri, 16 Jul 2021 01:34:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A3E87DC for ; Fri, 16 Jul 2021 01:34:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1626399202.9edbadd7a1a92eebb5a46ce0b89d614e114ac64e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/iplog/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/iplog/iplog-2.2.3-r3.ebuild X-VCS-Directories: net-analyzer/iplog/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9edbadd7a1a92eebb5a46ce0b89d614e114ac64e X-VCS-Branch: master Date: Fri, 16 Jul 2021 01:34:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 93cdbbef-7875-4f07-8e33-1903aaeb6484 X-Archives-Hash: b498bff416057f8f67967950d1a5b497 commit: 9edbadd7a1a92eebb5a46ce0b89d614e114ac64e Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun Jul 11 14:30:42 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jul 16 01:33:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9edbadd7 net-analyzer/iplog: EAPI8 revbump, ebuild improvements Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/21603 Signed-off-by: Sam James gentoo.org> net-analyzer/iplog/iplog-2.2.3-r3.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/net-analyzer/iplog/iplog-2.2.3-r3.ebuild b/net-analyzer/iplog/iplog-2.2.3-r3.ebuild new file mode 100644 index 00000000000..09cfb969491 --- /dev/null +++ b/net-analyzer/iplog/iplog-2.2.3-r3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="TCP/IP traffic logger" +HOMEPAGE="http://ojnk.sourceforge.net/" +SRC_URI="mirror://sourceforge/ojnk/${P}.tar.gz" + +LICENSE="|| ( GPL-2 FDL-1.1 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86" + +DEPEND="net-libs/libpcap" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/${PV}-DLT_LINUX_SSL.patch ) + +DOCS=( AUTHORS NEWS README TODO example-iplog.conf ) + +src_compile() { + append-cppflags -D_REENTRANT + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" all +} + +src_install() { + default + newinitd "${FILESDIR}"/iplog.rc6 iplog +}