diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2010-02-26 05:41:34 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2010-02-26 05:41:34 +0000 |
commit | 8e6ebfe6eeb0697a5ef1ffbe0e35fc906ddb6e02 (patch) | |
tree | 03205e8fd148ffa2b37f3a7504e15fc86cb5850c /dev-libs/xqilla | |
parent | Reapply patch, this time with workaround for an apparent bug in bash 3.2 and 4.0 (diff) | |
download | historical-8e6ebfe6eeb0697a5ef1ffbe0e35fc906ddb6e02.tar.gz historical-8e6ebfe6eeb0697a5ef1ffbe0e35fc906ddb6e02.tar.bz2 historical-8e6ebfe6eeb0697a5ef1ffbe0e35fc906ddb6e02.zip |
Drop old versions that depend on <xerces-c-3
Package-Manager: portage-2.2_rc62/cvs/Linux i686
Diffstat (limited to 'dev-libs/xqilla')
-rw-r--r-- | dev-libs/xqilla/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/xqilla/xqilla-2.1.3-r1.ebuild | 52 |
2 files changed, 4 insertions, 53 deletions
diff --git a/dev-libs/xqilla/ChangeLog b/dev-libs/xqilla/ChangeLog index bed3c1cc4805..748600662df0 100644 --- a/dev-libs/xqilla/ChangeLog +++ b/dev-libs/xqilla/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/xqilla # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/ChangeLog,v 1.8 2010/01/17 06:54:40 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/ChangeLog,v 1.9 2010/02/26 05:41:34 halcy0n Exp $ + + 26 Feb 2010; Mark Loeser <halcy0n@gentoo.org> -xqilla-2.1.3-r1.ebuild: + Drop old versions that depend on <xerces-c-3 17 Jan 2010; Ulrich Mueller <ulm@gentoo.org> xqilla-2.1.3-r1.ebuild: Fix LICENSE, bug 300426. diff --git a/dev-libs/xqilla/xqilla-2.1.3-r1.ebuild b/dev-libs/xqilla/xqilla-2.1.3-r1.ebuild deleted file mode 100644 index 21392cc1261e..000000000000 --- a/dev-libs/xqilla/xqilla-2.1.3-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/xqilla-2.1.3-r1.ebuild,v 1.2 2010/01/17 06:54:40 ulm Exp $ - -EAPI="2" - -inherit eutils - -MY_P="XQilla-${PV}" - -DESCRIPTION="An XQuery and XPath 2 library and command line utility written in C++." -HOMEPAGE="http://xqilla.sourceforge.net/HomePage" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="Apache-2.0 BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug doc faxpp htmltidy" - -RDEPEND="faxpp? ( dev-libs/faxpp ) - ~dev-libs/xerces-c-2.8.0[xqilla] - htmltidy? ( app-text/htmltidy )" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -S="${WORKDIR}/${MY_P}" - -src_configure() { - econf --with-xerces=/usr \ - $(use_enable debug) \ - $(use_with htmltidy tidy) \ - $(use_with faxpp faxpp /usr) -} -src_compile() { - emake || die "emake failed" - - if use doc; then - emake docs || die "emake docs failed" - emake devdocs || die "emake devdocs failed" - fi -} - -src_install () { - emake DESTDIR="${D}" install || die "emake docs failed" - - dodoc ChangeLog TODO - - if use doc; then - cd docs - dohtml -r dev-api dom3-api simple-api - fi -} |