Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libnl: ChangeLog libnl-3.2.8.ebuild
Date: Tue, 01 May 2012 16:11:04
Message-Id: 20120501161046.077232004B@flycatcher.gentoo.org
1 jer 12/05/01 16:10:46
2
3 Modified: ChangeLog
4 Added: libnl-3.2.8.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.73 dev-libs/libnl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.73&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.73&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?r1=1.72&r2=1.73
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v
20 retrieving revision 1.72
21 retrieving revision 1.73
22 diff -u -r1.72 -r1.73
23 --- ChangeLog 29 Apr 2012 16:42:33 -0000 1.72
24 +++ ChangeLog 1 May 2012 16:10:45 -0000 1.73
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libnl
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.72 2012/04/29 16:42:33 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.73 2012/05/01 16:10:45 jer Exp $
30 +
31 +*libnl-3.2.8 (01 May 2012)
32 +
33 + 01 May 2012; Jeroen Roovers <jer@g.o> +libnl-3.2.8.ebuild:
34 + Version bump.
35
36 29 Apr 2012; Markus Meier <maekke@g.o> libnl-1.1-r3.ebuild:
37 arm stable, bug #413583
38
39
40
41 1.1 dev-libs/libnl/libnl-3.2.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/libnl-3.2.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/libnl-3.2.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libnl-3.2.8.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.8.ebuild,v 1.1 2012/05/01 16:10:45 jer Exp $
51
52 EAPI=4
53 inherit eutils multilib
54
55 DESCRIPTION="A library for applications dealing with netlink socket"
56 HOMEPAGE="http://www.infradead.org/~tgr/libnl/"
57 SRC_URI="http://www.infradead.org/~tgr/libnl/files/${P}.tar.gz"
58 LICENSE="LGPL-2.1"
59 SLOT="3"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
61 IUSE="static-libs utils"
62
63 DEPEND="
64 sys-devel/flex
65 virtual/yacc
66 "
67
68 src_prepare() {
69 epatch \
70 "${FILESDIR}"/${PN}-1.1-vlan-header.patch
71 }
72
73 src_configure() {
74 econf $(use_enable static-libs static) $(use_enable utils cli)
75 }
76
77 src_install() {
78 default
79
80 if ! use static-libs; then
81 rm -f "${D}"/usr/lib*/lib*.la
82 fi
83
84 dodoc ChangeLog
85 }