Gentoo Archives: gentoo-commits

From: "Dominik Kapusta (ayoy)" <ayoy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-geosciences/gebabbel: gebabbel-0.3.ebuild ChangeLog
Date: Wed, 30 Sep 2009 16:39:16
Message-Id: E1Mt2Cw-00089x-Cn@stork.gentoo.org
1 ayoy 09/09/30 16:39:14
2
3 Modified: gebabbel-0.3.ebuild ChangeLog
4 Log:
5 Removed obsolete QT_BUILT_WITH_USE and the dependency on Qt metapackage, switched to EAPI=2 and fixed to make repoman happy
6 (Portage version: 2.2_rc42/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.4 sci-geosciences/gebabbel/gebabbel-0.3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/gebabbel/gebabbel-0.3.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/gebabbel/gebabbel-0.3.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/gebabbel/gebabbel-0.3.ebuild?r1=1.3&r2=1.4
14
15 Index: gebabbel-0.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/gebabbel-0.3.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- gebabbel-0.3.ebuild 27 Jul 2008 01:18:49 -0000 1.3
22 +++ gebabbel-0.3.ebuild 30 Sep 2009 16:39:13 -0000 1.4
23 @@ -1,35 +1,36 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/gebabbel-0.3.ebuild,v 1.3 2008/07/27 01:18:49 carlo Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/gebabbel-0.3.ebuild,v 1.4 2009/09/30 16:39:13 ayoy Exp $
29
30 -EAPI="1"
31 +EAPI="2"
32 inherit eutils qt4
33
34 +MY_PN=${PN/g/G}
35 +MY_P=${MY_PN}-${PV}
36 +
37 DESCRIPTION="QT-Frontend to load and convert gps tracks with gpsbabel"
38 HOMEPAGE="http://gebabbel.sourceforge.net/"
39 -SRC_URI="mirror://sourceforge/${PN}/Gebabbel-${PV}-Src.tar.gz"
40 +SRC_URI="mirror://sourceforge/${PN}/${MY_P}-Src.tar.gz"
41 LICENSE="GPL-2"
42 SLOT="0"
43 KEYWORDS="~amd64 ~x86"
44 IUSE=""
45 -DEPEND="|| ( ( x11-libs/qt-core:4 x11-libs/qt-gui:4 ) =x11-libs/qt-4.3*:4 )
46 +DEPEND="x11-libs/qt-core:4
47 + x11-libs/qt-gui:4[accessibility]"
48 +RDEPEND="${DEPEND}
49 sci-geosciences/gpsbabel"
50
51 -S="${WORKDIR}/Gebabbel-${PV}"
52 +S="${WORKDIR}/${MY_P}"
53
54 -QT4_BUILT_WITH_USE_CHECK="guiaccessibility"
55 -src_unpack() {
56 - unpack ${A}
57 - cd "${S}"
58 +src_prepare() {
59 epatch "${FILESDIR}/${P}-fix.diff"
60 }
61
62 -src_compile() {
63 - qmake || die
64 - emake || die
65 +src_configure() {
66 + eqmake4 ${MY_PN}.pro
67 }
68
69 src_install() {
70 - dobin bin/gebabbel || die
71 - dodoc CHANGELOG || die
72 + dobin bin/${PN} || die "dobin failed"
73 + dodoc CHANGELOG || die "dodoc failed"
74 }
75
76
77
78 1.4 sci-geosciences/gebabbel/ChangeLog
79
80 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/gebabbel/ChangeLog?rev=1.4&view=markup
81 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/gebabbel/ChangeLog?rev=1.4&content-type=text/plain
82 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/gebabbel/ChangeLog?r1=1.3&r2=1.4
83
84 Index: ChangeLog
85 ===================================================================
86 RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/ChangeLog,v
87 retrieving revision 1.3
88 retrieving revision 1.4
89 diff -u -r1.3 -r1.4
90 --- ChangeLog 27 Jul 2008 01:18:49 -0000 1.3
91 +++ ChangeLog 30 Sep 2009 16:39:13 -0000 1.4
92 @@ -1,6 +1,10 @@
93 # ChangeLog for sci-geosciences/gebabbel
94 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
95 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/ChangeLog,v 1.3 2008/07/27 01:18:49 carlo Exp $
96 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
97 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/ChangeLog,v 1.4 2009/09/30 16:39:13 ayoy Exp $
98 +
99 + 30 Sep 2009; Dominik Kapusta <ayoy@g.o> gebabbel-0.3.ebuild:
100 + Removed obsolete QT_BUILT_WITH_USE and the dependency on Qt metapackage,
101 + switched to EAPI=2 and fixed to make repoman happy
102
103 27 Jul 2008; Carsten Lohrke <carlo@g.o> gebabbel-0.3.ebuild:
104 Fix broken split Qt 4.4 dependencies, cf. bug 217161 comment 11.