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-r1.ebuild xmlcopyeditor-1.2.0.2.ebuild
Date: Fri, 10 Oct 2008 15:49:51
Message-Id: E1KoKFQ-0006f9-Ut@stork.gentoo.org
1 yoswink 08/10/10 15:49:48
2
3 Modified: ChangeLog
4 Added: xmlcopyeditor-1.2.0.2-r1.ebuild
5 Removed: xmlcopyeditor-1.2.0.2.ebuild
6 Log:
7 Add missing dependencies as per bug #239629
8 (Portage version: 2.2_rc11/cvs/Linux 2.6.24-mactel i686)
9
10 Revision Changes Path
11 1.10 app-editors/xmlcopyeditor/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 2 Sep 2008 11:26:24 -0000 1.9
24 +++ ChangeLog 10 Oct 2008 15:49:48 -0000 1.10
25 @@ -1,6 +1,12 @@
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.9 2008/09/02 11:26:24 yoswink Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v 1.10 2008/10/10 15:49:48 yoswink Exp $
30 +
31 +*xmlcopyeditor-1.2.0.2-r1 (10 Oct 2008)
32 +
33 + 10 Oct 2008; Jose Luis Rivero <yoswink@g.o>
34 + -xmlcopyeditor-1.2.0.2.ebuild, +xmlcopyeditor-1.2.0.2-r1.ebuild:
35 + Add missing dependencies as per bug #239629
36
37 *xmlcopyeditor-1.2.0.2 (02 Sep 2008)
38
39
40
41
42 1.1 app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xmlcopyeditor-1.2.0.2-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2-r1.ebuild,v 1.1 2008/10/10 15:49:48 yoswink Exp $
52
53 WX_GTK_VER="2.8"
54
55 inherit wxwidgets
56
57 DESCRIPTION="XML Copy Editor is a fast, free, validating XML editor"
58 HOMEPAGE="http://xml-copy-editor.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/xml-copy-editor/${P}.tar.gz
60 guidexml? ( mirror://gentoo/GuideXML-templates.tar.gz )"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="guidexml"
66
67 DEPEND="dev-libs/libxml2 \
68 dev-libs/libxslt \
69 dev-libs/xerces-c \
70 dev-libs/boost \
71 dev-libs/libpcre \
72 app-text/aspell \
73 =x11-libs/wxGTK-2.8*"
74
75 pkg_setup() {
76 check_wxuse X
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die "make install failed"
81
82 if use guidexml; then
83 insinto /usr/share/xmlcopyeditor/templates/
84 for TEMPLATE in "${WORKDIR}"/GuideXML-templates/*.xml; do
85 newins "${TEMPLATE}" "${TEMPLATE##*/}" || die "GuideXML templates failed"
86 done
87 fi
88
89 dodoc AUTHORS ChangeLog README NEWS
90 }