diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-02-19 16:50:55 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-02-19 16:50:55 +0000 |
commit | ced48787868878a7ef006485bc0138d31a935ee0 (patch) | |
tree | 9738e9a64085720a44c6383a0f0749087d23b6b9 /dev-cpp/clucene | |
parent | Stable for HPPA (bug #355439). (diff) | |
download | gentoo-2-ced48787868878a7ef006485bc0138d31a935ee0.tar.gz gentoo-2-ced48787868878a7ef006485bc0138d31a935ee0.tar.bz2 gentoo-2-ced48787868878a7ef006485bc0138d31a935ee0.zip |
Drop older.
(Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp/clucene')
-rw-r--r-- | dev-cpp/clucene/ChangeLog | 5 | ||||
-rw-r--r-- | dev-cpp/clucene/clucene-0.9.21b.ebuild | 42 |
2 files changed, 4 insertions, 43 deletions
diff --git a/dev-cpp/clucene/ChangeLog b/dev-cpp/clucene/ChangeLog index 0c228b452543..15f401dba72d 100644 --- a/dev-cpp/clucene/ChangeLog +++ b/dev-cpp/clucene/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-cpp/clucene # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/clucene/ChangeLog,v 1.38 2011/02/19 13:42:19 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/clucene/ChangeLog,v 1.39 2011/02/19 16:50:55 scarabeus Exp $ + + 19 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org> -clucene-0.9.21b.ebuild: + old 19 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> clucene-0.9.21b-r1.ebuild: diff --git a/dev-cpp/clucene/clucene-0.9.21b.ebuild b/dev-cpp/clucene/clucene-0.9.21b.ebuild deleted file mode 100644 index b848e511957a..000000000000 --- a/dev-cpp/clucene/clucene-0.9.21b.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/clucene/clucene-0.9.21b.ebuild,v 1.15 2010/04/30 15:45:45 grobian Exp $ - -inherit eutils - -MY_P=${PN}-core-${PV} - -DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++" -HOMEPAGE="http://clucene.sourceforge.net/" -SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.bz2" - -LICENSE="|| ( Apache-2.0 LGPL-2.1 )" -SLOT="1" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="debug doc threads" - -DEPEND="doc? ( >=app-doc/doxygen-1.4.2 )" -RDEPEND="" - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-gcc44.patch #254254 -} - -src_compile() { - econf $(use_enable debug) \ - $(use_enable debug cnddebug) \ - $(use_enable threads multithreading) || die "econf failed" - emake || die "emake failed" - if use doc ; then - emake doxygen || die "making docs failed" - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "installation failed" - use doc && dohtml "${S}"/doc/html/* -} |