Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/maloc: maloc-1.4.ebuild ChangeLog
Date: Tue, 02 Nov 2010 08:02:38
Message-Id: 20101102080234.45DCA20054@flycatcher.gentoo.org
1 jlec 10/11/02 08:02:34
2
3 Modified: maloc-1.4.ebuild ChangeLog
4 Log:
5 Fixed automagic doxygen usage
6
7 (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-libs/maloc/maloc-1.4.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/maloc/maloc-1.4.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/maloc/maloc-1.4.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/maloc/maloc-1.4.ebuild?r1=1.1&r2=1.2
15
16 Index: maloc-1.4.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/maloc/maloc-1.4.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- maloc-1.4.ebuild 31 Oct 2010 14:23:12 -0000 1.1
23 +++ maloc-1.4.ebuild 2 Nov 2010 08:02:34 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/maloc/maloc-1.4.ebuild,v 1.1 2010/10/31 14:23:12 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/maloc/maloc-1.4.ebuild,v 1.2 2010/11/02 08:02:34 jlec Exp $
29
30 EAPI="3"
31
32 @@ -12,11 +12,14 @@
33
34 SLOT="0"
35 LICENSE="GPL-2"
36 -IUSE="mpi static-libs"
37 +IUSE="doc mpi static-libs"
38 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
39
40 RDEPEND="
41 sys-libs/readline
42 + doc? (
43 + media-gfx/graphviz
44 + app-doc/doxygen )
45 mpi? ( virtual/mpi )"
46 DEPEND="${RDEPEND}"
47
48 @@ -25,18 +28,23 @@
49 src_prepare() {
50 epatch \
51 "${FILESDIR}"/${PV}-mpi.patch \
52 - "${FILESDIR}"/${PV}-asneeded.patch
53 + "${FILESDIR}"/${PV}-asneeded.patch \
54 + "${FILESDIR}"/${PV}-doc.patch
55 eautoreconf
56 }
57
58 src_configure() {
59 + local myconf
60 use mpi && export CC="mpicc"
61 + use doc || myconf="${myconf} --with-doxygen= --with-dot="
62
63 econf \
64 + --docdir="${EPREFIX}"/usr/share/doc/${PF} \
65 $(use_enable mpi) \
66 $(use_enable static-libs static) \
67 --disable-triplet \
68 - --enable-shared
69 + --enable-shared \
70 + ${myconf}
71 }
72
73 src_install() {
74
75
76
77 1.20 dev-libs/maloc/ChangeLog
78
79 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/maloc/ChangeLog?rev=1.20&view=markup
80 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/maloc/ChangeLog?rev=1.20&content-type=text/plain
81 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/maloc/ChangeLog?r1=1.19&r2=1.20
82
83 Index: ChangeLog
84 ===================================================================
85 RCS file: /var/cvsroot/gentoo-x86/dev-libs/maloc/ChangeLog,v
86 retrieving revision 1.19
87 retrieving revision 1.20
88 diff -u -r1.19 -r1.20
89 --- ChangeLog 31 Oct 2010 14:23:12 -0000 1.19
90 +++ ChangeLog 2 Nov 2010 08:02:34 -0000 1.20
91 @@ -1,6 +1,10 @@
92 # ChangeLog for dev-libs/maloc
93 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
94 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/maloc/ChangeLog,v 1.19 2010/10/31 14:23:12 jlec Exp $
95 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/maloc/ChangeLog,v 1.20 2010/11/02 08:02:34 jlec Exp $
96 +
97 + 02 Nov 2010; Justin Lecher <jlec@g.o> +files/1.4-doc.patch,
98 + maloc-1.4.ebuild:
99 + Fixed automagic doxygen usage
100
101 *maloc-1.4 (31 Oct 2010)