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/monodevelop-boo: ChangeLog monodevelop-boo-2.2.ebuild
Date: Thu, 25 Feb 2010 13:48:11
Message-Id: E1Nke4Q-0003nl-9o@stork.gentoo.org
1 patrick 10/02/25 13:48:02
2
3 Modified: ChangeLog
4 Added: monodevelop-boo-2.2.ebuild
5 Log:
6 Bump
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 dev-util/monodevelop-boo/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop-boo/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop-boo/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop-boo/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/monodevelop-boo/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 18 Oct 2009 12:17:24 -0000 1.10
23 +++ ChangeLog 25 Feb 2010 13:48:01 -0000 1.11
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/monodevelop-boo
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/monodevelop-boo/ChangeLog,v 1.10 2009/10/18 12:17:24 loki_val Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodevelop-boo/ChangeLog,v 1.11 2010/02/25 13:48:01 patrick Exp $
30 +
31 +*monodevelop-boo-2.2 (25 Feb 2010)
32 +
33 + 25 Feb 2010; Patrick Lauer <patrick@g.o>
34 + +monodevelop-boo-2.2.ebuild:
35 + Bump
36
37 *monodevelop-boo-2.1.1 (18 Oct 2009)
38
39
40
41
42 1.1 dev-util/monodevelop-boo/monodevelop-boo-2.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop-boo/monodevelop-boo-2.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop-boo/monodevelop-boo-2.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: monodevelop-boo-2.2.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/monodevelop-boo/monodevelop-boo-2.2.ebuild,v 1.1 2010/02/25 13:48:01 patrick Exp $
52
53 EAPI=2
54
55 inherit mono multilib
56
57 DESCRIPTION="Boo Extension for MonoDevelop"
58 HOMEPAGE="http://www.monodevelop.com/"
59 SRC_URI="http://ftp.novell.com/pub/mono/sources/${PN}/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="debug"
65
66 RDEPEND=">=dev-lang/mono-2.4
67 =dev-util/monodevelop-${PV}*
68 >=dev-lang/boo-0.8.2.2960
69 dev-dotnet/gtksourceview-sharp:1"
70
71 DEPEND="${RDEPEND}
72 >=dev-util/pkgconfig-0.23"
73
74 src_configure() {
75 MD_BOO_CONFIG=""
76 if use debug; then
77 MD_BOO_CONFIG="--config=DEBUG"
78 else
79 MD_BOO_CONFIG="--config=RELEASE"
80 fi
81
82 ./configure \
83 --prefix=/usr \
84 ${MD_BOO_CONFIG} \
85 || die "configure failed"
86 }
87
88 src_compile() {
89 emake -j1 || die "make failed"
90 }
91
92 src_install() {
93 emake -j1 DESTDIR="${D}" install || die "install failed"
94 mono_multilib_comply
95 }