Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/qxmledit: qxmledit-0.4.3.ebuild ChangeLog
Date: Sun, 31 Jan 2010 10:48:37
Message-Id: E1NbXM3-0004hZ-Bj@stork.gentoo.org
1 hwoarang 10/01/31 10:48:35
2
3 Modified: ChangeLog
4 Added: qxmledit-0.4.3.ebuild
5 Log:
6 Version bump. Fixes bug #302462
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 app-editors/qxmledit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/qxmledit/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/qxmledit/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/qxmledit/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/qxmledit/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 21 Dec 2009 15:36:04 -0000 1.2
23 +++ ChangeLog 31 Jan 2010 10:48:34 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-editors/qxmledit
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-editors/qxmledit/ChangeLog,v 1.2 2009/12/21 15:36:04 hwoarang Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/qxmledit/ChangeLog,v 1.3 2010/01/31 10:48:34 hwoarang Exp $
30 +
31 +*qxmledit-0.4.3 (31 Jan 2010)
32 +
33 + 31 Jan 2010; <hwoarang@g.o> +qxmledit-0.4.3.ebuild:
34 + Version bump. Fixes bug #302462
35
36 *qxmledit-0.3.0-r1 (21 Dec 2009)
37
38
39
40
41 1.1 app-editors/qxmledit/qxmledit-0.4.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/qxmledit/qxmledit-0.4.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/qxmledit/qxmledit-0.4.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: qxmledit-0.4.3.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-editors/qxmledit/qxmledit-0.4.3.ebuild,v 1.1 2010/01/31 10:48:34 hwoarang Exp $
51
52 EAPI="2"
53
54 inherit qt4-r2
55
56 MY_P="${PN}-${PV}.src"
57
58 DESCRIPTION="Qt4 XML Editor"
59 HOMEPAGE="http://code.google.com/p/qxmledit/"
60 SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tgz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug"
66
67 DEPEND="x11-libs/qt-gui:4"
68 RDEPEND="${DEPEND}"
69
70 S="${WORKDIR}/${P}/src/"
71
72 DOCS="AUTHORS NEWS README TODO"
73 DOCSDIR="${WORKDIR}/${P}/"
74
75 src_prepare(){
76 # fix installation path
77 sed -i "/^target.path/ s/\/opt\/${PN}/\/usr\/bin/" QXmlEdit.pro || \
78 die "failed to fix installation path"
79 # fix translations
80 sed -i "/^translations.path/ s/\/opt/\/usr\/share/" QXmlEdit.pro || \
81 die "failed to fix translations"
82 qt4-r2_src_prepare
83 }