Gentoo Archives: gentoo-commits

From: "Jose Luis Rivero (yoswink)" <yoswink@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/xmlcopyeditor: ChangeLog xmlcopyeditor-1.2.0.2.ebuild xmlcopyeditor-1.1.0.7.ebuild
Date: Tue, 02 Sep 2008 11:26:28
Message-Id: E1KaU1h-0007uL-6t@stork.gentoo.org
1 yoswink 08/09/02 11:26:25
2
3 Modified: ChangeLog
4 Added: xmlcopyeditor-1.2.0.2.ebuild
5 Removed: xmlcopyeditor-1.1.0.7.ebuild
6 Log:
7 Version bump. Much faster background validation for DTDs and more readable parser error messages. It also fixes a number of minor bugs. Ebuild now introduces the dependency over wxGTK with X support. Remove old ebuild.
8 (Portage version: 2.2_rc7/cvs/Linux 2.6.24-mactel i686)
9
10 Revision Changes Path
11 1.9 app-editors/xmlcopyeditor/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 12 Aug 2008 23:46:27 -0000 1.8
24 +++ ChangeLog 2 Sep 2008 11:26:24 -0000 1.9
25 @@ -1,6 +1,15 @@
26 # ChangeLog for app-editors/xmlcopyeditor
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v 1.8 2008/08/12 23:46:27 yoswink Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v 1.9 2008/09/02 11:26:24 yoswink Exp $
30 +
31 +*xmlcopyeditor-1.2.0.2 (02 Sep 2008)
32 +
33 + 02 Sep 2008; Jose Luis Rivero <yoswink@g.o>
34 + -files/gcc-4.3-header-dependency.patch, -xmlcopyeditor-1.1.0.7.ebuild,
35 + +xmlcopyeditor-1.2.0.2.ebuild:
36 + Version bump. Much faster background validation for DTDs and more readable
37 + parser error messages. It also fixes a number of minor bugs. Ebuild now
38 + introduces the dependency over wxGTK with X support. Remove old ebuild.
39
40 *xmlcopyeditor-1.2.0.1 (12 Aug 2008)
41
42
43
44
45 1.1 app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2.ebuild?rev=1.1&content-type=text/plain
49
50 Index: xmlcopyeditor-1.2.0.2.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2.ebuild,v 1.1 2008/09/02 11:26:24 yoswink Exp $
55
56 WX_GTK_VER="2.8"
57
58 inherit wxwidgets
59
60 DESCRIPTION="XML Copy Editor is a fast, free, validating XML editor"
61 HOMEPAGE="http://xml-copy-editor.sourceforge.net/"
62 SRC_URI="mirror://sourceforge/xml-copy-editor/${P}.tar.gz
63 guidexml? ( mirror://gentoo/GuideXML-templates.tar.gz )"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="guidexml"
69
70 DEPEND="dev-libs/xerces-c \
71 dev-libs/boost \
72 dev-libs/libpcre \
73 app-text/aspell \
74 =x11-libs/wxGTK-2.8*"
75
76 pkg_setup() {
77 check_wxuse X
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die "make install failed"
82
83 if use guidexml; then
84 insinto /usr/share/xmlcopyeditor/templates/
85 for TEMPLATE in "${WORKDIR}"/GuideXML-templates/*.xml; do
86 newins "${TEMPLATE}" "${TEMPLATE##*/}" || die "GuideXML templates failed"
87 done
88 fi
89
90 dodoc AUTHORS ChangeLog README NEWS
91 }