# 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 }