summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Redaelli <drizzt@gentoo.org>2007-07-24 14:14:39 +0000
committerTimothy Redaelli <drizzt@gentoo.org>2007-07-24 14:14:39 +0000
commit007aa43b557d599c51b130dae867256906512816 (patch)
tree864cac53f1c658a6eef37cc3f75911bf2e7ad5e5
parentAdd eclass/wxwidgets.eclass (diff)
downloaddrizzt-007aa43b557d599c51b130dae867256906512816.tar.gz
drizzt-007aa43b557d599c51b130dae867256906512816.tar.bz2
drizzt-007aa43b557d599c51b130dae867256906512816.zip
New ebuild wrt bug #167372
svn path=/; revision=137
-rw-r--r--app-editors/xmlcopyeditor/ChangeLog8
-rw-r--r--app-editors/xmlcopyeditor/Manifest14
-rw-r--r--app-editors/xmlcopyeditor/xmlcopyeditor-1.0.9.7.ebuild31
3 files changed, 53 insertions, 0 deletions
diff --git a/app-editors/xmlcopyeditor/ChangeLog b/app-editors/xmlcopyeditor/ChangeLog
new file mode 100644
index 0000000..b8aa1a1
--- /dev/null
+++ b/app-editors/xmlcopyeditor/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for app-editors/xmlcopyeditor
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+ 24 Jul 2007; Timothy Redaelli <drizzt@gentoo.org>
+ +xmlcopyeditor-1.0.9.7.ebuild:
+ New ebuild wrt bug #167372
+
diff --git a/app-editors/xmlcopyeditor/Manifest b/app-editors/xmlcopyeditor/Manifest
new file mode 100644
index 0000000..9c2e40b
--- /dev/null
+++ b/app-editors/xmlcopyeditor/Manifest
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+DIST GuideXML-templates.tar.gz 884 RMD160 0f4cbdf795a65fb1006fe5a43cb5ca18d594cf1a SHA1 c23e3540350129403e28298def1b171d082d6f0e SHA256 3ede041b74a64a3f262455728486a616ffb496fa0d6f3c50610387d9de0d742e
+DIST xmlcopyeditor-1.0.9.7.tar.gz 2808472 RMD160 e2430adcf14371a070a9c1b98ce83af1b2d09cc1 SHA1 9b1fad09224a0a0e608ebf65ee551fdf03dd0139 SHA256 7a48ff10204e3fd987222c53d59acd263d499c1cabfc1544391a500aa84c79ac
+EBUILD xmlcopyeditor-1.0.9.7.ebuild 866 RMD160 ac9e6e19ab06bb57e3af3882ff79d711b0d44450 SHA1 e88377bf50e516867ec4ce908506fb6f60e8a5dc SHA256 ea3564245950835cc352a50108b9cb73cc7d5928dd885e948c6dc0f19b94b8b8
+MISC ChangeLog 241 RMD160 79a5e1875ea202adeb9e1e95d74385886578d596 SHA1 d089f04a8924003b37af6ff8c9d10648ec91690d SHA256 5a77997b585a600d565a7db5a733e6bc52b2dc07437f1e7de82bd63dff1075c7
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.4 (GNU/Linux)
+
+iD8DBQFGpglljJyKLBkBVroRApVrAKCwts4sDpmQYsOrrCBvewJSNO96FwCg3Gxd
++gkHTE2F+gfYs/lu+aAd4k0=
+=lA5D
+-----END PGP SIGNATURE-----
diff --git a/app-editors/xmlcopyeditor/xmlcopyeditor-1.0.9.7.ebuild b/app-editors/xmlcopyeditor/xmlcopyeditor-1.0.9.7.ebuild
new file mode 100644
index 0000000..11d529a
--- /dev/null
+++ b/app-editors/xmlcopyeditor/xmlcopyeditor-1.0.9.7.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header:$
+
+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? ( http://dev.gentoo.org/~yoswink/xmlcopyeditor/GuideXML-templates.tar.gz )"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="guidexml"
+
+DEPEND="dev-libs/libpcre
+ dev-libs/boost
+ dev-libs/xerces-c
+ =x11-libs/wxGTK-2.8*"
+
+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
+}