Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/mc: mc-1.4.ebuild ChangeLog
Date: Tue, 02 Nov 2010 09:15:43
Message-Id: 20101102091535.CB1E62003C@flycatcher.gentoo.org
1 jlec 10/11/02 09:15:35
2
3 Modified: mc-1.4.ebuild ChangeLog
4 Log:
5 Fixed automagic doxygen usage
6
7 (Portage version: 2.1.9.24/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 sci-libs/mc/mc-1.4.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mc/mc-1.4.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mc/mc-1.4.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mc/mc-1.4.ebuild?r1=1.1&r2=1.2
15
16 Index: mc-1.4.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/mc/mc-1.4.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- mc-1.4.ebuild 1 Nov 2010 14:52:26 -0000 1.1
23 +++ mc-1.4.ebuild 2 Nov 2010 09:15:35 -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/sci-libs/mc/mc-1.4.ebuild,v 1.1 2010/11/01 14:52:26 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/mc/mc-1.4.ebuild,v 1.2 2010/11/02 09:15:35 jlec Exp $
29
30 EAPI="2"
31
32 @@ -13,7 +13,7 @@
33 SLOT="0"
34 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
35 LICENSE="GPL-2"
36 -IUSE="debug"
37 +IUSE="debug doc"
38
39 RDEPEND="
40 dev-libs/maloc
41 @@ -23,7 +23,11 @@
42 sci-libs/punc
43 sci-libs/superlu
44 sci-libs/umfpack"
45 -DEPEND="${RDEPEND}"
46 +DEPEND="
47 + ${RDEPEND}
48 + doc? (
49 + media-gfx/graphviz
50 + app-doc/doxygen )"
51
52 S="${WORKDIR}"/${PN}
53
54 @@ -31,7 +35,8 @@
55 epatch \
56 "${FILESDIR}"/${PV}-superlu.patch \
57 "${FILESDIR}"/${PV}-overflow.patch \
58 - "${FILESDIR}"/${PV}-multilib.patch
59 + "${FILESDIR}"/${PV}-multilib.patch \
60 + "${FILESDIR}"/${PV}-doc.patch
61 sed \
62 -e 's:AMD_order:amd_order:g' \
63 -e 's:UMFPACK_numeric:umfpack_di_numeric:g' \
64 @@ -43,6 +48,9 @@
65 src_configure() {
66 local fetk_include
67 local fetk_lib
68 + local myconf
69 +
70 + use doc || myconf="${myconf} --with-doxygen= --with-dot="
71
72 fetk_include="${EPREFIX}"/usr/include
73 fetk_lib="${EPREFIX}"/usr/$(get_libdir)
74 @@ -60,9 +68,11 @@
75 export FETK_PMG_LIBRARY="${fetk_lib}"
76
77 econf \
78 + --docdir="${EPREFIX}"/usr/share/doc/${PF} \
79 $(use_enable debug vdebug) \
80 --disable-triplet \
81 - --enable-shared
82 + --enable-shared \
83 + ${myconf}
84 }
85
86 src_install() {
87
88
89
90 1.2 sci-libs/mc/ChangeLog
91
92 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mc/ChangeLog?rev=1.2&view=markup
93 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mc/ChangeLog?rev=1.2&content-type=text/plain
94 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mc/ChangeLog?r1=1.1&r2=1.2
95
96 Index: ChangeLog
97 ===================================================================
98 RCS file: /var/cvsroot/gentoo-x86/sci-libs/mc/ChangeLog,v
99 retrieving revision 1.1
100 retrieving revision 1.2
101 diff -u -r1.1 -r1.2
102 --- ChangeLog 1 Nov 2010 14:52:26 -0000 1.1
103 +++ ChangeLog 2 Nov 2010 09:15:35 -0000 1.2
104 @@ -1,6 +1,14 @@
105 # ChangeLog for sci-libs/mc
106 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
107 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/mc/ChangeLog,v 1.1 2010/11/01 14:52:26 jlec Exp $
108 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/mc/ChangeLog,v 1.2 2010/11/02 09:15:35 jlec Exp $
109 +
110 + 02 Nov 2010; Justin Lecher <jlec@g.o> +files/1.4-doc.patch,
111 + mc-1.4.ebuild:
112 + Fixed automagic doxygen usage
113 +
114 + 02 Nov 2010; Justin Lecher <jlec@g.o> +files/1.4-doc.patch,
115 + mc-1.4.ebuild:
116 + Fixed automagic doxygen usage
117
118 *mc-1.4 (01 Nov 2010)