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/qdevelop: ChangeLog qdevelop-0.26.1.ebuild
Date: Sat, 31 Jan 2009 21:45:27
Message-Id: E1LTNeY-0005xf-4T@stork.gentoo.org
1 jokey 09/01/31 21:45:26
2
3 Modified: ChangeLog
4 Added: qdevelop-0.26.1.ebuild
5 Log:
6 Version bump wrt bug 250618 thanks to Markos Chandras for the new ebuild
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 dev-util/qdevelop/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qdevelop/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qdevelop/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qdevelop/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/qdevelop/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 23 Jul 2008 13:08:32 -0000 1.6
23 +++ ChangeLog 31 Jan 2009 21:45:26 -0000 1.7
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/qdevelop
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/qdevelop/ChangeLog,v 1.6 2008/07/23 13:08:32 loki_val Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/qdevelop/ChangeLog,v 1.7 2009/01/31 21:45:26 jokey Exp $
30 +
31 +*qdevelop-0.26.1 (31 Jan 2009)
32 +
33 + 31 Jan 2009; <jokey@g.o> +qdevelop-0.26.1.ebuild:
34 + Version bump wrt bug 250618 thanks to Markos Chandras for the new ebuild
35
36 23 Jul 2008; Peter Alfredsen <loki_val@g.o>
37 +files/qdevelop-0.25-gcc43.patch, qdevelop-0.25-r1.ebuild:
38
39
40
41 1.1 dev-util/qdevelop/qdevelop-0.26.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qdevelop/qdevelop-0.26.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qdevelop/qdevelop-0.26.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: qdevelop-0.26.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/qdevelop/qdevelop-0.26.1.ebuild,v 1.1 2009/01/31 21:45:26 jokey Exp $
51
52 EAPI="2"
53
54 inherit base eutils qt4 toolchain-funcs
55
56 DESCRIPTION="A development environment entirely dedicated to Qt4."
57 HOMEPAGE="http://qdevelop.org/"
58 SRC_URI="http://qdevelop.org/public/release/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 KEYWORDS="~amd64 ~x86"
62 SLOT="0"
63 IUSE=""
64
65 DEPEND="
66 || (
67 ( x11-libs/qt-gui:4 x11-libs/qt-sql:4 )
68 >=x11-libs/qt-4.2:4 )"
69
70
71 QT4_BUILT_WITH_USE_CHECK="sqlite3"
72
73 src_configure() {
74 eqmake4 QDevelop.pro
75 }
76
77 src_compile() {
78 emake CXX=$(tc-getCXX) || die "emake failed"
79 }
80
81 src_install() {
82 dodoc ChangeLog.txt README.txt || die "dodoc failed"
83 dobin bin/qdevelop || die "dobin failed"
84 newicon "${S}"/resources/images/QDevelop.png qdevelop.png
85 domenu "${FILESDIR}"/qdevelop.desktop
86 }