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/nant: ChangeLog nant-0.86_beta1-r1.ebuild
Date: Fri, 05 Nov 2010 23:51:31
Message-Id: 20101105235118.4248A20051@flycatcher.gentoo.org
1 pacho 10/11/05 23:51:18
2
3 Modified: ChangeLog
4 Added: nant-0.86_beta1-r1.ebuild
5 Log:
6 Revision bump to force USE='bootstrap' as ndoc will go away due bug #342023.
7
8 (Portage version: 2.1.9.24/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.28 dev-dotnet/nant/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/nant/ChangeLog?rev=1.28&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/nant/ChangeLog?rev=1.28&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/nant/ChangeLog?r1=1.27&r2=1.28
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v
20 retrieving revision 1.27
21 retrieving revision 1.28
22 diff -u -r1.27 -r1.28
23 --- ChangeLog 7 Oct 2010 19:52:54 -0000 1.27
24 +++ ChangeLog 5 Nov 2010 23:51:17 -0000 1.28
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-dotnet/nant
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.27 2010/10/07 19:52:54 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.28 2010/11/05 23:51:17 pacho Exp $
30 +
31 +*nant-0.86_beta1-r1 (05 Nov 2010)
32 +
33 + 05 Nov 2010; Pacho Ramos <pacho@g.o> +nant-0.86_beta1-r1.ebuild:
34 + Revision bump to force USE='bootstrap' as ndoc will go away due bug
35 + #342023.
36
37 07 Oct 2010; Pacho Ramos <pacho@g.o> -nant-0.85.ebuild,
38 -files/nant-0.85-obselencense.patch, -files/nant-0.85-threadingfix.patch:
39
40
41
42 1.1 dev-dotnet/nant/nant-0.86_beta1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/nant/nant-0.86_beta1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/nant/nant-0.86_beta1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: nant-0.86_beta1-r1.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-dotnet/nant/nant-0.86_beta1-r1.ebuild,v 1.1 2010/11/05 23:51:17 pacho Exp $
52
53 EAPI="3"
54
55 inherit mono multilib eutils
56
57 DESCRIPTION=".NET build tool"
58 HOMEPAGE="http://nant.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/nant/${P/_/-}-src.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 RDEPEND=">=dev-lang/mono-2.0"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig"
69
70 # This build is not parallel build friendly
71 MAKEOPTS="${MAKEOPTS} -j1"
72
73 S="${WORKDIR}/${P/_/-}"
74
75 src_compile() {
76 emake || die
77 }
78
79 src_install() {
80 emake prefix="${ED}/usr" install || die "install failed"
81
82 # Fix ${ED} showing up in the nant wrapper script, as well as silencing
83 # warnings related to the log4net library
84 sed -i \
85 -e "s:${ED}::" \
86 -e "2iexport MONO_SILENT_WARNING=1" \
87 "${ED}"/usr/bin/nant || die "Sed nant failed"
88
89 dodoc README.txt || die
90 }