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.12.ebuild
Date: Fri, 31 Aug 2012 14:46:38
Message-Id: 20120831144627.2C65320DA2@flycatcher.gentoo.org
1 jer 12/08/31 14:46:27
2
3 Modified: ChangeLog
4 Added: libnl-3.2.12.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.96 dev-libs/libnl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.96&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.96&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?r1=1.95&r2=1.96
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v
20 retrieving revision 1.95
21 retrieving revision 1.96
22 diff -u -r1.95 -r1.96
23 --- ChangeLog 12 Aug 2012 15:18:09 -0000 1.95
24 +++ ChangeLog 31 Aug 2012 14:46:27 -0000 1.96
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.95 2012/08/12 15:18:09 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.96 2012/08/31 14:46:27 jer Exp $
30 +
31 +*libnl-3.2.12 (31 Aug 2012)
32 +
33 + 31 Aug 2012; Jeroen Roovers <jer@g.o> +libnl-3.2.12.ebuild:
34 + Version bump.
35
36 12 Aug 2012; Agostino Sarubbo <ago@g.o> libnl-1.1-r3.ebuild:
37 Stable for amd64, wrt bug #413583
38
39
40
41 1.1 dev-libs/libnl/libnl-3.2.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/libnl-3.2.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/libnl-3.2.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libnl-3.2.12.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.12.ebuild,v 1.1 2012/08/31 14:46:27 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="~amd64 ~arm ~hppa ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
61 IUSE="doc static-libs utils"
62
63 DEPEND="
64 sys-devel/flex
65 sys-devel/bison
66 doc? (
67 app-doc/doxygen[latex]
68 app-text/asciidoc
69 dev-python/pygments
70 dev-util/source-highlight
71 media-gfx/mscgen
72 )
73 "
74
75 src_prepare() {
76 epatch "${FILESDIR}"/${PN}-1.1-vlan-header.patch
77 }
78
79 src_configure() {
80 econf \
81 $(use_enable doc) \
82 $(use_enable static-libs static) \
83 $(use_enable utils cli)
84 }
85
86 src_compile() {
87 default
88 use doc && emake -C doc api_ref
89 }
90
91 src_install() {
92 default
93 if use doc; then
94 dohtml doc/api/*
95 fi
96
97 if ! use static-libs; then
98 rm -f "${D}"/usr/lib*/lib*.la
99 fi
100
101 dodoc ChangeLog
102 }