Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/qgit: ChangeLog qgit-2.2.ebuild
Date: Sun, 03 Aug 2008 19:59:50
Message-Id: E1KPjk4-0005Kr-0t@stork.gentoo.org
1 jokey 08/08/03 19:59:48
2
3 Modified: ChangeLog
4 Added: qgit-2.2.ebuild
5 Log:
6 Version bump wrt bug #232173
7 (Portage version: 2.2_rc6/cvs/Linux 2.6.26-gentoo i686)
8
9 Revision Changes Path
10 1.41 dev-util/qgit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/ChangeLog?rev=1.41&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/ChangeLog?rev=1.41&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/ChangeLog?r1=1.40&r2=1.41
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/qgit/ChangeLog,v
19 retrieving revision 1.40
20 retrieving revision 1.41
21 diff -u -r1.40 -r1.41
22 --- ChangeLog 28 Jul 2008 21:19:00 -0000 1.40
23 +++ ChangeLog 3 Aug 2008 19:59:47 -0000 1.41
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/qgit
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/qgit/ChangeLog,v 1.40 2008/07/28 21:19:00 carlo Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/qgit/ChangeLog,v 1.41 2008/08/03 19:59:47 jokey Exp $
29 +
30 +*qgit-2.2 (03 Aug 2008)
31 +
32 + 03 Aug 2008; Markus Ullmann <jokey@g.o> +qgit-2.2.ebuild:
33 + Version bump wrt bug #232173
34
35 28 Jul 2008; Carsten Lohrke <carlo@g.o> qgit-2.0-r1.ebuild,
36 qgit-2.1.ebuild:
37
38
39
40 1.1 dev-util/qgit/qgit-2.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/qgit-2.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/qgit-2.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: qgit-2.2.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-util/qgit/qgit-2.2.ebuild,v 1.1 2008/08/03 19:59:47 jokey Exp $
50
51 EAPI="1"
52
53 inherit qt4
54
55 MY_PV=${PV//_/}
56 MY_P=${PN}-${MY_PV}
57
58 DESCRIPTION="GUI interface for git/cogito SCM"
59 HOMEPAGE="http://digilander.libero.it/mcostalba/"
60 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="2"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
65 IUSE=""
66
67 DEPEND="|| ( x11-libs/qt-gui:4 =x11-libs/qt-4.3*:4 )"
68 RDEPEND="${DEPEND}
69 >=dev-util/git-1.5.3"
70
71 S="${WORKDIR}/${PN}"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 sed -i -e '/^[[:space:]]*QMAKE_CXXFLAGS_RELEASE.*+=/s/-g3 -O[[:digit:]]//' src/src.pro
77 }
78
79 src_compile() {
80 eqmake4 || die "eqmake failed"
81 emake || die "emake failed"
82 }
83
84 src_install() {
85 newbin bin/qgit qgit4
86 dodoc README
87 }
88
89 pkg_postinst() {
90 elog "This is installed as qgit4 now so you can still use 1.5 series (Qt3-based)"
91 }