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 0B980138346 for ; Wed, 8 Jan 2020 09:30:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1ED3AE0896; Wed, 8 Jan 2020 09:30:32 +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 EAAD8E0896 for ; Wed, 8 Jan 2020 09:30:31 +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 7CD9A34DE74 for ; Wed, 8 Jan 2020 09:30:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A78B37 for ; Wed, 8 Jan 2020 09:30:29 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1578475826.948541e4b4ee308c4d3380b976f18e1de7ec74ba.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ipband/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ipband/ipband-0.8.1-r2.ebuild X-VCS-Directories: net-analyzer/ipband/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 948541e4b4ee308c4d3380b976f18e1de7ec74ba X-VCS-Branch: master Date: Wed, 8 Jan 2020 09:30:29 +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: 276f37f0-e800-4007-9e6a-2d2c2fa75252 X-Archives-Hash: 1fabf652a27c5b7b5a8d13f3527feda5 commit: 948541e4b4ee308c4d3380b976f18e1de7ec74ba Author: Jeroen Roovers gentoo org> AuthorDate: Wed Jan 8 09:29:39 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Jan 8 09:30:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=948541e4 net-analyzer/ipband: EAPI=7 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Jeroen Roovers gentoo.org> net-analyzer/ipband/ipband-0.8.1-r2.ebuild | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/net-analyzer/ipband/ipband-0.8.1-r2.ebuild b/net-analyzer/ipband/ipband-0.8.1-r2.ebuild new file mode 100644 index 00000000000..6d65e278291 --- /dev/null +++ b/net-analyzer/ipband/ipband-0.8.1-r2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="A pcap based IP traffic and bandwidth monitor" +HOMEPAGE="http://ipband.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + >=net-libs/libpcap-0.4 +" +RDEPEND=" + ${DEPEND} +" +PATCHES=( + "${FILESDIR}"/${P}-gentoo.patch + "${FILESDIR}"/${P}-postfix.patch +) + +src_configure() { + tc-export CC + default +} + +src_install() { + dobin ipband + doman ipband.8 + dodoc CHANGELOG README + + newinitd "${FILESDIR}"/ipband-init ipband + + insinto /etc/ + newins ipband.sample.conf ipband.conf +}