Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Jose Luis Rivero (yoswink)" <yoswink@g.o>
|
|
Subject:
|
gentoo-x86 commit in app-editors/xmlcopyeditor: ChangeLog xmlcopyeditor-1.2.0.2-r2.ebuild
|
|
Date:
|
Wed, 29 Apr 2009 18:58:32 +0000
|
|
yoswink 09/04/29 18:58:32
Modified: ChangeLog
Added: xmlcopyeditor-1.2.0.2-r2.ebuild
Log:
New revision. New dependency on libxml2-2.7.3-r1, see bug #264176 for details. Ebuild migrated to EAPI 2 format. Explicit RDEPEND = DEPEND.
(Portage version: 2.2_rc31/cvs/Linux i686)
Revision Changes Path
1.12 app-editors/xmlcopyeditor/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 24 Oct 2008 21:13:39 -0000 1.11
+++ ChangeLog 29 Apr 2009 18:58:32 -0000 1.12
@@ -1,6 +1,13 @@
# ChangeLog for app-editors/xmlcopyeditor
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v 1.11 2008/10/24 21:13:39 pvdabeel Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v 1.12 2009/04/29 18:58:32 yoswink Exp $
+
+*xmlcopyeditor-1.2.0.2-r2 (29 Apr 2009)
+
+ 29 Apr 2009; Jose Luis Rivero <yoswink@g.o>
+ +xmlcopyeditor-1.2.0.2-r2.ebuild:
+ New revision. New dependency on libxml2-2.7.3-r1, see bug #264176 for
+ details. Ebuild migrated to EAPI 2 format. Explicit RDEPEND = DEPEND.
*xmlcopyeditor-1.2.0.2-r1 (10 Oct 2008)
1.1 app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.2-r2.ebuild?rev=1.1&view=markup
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
Index: xmlcopyeditor-1.2.0.2-r2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $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 $
EAPI="2"
WX_GTK_VER="2.8"
inherit wxwidgets
DESCRIPTION="XML Copy Editor is a fast, free, validating XML editor"
HOMEPAGE="http://xml-copy-editor.sourceforge.net/"
SRC_URI="mirror://sourceforge/xml-copy-editor/${P}.tar.gz
guidexml? ( mirror://gentoo/GuideXML-templates.tar.gz )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="guidexml"
DEPEND=">=dev-libs/libxml2-2.7.3-r1 \
dev-libs/libxslt \
dev-libs/xerces-c \
dev-libs/boost \
dev-libs/libpcre \
app-text/aspell \
x11-libs/wxGTK:2.8[X]"
RDEPEND=${DEPEND}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
if use guidexml; then
insinto /usr/share/xmlcopyeditor/templates/
for TEMPLATE in "${WORKDIR}"/GuideXML-templates/*.xml; do
newins "${TEMPLATE}" "${TEMPLATE##*/}" || die "GuideXML templates failed"
done
fi
dodoc AUTHORS ChangeLog README NEWS
}
|
|