summaryrefslogtreecommitdiff
path: root/app-misc/sphinx/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-misc/sphinx/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-misc/sphinx/files')
-rw-r--r--app-misc/sphinx/files/searchd.rc31
-rw-r--r--app-misc/sphinx/files/sphinx-2.0.1_beta-darwin8.patch22
2 files changed, 0 insertions, 53 deletions
diff --git a/app-misc/sphinx/files/searchd.rc b/app-misc/sphinx/files/searchd.rc
deleted file mode 100644
index 55ff0e9c9b77..000000000000
--- a/app-misc/sphinx/files/searchd.rc
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
- use logger
-}
-
-checkconfig() {
- if [ ! -f /etc/sphinx/sphinx.conf ] ; then
- eerror "Please create /etc/sphinx/sphinx.conf"
- eerror "Sample conf: /etc/sphinx/sphinx.conf.dist"
- return 1
- fi
- return 0
-}
-
-start() {
- checkconfig || return $?
-
- ebegin "Starting sphinx searchd"
- start-stop-daemon --start --exec /usr/bin/searchd
- eend $? "Failed to start sphinx searchd"
-}
-
-stop() {
- ebegin "Stopping sphinx searchd"
- start-stop-daemon --stop --exec /usr/bin/searchd
- eend $? "Failed to stop sphinx searchd"
-}
diff --git a/app-misc/sphinx/files/sphinx-2.0.1_beta-darwin8.patch b/app-misc/sphinx/files/sphinx-2.0.1_beta-darwin8.patch
deleted file mode 100644
index e0dcd54097fd..000000000000
--- a/app-misc/sphinx/files/sphinx-2.0.1_beta-darwin8.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Darwin8 has no backtrace functionalities yet
-
---- src/sphinxutils.cpp
-+++ src/sphinxutils.cpp
-@@ -1364,6 +1364,9 @@
- }
- sphSafeInfo ( iFD, "Stack bottom = 0x%p, thread stack size = 0x%x", pMyStack, iStackSize );
-
-+#ifndef SIGRETURN_FRAME_OFFSET
-+ sphLogFatal ( "Cannot get stack frame pointer on this architecture" );
-+#else
- while ( pMyStack && !bSafe )
- {
- sphSafeInfo ( iFD, "begin of manual backtrace:" );
-@@ -1421,6 +1424,7 @@
-
- break;
- }
-+#endif
-
- #if HAVE_BACKTRACE
- sphSafeInfo ( iFD, "begin of system backtrace:" );