From 4da37732be2c26ed4e87134347d593c5c5692132 Mon Sep 17 00:00:00 2001 From: thierry Date: Tue, 14 Aug 2007 13:30:08 +0000 Subject: Since the upgrade to boost-1.34, some sherlock search engines description (.src) were not parsed completely, and these engines were anavailable; fix that. Submitted by: Fabrice Colin (author) --- deskutils/pinot/Makefile | 2 +- deskutils/pinot/files/patch-boost-spirit-134 | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 deskutils/pinot/files/patch-boost-spirit-134 diff --git a/deskutils/pinot/Makefile b/deskutils/pinot/Makefile index b88c12526e9e..74047204da0c 100644 --- a/deskutils/pinot/Makefile +++ b/deskutils/pinot/Makefile @@ -6,7 +6,7 @@ PORTNAME= pinot PORTVERSION= 0.75 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MASTER_SITES= ${MASTER_SITE_BERLIOS} #MASTER_SITES= http://www.chez.com/colinf/pinot/ \ diff --git a/deskutils/pinot/files/patch-boost-spirit-134 b/deskutils/pinot/files/patch-boost-spirit-134 new file mode 100644 index 000000000000..d66a65b2b722 --- /dev/null +++ b/deskutils/pinot/files/patch-boost-spirit-134 @@ -0,0 +1,22 @@ +--- Search/SherlockParser.cpp.orig Tue Jun 19 16:15:11 2007 ++++ Search/SherlockParser.cpp Tue Aug 14 12:45:25 2007 +@@ -535,7 +535,8 @@ + userInput, nextInput, nextFactor, nextValue); + + parse_info<> parseInfo = boost::spirit::parse(pData, plugin, skip); +- fullParsing = parseInfo.full; ++ //fullParsing = parseInfo.full; ++ fullParsing = parseInfo.hit; + } + else + { +@@ -543,7 +544,8 @@ + plugin_min_grammar plugin(searchParams); + + parse_info<> parseInfo = boost::spirit::parse(pData, plugin, skip); +- fullParsing = parseInfo.full; ++ //fullParsing = parseInfo.full; ++ fullParsing = parseInfo.hit; + } + } + catch (const exception &e) -- cgit