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 18:39:11
Message-Id: 20120501182949.A55272004B@flycatcher.gentoo.org
1 jer 12/05/01 18:29:49
2
3 Modified: ChangeLog libnl-3.2.8.ebuild
4 Log:
5 Remove USE=dot dependency for app-doc/doxygen. Add a patch to fix building documentation.
6
7 (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.76 dev-libs/libnl/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.76&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.76&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?r1=1.75&r2=1.76
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v
19 retrieving revision 1.75
20 retrieving revision 1.76
21 diff -u -r1.75 -r1.76
22 --- ChangeLog 1 May 2012 17:10:04 -0000 1.75
23 +++ ChangeLog 1 May 2012 18:29:49 -0000 1.76
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/libnl
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.75 2012/05/01 17:10:04 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.76 2012/05/01 18:29:49 jer Exp $
29 +
30 + 01 May 2012; Jeroen Roovers <jer@g.o> libnl-3.2.8.ebuild,
31 + +files/libnl-3.2.8-doc.patch:
32 + Remove USE=dot dependency for app-doc/doxygen. Add a patch to fix building
33 + documentation.
34
35 01 May 2012; Jeroen Roovers <jer@g.o> libnl-3.2.8.ebuild:
36 Readd USE=doc.
37
38
39
40 1.3 dev-libs/libnl/libnl-3.2.8.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/libnl-3.2.8.ebuild?rev=1.3&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/libnl-3.2.8.ebuild?rev=1.3&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/libnl-3.2.8.ebuild?r1=1.2&r2=1.3
45
46 Index: libnl-3.2.8.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.8.ebuild,v
49 retrieving revision 1.2
50 retrieving revision 1.3
51 diff -u -r1.2 -r1.3
52 --- libnl-3.2.8.ebuild 1 May 2012 17:10:04 -0000 1.2
53 +++ libnl-3.2.8.ebuild 1 May 2012 18:29:49 -0000 1.3
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.8.ebuild,v 1.2 2012/05/01 17:10:04 jer Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.8.ebuild,v 1.3 2012/05/01 18:29:49 jer Exp $
59
60 EAPI=4
61 inherit autotools eutils multilib
62 @@ -16,14 +16,16 @@
63 DEPEND="
64 sys-devel/flex
65 virtual/yacc
66 - doc? ( app-doc/doxygen[dot,latex] )
67 + doc? ( app-doc/doxygen[latex] )
68 "
69
70 src_prepare() {
71 epatch \
72 "${FILESDIR}"/${PN}-1.1-vlan-header.patch
73 - sed -i doc/Makefile.am -e 's|api_refs|api_ref|g' || die
74 - eautomake
75 + if use doc; then
76 + epatch "${FILESDIR}"/${PN}-3.2.8-doc.patch
77 + eautomake
78 + fi
79 }
80
81 src_configure() {