Gentoo Archives: gentoo-commits

From: "Miroslav Sulc (fordfrog)" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/netbeans: ChangeLog netbeans-6.5-r2.ebuild
Date: Thu, 04 Dec 2008 18:40:03
Message-Id: E1L8J7I-0000yp-Ed@stork.gentoo.org
1 fordfrog 08/12/04 18:40:00
2
3 Modified: ChangeLog netbeans-6.5-r2.ebuild
4 Log:
5 Another fix of the check of what modules are missing in netbeans modules
6 (Portage version: 2.1.6_rc2/cvs/Linux 2.6.27-gentoo x86_64)
7
8 Revision Changes Path
9 1.98 dev-util/netbeans/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/ChangeLog?rev=1.98&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/ChangeLog?rev=1.98&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/ChangeLog?r1=1.97&r2=1.98
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-util/netbeans/ChangeLog,v
18 retrieving revision 1.97
19 retrieving revision 1.98
20 diff -u -r1.97 -r1.98
21 --- ChangeLog 4 Dec 2008 12:15:51 -0000 1.97
22 +++ ChangeLog 4 Dec 2008 18:40:00 -0000 1.98
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-util/netbeans
25 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/ChangeLog,v 1.97 2008/12/04 12:15:51 fordfrog Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/ChangeLog,v 1.98 2008/12/04 18:40:00 fordfrog Exp $
28 +
29 + 04 Dec 2008; Miroslav Šulc <fordfrog@g.o> netbeans-6.5-r2.ebuild:
30 + Another fix of the check of what modules are missing in netbeans modules
31
32 04 Dec 2008; Miroslav Šulc <fordfrog@g.o> netbeans-6.5-r2.ebuild:
33 Fixed bug in checking of what netbeans modules need to be added
34
35
36
37 1.5 dev-util/netbeans/netbeans-6.5-r2.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/netbeans-6.5-r2.ebuild?rev=1.5&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/netbeans-6.5-r2.ebuild?rev=1.5&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/netbeans-6.5-r2.ebuild?r1=1.4&r2=1.5
42
43 Index: netbeans-6.5-r2.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/dev-util/netbeans/netbeans-6.5-r2.ebuild,v
46 retrieving revision 1.4
47 retrieving revision 1.5
48 diff -u -r1.4 -r1.5
49 --- netbeans-6.5-r2.ebuild 4 Dec 2008 12:15:51 -0000 1.4
50 +++ netbeans-6.5-r2.ebuild 4 Dec 2008 18:40:00 -0000 1.5
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/netbeans-6.5-r2.ebuild,v 1.4 2008/12/04 12:15:51 fordfrog Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/netbeans-6.5-r2.ebuild,v 1.5 2008/12/04 18:40:00 fordfrog Exp $
56
57 EAPI="2"
58 WANT_SPLIT_ANT="true"
59 @@ -385,15 +385,15 @@
60 fi
61
62 local missing=""
63 - [ -n "$}need_apisupport}" ] && ! use netbeans_modules_apisupport && missing="${missing} apisupport"
64 - [ -n "$}need_groovy}" ] && ! use netbeans_modules_groovy && missing="${missing} groovy"
65 - [ -n "$}need_gsf}" ] && ! use netbeans_modules_gsf && missing="${missing} gsf"
66 - [ -n "$}need_harness}" ] && ! use netbeans_modules_harness && missing="${missing} harness"
67 - [ -n "$}need_ide}" ] && ! use netbeans_modules_ide && missing="${missing} ide"
68 - [ -n "$}need_j2ee}" ] && ! use netbeans_modules_j2ee && missing="${missing} j2ee"
69 - [ -n "$}need_java}" ] && ! use netbeans_modules_java && missing="${missing} java"
70 - [ -n "$}need_websvccommon}" ] && ! use netbeans_modules_websvccommon && missing="${missing} websvccommon"
71 - [ -n "$}need_xml}" ] && ! use netbeans_modules_xml && missing="${missing} xml"
72 + [ -n "${need_apisupport}" ] && ! use netbeans_modules_apisupport && missing="${missing} apisupport"
73 + [ -n "${need_groovy}" ] && ! use netbeans_modules_groovy && missing="${missing} groovy"
74 + [ -n "${need_gsf}" ] && ! use netbeans_modules_gsf && missing="${missing} gsf"
75 + [ -n "${need_harness}" ] && ! use netbeans_modules_harness && missing="${missing} harness"
76 + [ -n "${need_ide}" ] && ! use netbeans_modules_ide && missing="${missing} ide"
77 + [ -n "${need_j2ee}" ] && ! use netbeans_modules_j2ee && missing="${missing} j2ee"
78 + [ -n "${need_java}" ] && ! use netbeans_modules_java && missing="${missing} java"
79 + [ -n "${need_websvccommon}" ] && ! use netbeans_modules_websvccommon && missing="${missing} websvccommon"
80 + [ -n "${need_xml}" ] && ! use netbeans_modules_xml && missing="${missing} xml"
81
82 if [ -n "${missing}" ] ; then
83 eerror "You need to add these modules to NETBEANS_MODULES because they are needed by modules you have selected"