summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/xapian/xapian-0.9.5.ebuild')
-rw-r--r--dev-libs/xapian/xapian-0.9.5.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/dev-libs/xapian/xapian-0.9.5.ebuild b/dev-libs/xapian/xapian-0.9.5.ebuild
deleted file mode 100644
index 5eeb797163fa..000000000000
--- a/dev-libs/xapian/xapian-0.9.5.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-0.9.5.ebuild,v 1.1 2006/05/05 13:59:01 marienz Exp $
-
-DESCRIPTION="Xapian Probabilistic Information Retrieval library"
-HOMEPAGE="http://www.xapian.org/"
-SRC_URI="http://www.oligarchy.co.uk/xapian/${PV}/xapian-core-${PV}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~ppc ~x86"
-IUSE=""
-
-DEPEND="virtual/libc
- sys-apps/gawk
- sys-apps/grep
- sys-apps/sed
- sys-devel/libtool
- sys-devel/gcc"
-
-RDEPEND="virtual/libc"
-
-S=${WORKDIR}/xapian-core-${PV}
-
-
-src_test() {
- if has_version '<=dev-util/valgrind-2.3.0';
- then
- #valgrind-2.2 caused errors here.
- make check VALGRIND= || die "check failed"
- else
- make check || die "check failed"
- fi
-}
-
-
-src_install () {
- emake -j1 DESTDIR="${D}" install || die
-
- #docs tly et installed under /usr/share/doc/xapian-core,
- # lets move them under /usr/share/doc..
- mv "${D}/usr/share/doc/xapian-core" "${D}/usr/share/doc/${PF}"
-
- dodoc AUTHORS HACKING PLATFORMS README
-}