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-java: ChangeLog monodevelop-java-2.2.ebuild
Date: Sat, 27 Feb 2010 01:07:08
Message-Id: E1NlB96-00022H-9a@stork.gentoo.org
1 patrick 10/02/27 01:07:04
2
3 Modified: ChangeLog
4 Added: monodevelop-java-2.2.ebuild
5 Log:
6 Bump, changed ikvm dep to ikvm-bin until ikvm is fixed
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 dev-util/monodevelop-java/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop-java/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop-java/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop-java/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/monodevelop-java/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:18:40 -0000 1.10
23 +++ ChangeLog 27 Feb 2010 01:07:03 -0000 1.11
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/monodevelop-java
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/monodevelop-java/ChangeLog,v 1.10 2009/10/18 12:18:40 loki_val Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodevelop-java/ChangeLog,v 1.11 2010/02/27 01:07:03 patrick Exp $
30 +
31 +*monodevelop-java-2.2 (27 Feb 2010)
32 +
33 + 27 Feb 2010; Patrick Lauer <patrick@g.o>
34 + +monodevelop-java-2.2.ebuild:
35 + Bump, changed ikvm dep to ikvm-bin until ikvm is fixed
36
37 *monodevelop-java-2.1.1 (18 Oct 2009)
38
39
40
41
42 1.1 dev-util/monodevelop-java/monodevelop-java-2.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop-java/monodevelop-java-2.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop-java/monodevelop-java-2.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: monodevelop-java-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-java/monodevelop-java-2.2.ebuild,v 1.1 2010/02/27 01:07:03 patrick Exp $
52
53 EAPI=2
54
55 inherit mono multilib
56
57 DESCRIPTION="Java 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-dotnet/gtk-sharp-2.12.9
68 >=dev-dotnet/glade-sharp-2.12.9
69 >=dev-dotnet/mono-addins-0.3.1
70 =dev-util/monodevelop-${PV}*
71 dev-dotnet/ikvm-bin"
72 # dev-dotnet/ikvm is currently not buildable, -bin appears to work
73
74 DEPEND="${RDEPEND}
75 >=dev-util/pkgconfig-0.19"
76
77 src_configure() {
78 MD_JAVA_CONFIG=""
79 if use debug; then
80 MD_JAVA_CONFIG="--config=DEBUG"
81 else
82 MD_JAVA_CONFIG="--config=RELEASE"
83 fi
84
85 ./configure \
86 --prefix=/usr \
87 ${MD_JAVA_CONFIG} \
88 || die "configure failed"
89 }
90
91 src_compile() {
92 emake -j1 || die "make failed"
93 }
94
95 src_install() {
96 emake -j1 DESTDIR="${D}" install || die "install failed"
97 mono_multilib_comply
98 }