Gentoo Archives: gentoo-commits

From: "Petteri Raty (betelgeuse)" <betelgeuse@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/gambas: gambas-2.8.2.ebuild ChangeLog
Date: Wed, 01 Oct 2008 17:35:49
Message-Id: E1Kl5c2-0001C9-3P@stork.gentoo.org
1 betelgeuse 08/10/01 17:35:46
2
3 Modified: gambas-2.8.2.ebuild ChangeLog
4 Log:
5 Use src_prepare and src_configure so that we don't run econf twice.
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 i686)
7
8 Revision Changes Path
9 1.4 dev-util/gambas/gambas-2.8.2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/gambas-2.8.2.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/gambas-2.8.2.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/gambas-2.8.2.ebuild?r1=1.3&r2=1.4
14
15 Index: gambas-2.8.2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-util/gambas/gambas-2.8.2.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- gambas-2.8.2.ebuild 27 Sep 2008 13:46:58 -0000 1.3
22 +++ gambas-2.8.2.ebuild 1 Oct 2008 17:35:45 -0000 1.4
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/gambas-2.8.2.ebuild,v 1.3 2008/09/27 13:46:58 betelgeuse Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/gambas-2.8.2.ebuild,v 1.4 2008/10/01 17:35:45 betelgeuse Exp $
28
29 EAPI="2"
30
31 @@ -101,10 +101,7 @@
32 einfo
33 }
34
35 -src_unpack() {
36 - unpack ${A}
37 - cd "${S}"
38 -
39 +src_prepare() {
40 if { ! use qt3; } && use gtk; then
41 ebegin "Applying sed no-Qt-use-GTK-workaround-patch (EXPERIMENTAL)"
42 # Gentoo-specific patch/workaround
43 @@ -204,7 +201,7 @@
44 eautoreconf || die "eautoreconf failed"
45 }
46
47 -src_compile() {
48 +src_configure() {
49 local myconf
50 local myconf_main
51 local myconf_qt
52 @@ -255,12 +252,9 @@
53 myconf_xml="$(use_enable xml xslt)"
54
55 econf --config-cache \
56 - ${myconf} ${myconf_main} ${myconf_qt} ${myconf_xml} \
57 - $(use_enable debug) --disable-profiling \
58 - --docdir=/usr/share/doc/${PF} --htmldir=/usr/share/doc/${PF}/html \
59 - || die "econf failed"
60 -
61 - emake || die "emake failed"
62 + ${myconf} ${myconf_main} ${myconf_qt} ${myconf_xml} \
63 + $(use_enable debug) --disable-profiling \
64 + --docdir=/usr/share/doc/${PF} --htmldir=/usr/share/doc/${PF}/html
65 }
66
67 my_dekstop_and_icon () {
68
69
70
71 1.52 dev-util/gambas/ChangeLog
72
73 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/ChangeLog?rev=1.52&view=markup
74 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/ChangeLog?rev=1.52&content-type=text/plain
75 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/ChangeLog?r1=1.51&r2=1.52
76
77 Index: ChangeLog
78 ===================================================================
79 RCS file: /var/cvsroot/gentoo-x86/dev-util/gambas/ChangeLog,v
80 retrieving revision 1.51
81 retrieving revision 1.52
82 diff -u -r1.51 -r1.52
83 --- ChangeLog 27 Sep 2008 13:46:58 -0000 1.51
84 +++ ChangeLog 1 Oct 2008 17:35:45 -0000 1.52
85 @@ -1,6 +1,9 @@
86 # ChangeLog for dev-util/gambas
87 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
88 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/ChangeLog,v 1.51 2008/09/27 13:46:58 betelgeuse Exp $
89 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/ChangeLog,v 1.52 2008/10/01 17:35:45 betelgeuse Exp $
90 +
91 + 01 Oct 2008; Petteri Räty <betelgeuse@g.o> gambas-2.8.2.ebuild:
92 + Use src_prepare and src_configure so that we don't run econf twice.
93
94 27 Sep 2008; Petteri Räty <betelgeuse@g.o> gambas-2.8.2.ebuild:
95 Use EAPI 2 use dependencies instead of built_with_use.