Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/ikvm-bin: ikvm-bin-0.42.0.6.ebuild ChangeLog
Date: Sun, 04 Jul 2010 21:27:15
Message-Id: 20100704212713.9AE192CE14@corvid.gentoo.org
1 pacho 10/07/04 21:27:13
2
3 Modified: ChangeLog
4 Added: ikvm-bin-0.42.0.6.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 dev-dotnet/ikvm-bin/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/ikvm-bin/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/ikvm-bin/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/ikvm-bin/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/ikvm-bin/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 27 Feb 2010 01:04:46 -0000 1.9
23 +++ ChangeLog 4 Jul 2010 21:27:13 -0000 1.10
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-dotnet/ikvm-bin
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ikvm-bin/ChangeLog,v 1.9 2010/02/27 01:04:46 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ikvm-bin/ChangeLog,v 1.10 2010/07/04 21:27:13 pacho Exp $
29 +
30 +*ikvm-bin-0.42.0.6 (04 Jul 2010)
31 +
32 + 04 Jul 2010; Pacho Ramos <pacho@g.o> +ikvm-bin-0.42.0.6.ebuild:
33 + Version bump with bugfixes.
34
35 *ikvm-bin-0.42.0.3 (27 Feb 2010)
36
37
38
39
40 1.1 dev-dotnet/ikvm-bin/ikvm-bin-0.42.0.6.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/ikvm-bin/ikvm-bin-0.42.0.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/ikvm-bin/ikvm-bin-0.42.0.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ikvm-bin-0.42.0.6.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-dotnet/ikvm-bin/ikvm-bin-0.42.0.6.ebuild,v 1.1 2010/07/04 21:27:13 pacho Exp $
50
51 inherit eutils mono multilib
52
53 MY_P=${P/-bin/}
54 MY_PN=${PN/-bin/}
55
56 DESCRIPTION="Java VM for .NET"
57 HOMEPAGE="http://www.ikvm.net/"
58 SRC_URI="mirror://sourceforge/${MY_PN}/${MY_PN}bin-${PV}.zip"
59 LICENSE="as-is"
60
61 SLOT="0"
62 S=${WORKDIR}/${MY_P}
63
64 KEYWORDS="~x86 ~amd64"
65 IUSE=""
66
67 DEPEND=">=dev-lang/mono-1.1
68 !dev-dotnet/ikvm
69 app-arch/unzip"
70 RDEPEND="${DEPEND}"
71
72 src_install() {
73 insinto /usr/$(get_libdir)/${MY_PN}
74 doins bin/* || die "doins failed"
75
76 for exe in ikvm ikvmc ikvmstub;
77 do
78 make_wrapper ${exe} "mono /usr/$(get_libdir)/${MY_PN}/${exe}.exe"
79 done
80
81 dodir /usr/$(get_libdir)/pkgconfig
82 sed -e "s:@VERSION@:${PV}:" \
83 -e "s:@LIBDIR@:$(get_libdir):" \
84 "${FILESDIR}"/ikvm-0.36.0.5.pc.in > "${D}"/usr/$(get_libdir)/pkgconfig/${MY_PN}.pc
85
86 for dll in IKVM.AWT.WinForms IKVM.OpenJDK.ClassLibrary IKVM.Runtime
87 do
88 gacutil -i bin/${dll}.dll -root "${D}"/usr/$(get_libdir) \
89 -gacdir /usr/$(get_libdir) -package ${dll} > /dev/null
90 done
91 }