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-r2.ebuild
Date: Wed, 29 Apr 2009 18:58:35
Message-Id: E1LzEzI-0001g7-RL@stork.gentoo.org
1 yoswink 09/04/29 18:58:32
2
3 Modified: ChangeLog
4 Added: xmlcopyeditor-1.2.0.2-r2.ebuild
5 Log:
6 New revision. New dependency on libxml2-2.7.3-r1, see bug #264176 for details. Ebuild migrated to EAPI 2 format. Explicit RDEPEND = DEPEND.
7 (Portage version: 2.2_rc31/cvs/Linux i686)
8
9 Revision Changes Path
10 1.12 app-editors/xmlcopyeditor/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 24 Oct 2008 21:13:39 -0000 1.11
23 +++ ChangeLog 29 Apr 2009 18:58:32 -0000 1.12
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-editors/xmlcopyeditor
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v 1.11 2008/10/24 21:13:39 pvdabeel Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v 1.12 2009/04/29 18:58:32 yoswink Exp $
30 +
31 +*xmlcopyeditor-1.2.0.2-r2 (29 Apr 2009)
32 +
33 + 29 Apr 2009; Jose Luis Rivero <yoswink@g.o>
34 + +xmlcopyeditor-1.2.0.2-r2.ebuild:
35 + New revision. New dependency on libxml2-2.7.3-r1, see bug #264176 for
36 + details. Ebuild migrated to EAPI 2 format. Explicit RDEPEND = DEPEND.
37
38 *xmlcopyeditor-1.2.0.2-r1 (10 Oct 2008)
39
40
41
42
43 1.1 app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2-r2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xmlcopyeditor-1.2.0.2-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2-r2.ebuild,v 1.1 2009/04/29 18:58:32 yoswink Exp $
53
54 EAPI="2"
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 ~ppc ~x86"
68 IUSE="guidexml"
69
70 DEPEND=">=dev-libs/libxml2-2.7.3-r1 \
71 dev-libs/libxslt \
72 dev-libs/xerces-c \
73 dev-libs/boost \
74 dev-libs/libpcre \
75 app-text/aspell \
76 x11-libs/wxGTK:2.8[X]"
77
78 RDEPEND=${DEPEND}
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 }