Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/mono-tools: ChangeLog mono-tools-2.6.1.ebuild
Date: Sat, 27 Feb 2010 01:33:08
Message-Id: E1NlBYH-00038s-DB@stork.gentoo.org
1 patrick 10/02/27 01:33:05
2
3 Modified: ChangeLog
4 Added: mono-tools-2.6.1.ebuild
5 Log:
6 Bump
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.67 dev-util/mono-tools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mono-tools/ChangeLog?rev=1.67&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mono-tools/ChangeLog?rev=1.67&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mono-tools/ChangeLog?r1=1.66&r2=1.67
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/mono-tools/ChangeLog,v
19 retrieving revision 1.66
20 retrieving revision 1.67
21 diff -u -r1.66 -r1.67
22 --- ChangeLog 21 Feb 2010 14:59:13 -0000 1.66
23 +++ ChangeLog 27 Feb 2010 01:33:04 -0000 1.67
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/mono-tools
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/ChangeLog,v 1.66 2010/02/21 14:59:13 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/ChangeLog,v 1.67 2010/02/27 01:33:04 patrick Exp $
29 +
30 +*mono-tools-2.6.1 (27 Feb 2010)
31 +
32 + 27 Feb 2010; Patrick Lauer <patrick@g.o> +mono-tools-2.6.1.ebuild:
33 + Bump
34
35 *mono-tools-2.6 (21 Feb 2010)
36
37
38
39
40 1.1 dev-util/mono-tools/mono-tools-2.6.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mono-tools/mono-tools-2.6.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mono-tools/mono-tools-2.6.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: mono-tools-2.6.1.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/mono-tools-2.6.1.ebuild,v 1.1 2010/02/27 01:33:04 patrick Exp $
50
51 EAPI=2
52
53 inherit go-mono mono autotools
54
55 DESCRIPTION="Set of useful Mono related utilities"
56 HOMEPAGE="http://www.mono-project.com/"
57
58 LICENSE="GPL-2 MIT"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~x86"
61 IUSE="webkit gtkhtml +xulrunner"
62
63 RDEPEND="=virtual/monodoc-${GO_MONO_REL_PV}*
64 >=dev-dotnet/gtk-sharp-2.12.6
65 >=dev-dotnet/glade-sharp-2.12.6
66 >=dev-dotnet/gconf-sharp-2
67 gtkhtml? ( >=dev-dotnet/gtkhtml-sharp-2.24.0 )
68 webkit? ( >=dev-dotnet/webkit-sharp-0.2-r1 )
69 xulrunner? ( =dev-dotnet/gluezilla-2.6 )
70 "
71 DEPEND="${RDEPEND}
72 sys-devel/gettext
73 >=dev-util/pkgconfig-0.19"
74
75 PATCHES=( "${FILESDIR}/${PN}-2.4-html-renderer-fixes.patch" )
76
77 #Fails parallel make.
78 MAKEOPTS="${MAKEOPTS} -j1"
79
80 pkg_setup() {
81 if ! use webkit && ! use gtkhtml && ! use xulrunner
82 then
83 die "You must USE either webkit, gtkhtml or xulrunner"
84 fi
85 }
86
87 src_prepare() {
88 go-mono_src_prepare
89 eautoreconf
90 }
91
92 src_configure() {
93 econf --disable-dependency-tracking \
94 --disable-gecko \
95 $(use_enable gtkhtml) \
96 $(use_enable webkit) \
97 $(use_enable xulrunner monowebbrowser) \
98 || die "configure failed"
99 }
100
101 src_install() {
102 go-mono_src_install
103 # Defunct .desktop file, see bug 266694
104 find "${D}" -type f -name 'mprof-heap-viewer.desktop' -exec rm -f '{}' '+' || die "removal of mprof-heap-viewer.desktop failed"
105 }