From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 44D971384B4 for ; Tue, 10 Nov 2015 05:53:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CAE7BE0801; Tue, 10 Nov 2015 05:53:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68C97E0801 for ; Tue, 10 Nov 2015 05:53:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 76B8C340562 for ; Tue, 10 Nov 2015 05:53:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B5E91E4 for ; Tue, 10 Nov 2015 05:53:38 +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: <1447134811.32582f6f6f40abbc49aedafabd1aeb76dc89e91e.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/arping/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/arping/a.out net-analyzer/arping/arping-9999.ebuild X-VCS-Directories: net-analyzer/arping/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 32582f6f6f40abbc49aedafabd1aeb76dc89e91e X-VCS-Branch: master Date: Tue, 10 Nov 2015 05:53:38 +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-Archives-Salt: 28320137-c058-4fe8-bb74-6a9b7ca96cc4 X-Archives-Hash: 62106ed4748e907b143689ec72d25ff7 commit: 32582f6f6f40abbc49aedafabd1aeb76dc89e91e Author: Jeroen Roovers gentoo org> AuthorDate: Tue Nov 10 05:53:31 2015 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Tue Nov 10 05:53:31 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32582f6f net-analyzer/arping: Add live ebuild. Package-Manager: portage-2.2.24 net-analyzer/arping/a.out | 0 net-analyzer/arping/arping-9999.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/net-analyzer/arping/a.out b/net-analyzer/arping/a.out new file mode 100644 index 0000000..e69de29 diff --git a/net-analyzer/arping/arping-9999.ebuild b/net-analyzer/arping/arping-9999.ebuild new file mode 100644 index 0000000..e128982 --- /dev/null +++ b/net-analyzer/arping/arping-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools eutils fcaps git-r3 + +DESCRIPTION="ARP Ping" +HOMEPAGE="http://www.habets.pp.se/synscan/programs.php?prog=arping" +EGIT_REPO_URI="https://github.com/ThomasHabets/arping" + +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="" + +DEPEND=" + net-libs/libpcap + net-libs/libnet:1.1 +" +RDEPEND=" + ${DEPEND} + !net-misc/iputils[arping(+)] +" + +FILECAPS=( cap_net_raw /usr/sbin/arping ) + +src_prepare() { + eautoreconf +}