summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2009-11-14 14:01:23 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2009-11-14 14:01:23 +0000
commitb16a382bb0cfeaec44bf19e843fdcf608f88ff2e (patch)
tree3d4d42983a6b7dda1d7c6a6840363d14b2700dec /dev-libs/xqilla
parentQA: drop old masked. Since newer is around. (diff)
downloadgentoo-2-b16a382bb0cfeaec44bf19e843fdcf608f88ff2e.tar.gz
gentoo-2-b16a382bb0cfeaec44bf19e843fdcf608f88ff2e.tar.bz2
gentoo-2-b16a382bb0cfeaec44bf19e843fdcf608f88ff2e.zip
QA: Drop live version that has lots its purpose and is heavily out of sync.
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/xqilla')
-rw-r--r--dev-libs/xqilla/ChangeLog6
-rw-r--r--dev-libs/xqilla/xqilla-9999.ebuild55
2 files changed, 5 insertions, 56 deletions
diff --git a/dev-libs/xqilla/ChangeLog b/dev-libs/xqilla/ChangeLog
index 86a54e1801bc..75dafac178fb 100644
--- a/dev-libs/xqilla/ChangeLog
+++ b/dev-libs/xqilla/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/xqilla
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/ChangeLog,v 1.6 2009/08/10 12:40:06 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/ChangeLog,v 1.7 2009/11/14 14:01:23 scarabeus Exp $
+
+ 14 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org> -xqilla-9999.ebuild:
+ QA: Drop live version that has lots its purpose and is heavily out of
+ sync.
10 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> xqilla-2.2.0.ebuild,
+files/xqilla-2.2.0-gcc44.patch:
diff --git a/dev-libs/xqilla/xqilla-9999.ebuild b/dev-libs/xqilla/xqilla-9999.ebuild
deleted file mode 100644
index a876cdc25e0f..000000000000
--- a/dev-libs/xqilla/xqilla-9999.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/xqilla-9999.ebuild,v 1.2 2008/10/15 10:27:42 dev-zero Exp $
-
-ESVN_REPO_URI="http://xqilla.svn.sourceforge.net/svnroot/xqilla/trunk/xqilla"
-
-inherit autotools subversion
-
-DESCRIPTION="An XQuery and XPath 2 library and command line utility written in C++."
-HOMEPAGE="http://xqilla.sourceforge.net/HomePage"
-LICENSE="Sleepycat BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug doc faxpp htmltidy"
-
-RDEPEND="faxpp? ( dev-libs/faxpp )
- >=dev-libs/xerces-c-3.0.0
- htmltidy? ( app-text/htmltidy )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${PN}"
-
-src_unpack() {
- subversion_src_unpack
-
- cd "${S}"
- eautoreconf
-}
-
-src_compile() {
- econf \
- --with-xerces=/usr \
- $(use_enable debug) \
- $(use_with htmltidy tidy) \
- $(use_with faxpp faxpp /usr)
-
- 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
-}