diff options
Diffstat (limited to 'dev-libs/xapian/xapian-1.2.10.ebuild')
-rw-r--r-- | dev-libs/xapian/xapian-1.2.10.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/dev-libs/xapian/xapian-1.2.10.ebuild b/dev-libs/xapian/xapian-1.2.10.ebuild deleted file mode 100644 index 0c511c1ac098..000000000000 --- a/dev-libs/xapian/xapian-1.2.10.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.10.ebuild,v 1.1 2012/05/10 08:59:58 blueness Exp $ - -EAPI="4" - -MY_P="${PN}-core-${PV}" - -DESCRIPTION="Xapian Probabilistic Information Retrieval library" -HOMEPAGE="http://www.xapian.org/" -SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="doc static-libs -sse +sse2 +brass +chert +flint +inmemory +remote" - -DEPEND="sys-libs/zlib" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_configure() { - local myconf="" - - ewarn - if use sse2; then - ewarn "Using sse2" - myconf="${myconf} --enable-sse=sse2" - else - if use sse; then - ewarn "Using sse" - myconf="${myconf} --enable-sse=sse" - else - ewarn "Disabling sse and sse2" - myconf="${myconf} --disable-sse" - fi - fi - ewarn - - myconf="${myconf} $(use_enable static-libs static)" - - use brass || myconf="${myconf} --disable-backend-brass" - use chert || myconf="${myconf} --disable-backend-chert" - use flint || myconf="${myconf} --disable-backend-flint" - use inmemory || myconf="${myconf} --disable-backend-inmemory" - use remote || myconf="${myconf} --disable-backend-remote" - - econf $myconf -} - -src_install() { - emake DESTDIR="${D}" install - - mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}" - use doc || rm -rf "${D}usr/share/doc/${PF}" - - dodoc AUTHORS HACKING PLATFORMS README NEWS -} - -src_test() { - emake check VALGRIND= -} |