diff options
author | 2012-03-15 10:03:41 +0000 | |
---|---|---|
committer | 2012-03-15 10:03:41 +0000 | |
commit | 8e47f6d6d452a182acd3eb6976ced8dec80235d9 (patch) | |
tree | 8ffcb723d870b4b458992f5b78cffb81c00d4f22 /dev-libs | |
parent | Version bump (diff) | |
download | gentoo-2-8e47f6d6d452a182acd3eb6976ced8dec80235d9.tar.gz gentoo-2-8e47f6d6d452a182acd3eb6976ced8dec80235d9.tar.bz2 gentoo-2-8e47f6d6d452a182acd3eb6976ced8dec80235d9.zip |
Remove buggy unstable version
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/xapian/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/xapian/xapian-1.2.7-r1.ebuild | 38 | ||||
-rw-r--r-- | dev-libs/xapian/xapian-1.2.7-r3.ebuild | 63 |
3 files changed, 5 insertions, 102 deletions
diff --git a/dev-libs/xapian/ChangeLog b/dev-libs/xapian/ChangeLog index a928b1be43a9..313f176f70fa 100644 --- a/dev-libs/xapian/ChangeLog +++ b/dev-libs/xapian/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/xapian # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.74 2012/03/14 02:21:24 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.75 2012/03/15 10:03:41 blueness Exp $ + + 15 Mar 2012; Anthony G. Basile <blueness@gentoo.org> -xapian-1.2.7-r1.ebuild, + -xapian-1.2.7-r3.ebuild: + Remove buggy unstable version 14 Mar 2012; Anthony G. Basile <blueness@gentoo.org> xapian-1.2.9.ebuild: Tested on ppc/ppc64 diff --git a/dev-libs/xapian/xapian-1.2.7-r1.ebuild b/dev-libs/xapian/xapian-1.2.7-r1.ebuild deleted file mode 100644 index 69360519d4cd..000000000000 --- a/dev-libs/xapian/xapian-1.2.7-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.7-r1.ebuild,v 1.1 2011/09/16 19:36:37 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 ~x86" -IUSE="doc static-libs" - -DEPEND="" -RDEPEND="" - -S="${WORKDIR}/${MY_P}" - -src_configure() { - econf $(use_enable static-libs static) -} - -src_install() { - emake DESTDIR="${D}" install - - mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}" - use doc || rm -fr "${D}usr/share/doc/${PF}" - - dodoc AUTHORS HACKING PLATFORMS README NEWS -} - -src_test() { - emake check VALGRIND= -} diff --git a/dev-libs/xapian/xapian-1.2.7-r3.ebuild b/dev-libs/xapian/xapian-1.2.7-r3.ebuild deleted file mode 100644 index bce6c07e9a52..000000000000 --- a/dev-libs/xapian/xapian-1.2.7-r3.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.7-r3.ebuild,v 1.1 2011/11/06 22:26:04 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 ~x86" -IUSE="doc static-libs -sse +sse2 +brass +chert +flint +inmemory +remote" - -DEPEND="" -RDEPEND="" - -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 -fr "${D}usr/share/doc/${PF}" - - dodoc AUTHORS HACKING PLATFORMS README NEWS -} - -src_test() { - emake check VALGRIND= -} |