summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2008-05-25 17:20:16 +0000
committerCaleb Tennis <caleb@gentoo.org>2008-05-25 17:20:16 +0000
commit892f4243903fd0fd789ca9dabcfe60d4d18a9347 (patch)
treebf17a5435a849f783f8547bf8be466884d5591a3 /app-misc/sphinx
parentInitial release. (diff)
downloadgentoo-2-892f4243903fd0fd789ca9dabcfe60d4d18a9347.tar.gz
gentoo-2-892f4243903fd0fd789ca9dabcfe60d4d18a9347.tar.bz2
gentoo-2-892f4243903fd0fd789ca9dabcfe60d4d18a9347.zip
remove older versions of sphinx
(Portage version: 2.1.5_rc10)
Diffstat (limited to 'app-misc/sphinx')
-rw-r--r--app-misc/sphinx/ChangeLog7
-rw-r--r--app-misc/sphinx/files/sphinx-0.9.7-fix-sandbox.patch14
-rw-r--r--app-misc/sphinx/sphinx-0.9.7.ebuild47
-rw-r--r--app-misc/sphinx/sphinx-0.9.8_rc1-r1.ebuild50
-rw-r--r--app-misc/sphinx/sphinx-0.9.8_rc1.ebuild51
5 files changed, 6 insertions, 163 deletions
diff --git a/app-misc/sphinx/ChangeLog b/app-misc/sphinx/ChangeLog
index e46fc33e37e0..2b5c798b5c72 100644
--- a/app-misc/sphinx/ChangeLog
+++ b/app-misc/sphinx/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-misc/sphinx
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/ChangeLog,v 1.8 2008/05/21 15:51:36 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/ChangeLog,v 1.9 2008/05/25 17:20:15 caleb Exp $
+
+ 25 May 2008; Caleb Tennis <caleb@gentoo.org>
+ -files/sphinx-0.9.7-fix-sandbox.patch, -sphinx-0.9.7.ebuild,
+ -sphinx-0.9.8_rc1.ebuild, -sphinx-0.9.8_rc1-r1.ebuild:
+ remove older versions
21 May 2008; Tiziano Müller <dev-zero@gentoo.org> sphinx-0.9.7.ebuild,
sphinx-0.9.8_rc1.ebuild:
diff --git a/app-misc/sphinx/files/sphinx-0.9.7-fix-sandbox.patch b/app-misc/sphinx/files/sphinx-0.9.7-fix-sandbox.patch
deleted file mode 100644
index ba51cbc56a52..000000000000
--- a/app-misc/sphinx/files/sphinx-0.9.7-fix-sandbox.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -ur sphinx-0.9.7-rc2.orig/Makefile.am sphinx-0.9.7-rc2/Makefile.am
---- sphinx-0.9.7-rc2.orig/Makefile.am 2007-03-31 12:41:51.000000000 +0000
-+++ sphinx-0.9.7-rc2/Makefile.am 2007-03-31 12:47:05.000000000 +0000
-@@ -1,8 +1,8 @@
- SUBDIRS = src
- EXTRA_DIST = api storage sphinx.conf.in sphinx.sln todo.txt example.sql
--sysconf_DATA = sphinx.conf.dist example.sql
-+#sysconf_DATA = sphinx.conf.dist example.sql
-
- install-data-hook:
-- mkdir -p $(localstatedir)/data && mkdir -p $(localstatedir)/log
-+# mkdir -p $(localstatedir)/data && mkdir -p $(localstatedir)/log
-
-
diff --git a/app-misc/sphinx/sphinx-0.9.7.ebuild b/app-misc/sphinx/sphinx-0.9.7.ebuild
deleted file mode 100644
index 33b85f8d71e3..000000000000
--- a/app-misc/sphinx/sphinx-0.9.7.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/sphinx-0.9.7.ebuild,v 1.3 2008/05/21 15:51:36 dev-zero Exp $
-
-inherit eutils autotools
-
-DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL"
-HOMEPAGE="http://www.sphinxsearch.com/"
-SRC_URI="http://sphinxsearch.com/downloads/${P}.tar.gz"
-RESTRICT="mirror"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="mysql postgres debug"
-
-DEPEND="mysql? ( virtual/mysql )
- postgres? ( virtual/postgresql-server )"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-fix-sandbox.patch
- eautoreconf
-}
-
-src_compile() {
- econf \
- $(use_with mysql) \
- $(use_with postgres) \
- $(use_with debug) || die "econf failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- dodoc doc/* example.sql
- dodir /etc/sphinx
- insinto /etc/sphinx
- doins sphinx.conf.dist
-
- dodir /var/lib/sphinx
- dodir /var/log/sphinx
- dodir /var/run/sphinx
-}
diff --git a/app-misc/sphinx/sphinx-0.9.8_rc1-r1.ebuild b/app-misc/sphinx/sphinx-0.9.8_rc1-r1.ebuild
deleted file mode 100644
index 6b40979b94d7..000000000000
--- a/app-misc/sphinx/sphinx-0.9.8_rc1-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/sphinx-0.9.8_rc1-r1.ebuild,v 1.2 2008/05/19 18:01:26 dev-zero Exp $
-
-inherit eutils autotools
-
-MY_P=${P/_/-}
-
-DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL"
-HOMEPAGE="http://www.sphinxsearch.com/"
-SRC_URI="http://sphinxsearch.com/downloads/${MY_P}.tar.gz"
-RESTRICT="mirror"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="mysql postgres debug"
-
-DEPEND="mysql? ( virtual/mysql )
- postgres? ( virtual/postgresql-base )"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- eautoreconf
-}
-
-src_compile() {
- econf \
- $(use_with mysql) \
- $(use_with postgres pgsql) \
- $(use_with debug) || die "econf failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- dodoc doc/* example.sql
- dodir /etc/sphinx
- insinto /etc/sphinx
- doins sphinx.conf.dist
-
- dodir /var/lib/sphinx
- dodir /var/log/sphinx
- dodir /var/run/sphinx
-}
diff --git a/app-misc/sphinx/sphinx-0.9.8_rc1.ebuild b/app-misc/sphinx/sphinx-0.9.8_rc1.ebuild
deleted file mode 100644
index 274624ec5f2d..000000000000
--- a/app-misc/sphinx/sphinx-0.9.8_rc1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/sphinx-0.9.8_rc1.ebuild,v 1.2 2008/05/21 15:51:36 dev-zero Exp $
-
-inherit eutils autotools
-
-MY_P=${P/_/-}
-
-DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL"
-HOMEPAGE="http://www.sphinxsearch.com/"
-SRC_URI="http://sphinxsearch.com/downloads/${MY_P}.tar.gz"
-RESTRICT="mirror"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="mysql postgres debug"
-
-DEPEND="mysql? ( virtual/mysql )
- postgres? ( virtual/postgresql-server )"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-# epatch "${FILESDIR}"/${P}-fix-sandbox.patch
- eautoreconf
-}
-
-src_compile() {
- econf \
- $(use_with mysql) \
- $(use_with postgres pgsql) \
- $(use_with debug) || die "econf failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- dodoc doc/* example.sql
- dodir /etc/sphinx
- insinto /etc/sphinx
- doins sphinx.conf.dist
-
- dodir /var/lib/sphinx
- dodir /var/log/sphinx
- dodir /var/run/sphinx
-}