public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/libpcap: ChangeLog libpcap-1.5.3.ebuild
@ 2014-01-22  9:13 Tim Harder (radhermit)
  0 siblings, 0 replies; 5+ messages in thread
From: Tim Harder (radhermit) @ 2014-01-22  9:13 UTC (permalink / raw
  To: gentoo-commits

radhermit    14/01/22 09:13:54

  Modified:             ChangeLog
  Added:                libpcap-1.5.3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.189                net-libs/libpcap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?rev=1.189&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?rev=1.189&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?r1=1.188&r2=1.189

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- ChangeLog	16 Dec 2013 02:40:11 -0000	1.188
+++ ChangeLog	22 Jan 2014 09:13:54 -0000	1.189
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/libpcap
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.188 2013/12/16 02:40:11 radhermit Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.189 2014/01/22 09:13:54 radhermit Exp $
+
+*libpcap-1.5.3 (22 Jan 2014)
+
+  22 Jan 2014; Tim Harder <radhermit@gentoo.org> +libpcap-1.5.3.ebuild:
+  Version bump.
 
 *libpcap-1.5.2 (16 Dec 2013)
 



1.1                  net-libs/libpcap/libpcap-1.5.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?rev=1.1&content-type=text/plain

Index: libpcap-1.5.3.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v 1.1 2014/01/22 09:13:54 radhermit Exp $

EAPI=5
inherit autotools eutils

DESCRIPTION="A system-independent library for user-level network packet capture"
HOMEPAGE="http://www.tcpdump.org/"
SRC_URI="http://www.tcpdump.org/release/${P}.tar.gz
	http://www.jp.tcpdump.org/release/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bluetooth dbus ipv6 netlink static-libs canusb"

RDEPEND="
	bluetooth? ( net-wireless/bluez )
	dbus? ( sys-apps/dbus )
	netlink? ( dev-libs/libnl )
	canusb? ( virtual/libusb )
"
DEPEND="${RDEPEND}
	sys-devel/flex
	virtual/pkgconfig
	virtual/yacc
"

DOCS=( CREDITS CHANGES VERSION TODO README{,.dag,.linux,.macosx,.septel} )

src_prepare() {
	epatch "${FILESDIR}"/${PN}-1.2.0-cross-linux.patch

	# Prefix' Solaris uses GNU ld
	sed -e 's/freebsd\*/freebsd*|solaris*/' \
		-e 's/sparc64\*/sparc64*|sparcv9*/'  \
		-i aclocal.m4 || die
	# Prefix' Darwin systems are single arch, hijack Darwin7 case which
	# assumes this setup
	sed -e 's/darwin\[0-7\]\./darwin*/' \
		-i configure.in || die

	eautoreconf
}

src_configure() {
	econf \
		$(use_enable bluetooth) \
		$(use_enable ipv6) \
		$(use_enable canusb) \
		$(use_enable dbus) \
		$(use_with netlink libnl)
}

src_compile() {
	emake all shared
}

src_install() {
	default

	# remove static libraries (--disable-static does not work)
	if ! use static-libs; then
		find "${ED}" -name '*.a' -exec rm {} + || die
	fi
	prune_libtool_files

	# We need this to build pppd on G/FBSD systems
	if [[ "${USERLAND}" == "BSD" ]]; then
		insinto /usr/include
		doins pcap-int.h
	fi
}





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/libpcap: ChangeLog libpcap-1.5.3.ebuild
@ 2014-06-08 11:57 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 5+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2014-06-08 11:57 UTC (permalink / raw
  To: gentoo-commits

nimiux      14/06/08 11:57:18

  Modified:             ChangeLog libpcap-1.5.3.ebuild
  Log:
  Stable for amd64 wrt bug #511502
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D628E536)

Revision  Changes    Path
1.191                net-libs/libpcap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?rev=1.191&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?rev=1.191&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?r1=1.190&r2=1.191

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -r1.190 -r1.191
--- ChangeLog	29 May 2014 12:33:57 -0000	1.190
+++ ChangeLog	8 Jun 2014 11:57:18 -0000	1.191
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libpcap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.190 2014/05/29 12:33:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.191 2014/06/08 11:57:18 nimiux Exp $
+
+  08 Jun 2014; Chema Alonso <nimiux@gentoo.org> libpcap-1.5.3.ebuild:
+  Stable for amd64 wrt bug #511502
 
   29 May 2014; Jeroen Roovers <jer@gentoo.org> libpcap-1.5.3.ebuild:
   Stable for HPPA (bug #511502).



1.3                  net-libs/libpcap/libpcap-1.5.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?r1=1.2&r2=1.3

Index: libpcap-1.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libpcap-1.5.3.ebuild	29 May 2014 12:33:57 -0000	1.2
+++ libpcap-1.5.3.ebuild	8 Jun 2014 11:57:18 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v 1.2 2014/05/29 12:33:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v 1.3 2014/06/08 11:57:18 nimiux Exp $
 
 EAPI=5
 inherit autotools eutils
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="bluetooth dbus ipv6 netlink static-libs canusb"
 
 RDEPEND="





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/libpcap: ChangeLog libpcap-1.5.3.ebuild
@ 2014-06-09 10:57 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2014-06-09 10:57 UTC (permalink / raw
  To: gentoo-commits

maekke      14/06/09 10:57:25

  Modified:             ChangeLog libpcap-1.5.3.ebuild
  Log:
  arm stable, bug #511502
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.192                net-libs/libpcap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?rev=1.192&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?rev=1.192&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?r1=1.191&r2=1.192

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- ChangeLog	8 Jun 2014 11:57:18 -0000	1.191
+++ ChangeLog	9 Jun 2014 10:57:24 -0000	1.192
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libpcap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.191 2014/06/08 11:57:18 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.192 2014/06/09 10:57:24 maekke Exp $
+
+  09 Jun 2014; Markus Meier <maekke@gentoo.org> libpcap-1.5.3.ebuild:
+  arm stable, bug #511502
 
   08 Jun 2014; Chema Alonso <nimiux@gentoo.org> libpcap-1.5.3.ebuild:
   Stable for amd64 wrt bug #511502



1.4                  net-libs/libpcap/libpcap-1.5.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?r1=1.3&r2=1.4

Index: libpcap-1.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libpcap-1.5.3.ebuild	8 Jun 2014 11:57:18 -0000	1.3
+++ libpcap-1.5.3.ebuild	9 Jun 2014 10:57:24 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v 1.3 2014/06/08 11:57:18 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v 1.4 2014/06/09 10:57:24 maekke Exp $
 
 EAPI=5
 inherit autotools eutils
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="bluetooth dbus ipv6 netlink static-libs canusb"
 
 RDEPEND="





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/libpcap: ChangeLog libpcap-1.5.3.ebuild
@ 2014-07-27 10:32 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2014-07-27 10:32 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    14/07/27 10:32:17

  Modified:             ChangeLog libpcap-1.5.3.ebuild
  Log:
  x86 stable wrt bug #511502
  
  (Portage version: 2.2.8-r1/cvs/Linux i686, RepoMan options: --ignore-arches, signed Manifest commit with key 0x4F1A2555EA71991D!)

Revision  Changes    Path
1.198                net-libs/libpcap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?rev=1.198&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?rev=1.198&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?r1=1.197&r2=1.198

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -r1.197 -r1.198
--- ChangeLog	23 Jul 2014 09:37:44 -0000	1.197
+++ ChangeLog	27 Jul 2014 10:32:17 -0000	1.198
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libpcap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.197 2014/07/23 09:37:44 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.198 2014/07/27 10:32:17 phajdan.jr Exp $
+
+  26 Jul 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> libpcap-1.5.3.ebuild:
+  x86 stable wrt bug #511502
 
 *libpcap-1.6.1-r1 (23 Jul 2014)
 



1.7                  net-libs/libpcap/libpcap-1.5.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?r1=1.6&r2=1.7

Index: libpcap-1.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libpcap-1.5.3.ebuild	20 Jul 2014 15:08:29 -0000	1.6
+++ libpcap-1.5.3.ebuild	27 Jul 2014 10:32:17 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v 1.6 2014/07/20 15:08:29 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v 1.7 2014/07/27 10:32:17 phajdan.jr Exp $
 
 EAPI=5
 inherit autotools eutils
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="bluetooth dbus ipv6 netlink static-libs canusb"
 
 RDEPEND="





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/libpcap: ChangeLog libpcap-1.5.3.ebuild
@ 2014-08-02 11:27 Raul Porcel (armin76)
  0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2014-08-02 11:27 UTC (permalink / raw
  To: gentoo-commits

armin76     14/08/02 11:27:58

  Modified:             ChangeLog libpcap-1.5.3.ebuild
  Log:
  sparc stable, bug #511502
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 0xF6AD3240)

Revision  Changes    Path
1.200                net-libs/libpcap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?rev=1.200&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?rev=1.200&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/ChangeLog?r1=1.199&r2=1.200

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -r1.199 -r1.200
--- ChangeLog	1 Aug 2014 19:13:45 -0000	1.199
+++ ChangeLog	2 Aug 2014 11:27:58 -0000	1.200
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libpcap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.199 2014/08/01 19:13:45 tgall Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.200 2014/08/02 11:27:58 armin76 Exp $
+
+  02 Aug 2014; Raúl Porcel <armin76@gentoo.org> libpcap-1.5.3.ebuild:
+  sparc stable, bug #511502
 
   01 Aug 2014;  <tgall@gentoo.org> libpcap-1.3.0-r1.ebuild,
   libpcap-1.6.1-r1.ebuild:



1.8                  net-libs/libpcap/libpcap-1.5.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild?r1=1.7&r2=1.8

Index: libpcap-1.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libpcap-1.5.3.ebuild	27 Jul 2014 10:32:17 -0000	1.7
+++ libpcap-1.5.3.ebuild	2 Aug 2014 11:27:58 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v 1.7 2014/07/27 10:32:17 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-1.5.3.ebuild,v 1.8 2014/08/02 11:27:58 armin76 Exp $
 
 EAPI=5
 inherit autotools eutils
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="bluetooth dbus ipv6 netlink static-libs canusb"
 
 RDEPEND="





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-08-02 11:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-02 11:27 [gentoo-commits] gentoo-x86 commit in net-libs/libpcap: ChangeLog libpcap-1.5.3.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2014-07-27 10:32 PaweA Hajdan (phajdan.jr)
2014-06-09 10:57 Markus Meier (maekke)
2014-06-08 11:57 JosA MarAa Alonso (nimiux)
2014-01-22  9:13 Tim Harder (radhermit)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox