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 87E8213832E for ; Tue, 26 Jul 2016 13:46:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78F8FE09A9; Tue, 26 Jul 2016 13:46:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C4042E09A9 for ; Tue, 26 Jul 2016 13:46:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7DCEC340CCE for ; Tue, 26 Jul 2016 13:46:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 504CE2416 for ; Tue, 26 Jul 2016 13:46:33 +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: <1469540791.928258746d25d2461a909dded7bb323b2b0f0d7a.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libpcap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libpcap/libpcap-9999.ebuild X-VCS-Directories: net-libs/libpcap/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 928258746d25d2461a909dded7bb323b2b0f0d7a X-VCS-Branch: master Date: Tue, 26 Jul 2016 13:46:33 +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: 6179b814-dcff-41ee-b5db-d617576d9c86 X-Archives-Hash: 23243b04ae5ea7b6cf6bdd9eb1828526 commit: 928258746d25d2461a909dded7bb323b2b0f0d7a Author: Jeroen Roovers gentoo org> AuthorDate: Tue Jul 26 13:45:41 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Tue Jul 26 13:46:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92825874 net-libs/libpcap: Update live ebuild. Package-Manager: portage-2.3.0 net-libs/libpcap/libpcap-9999.ebuild | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/net-libs/libpcap/libpcap-9999.ebuild b/net-libs/libpcap/libpcap-9999.ebuild index 5a09a15..1c311cd 100644 --- a/net-libs/libpcap/libpcap-9999.ebuild +++ b/net-libs/libpcap/libpcap-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit autotools eutils git-r3 multilib-minimal DESCRIPTION="A system-independent library for user-level network packet capture" @@ -12,7 +12,7 @@ EGIT_REPO_URI="https://github.com/the-tcpdump-group/libpcap" LICENSE="BSD" SLOT="0" KEYWORDS="" -IUSE="bluetooth dbus ipv6 netlink static-libs canusb" +IUSE="bluetooth dbus netlink static-libs canusb" RDEPEND=" bluetooth? ( net-wireless/bluez:=[${MULTILIB_USEDEP}] ) @@ -26,16 +26,20 @@ DEPEND="${RDEPEND} dbus? ( virtual/pkgconfig[${MULTILIB_USEDEP}] ) " +PATCHES=( + "${FILESDIR}"/${PN}-1.2.0-cross-linux.patch + "${FILESDIR}"/${PN}-1.6.1-configure.patch + "${FILESDIR}"/${PN}-1.6.1-prefix-solaris.patch + "${FILESDIR}"/${PN}-1.7.2-libnl.patch + ) src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-1.2.0-cross-linux.patch \ - "${FILESDIR}"/${PN}-1.6.1-configure.patch \ - "${FILESDIR}"/${PN}-1.6.1-prefix-solaris.patch \ - "${FILESDIR}"/${PN}-1.7.2-libnl.patch + default mkdir bluetooth || die cp "${FILESDIR}"/mgmt.h bluetooth/ || die + eapply_user + eautoreconf } @@ -43,7 +47,6 @@ multilib_src_configure() { ECONF_SOURCE="${S}" \ econf \ $(use_enable bluetooth) \ - $(use_enable ipv6) \ $(use_enable canusb) \ $(use_enable dbus) \ $(use_with netlink libnl)