Gentoo Archives: gentoo-commits

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