packaging/debian/debiankio/rules-4
File was removed.
packaging/debian/debiankio/control-4 to packaging/debian/debiankio/patches/kioslave.patch
--- a/packaging/debian/debiankio/control-4 +++ b/packaging/debian/debiankio/patches/kioslave.patch @@ -1,33 +1,77 @@ -Source: kio-recoll -Section: kde -Priority: extra -Maintainer: Jean-Francois Dockes <jfd@recoll.org> -Build-Depends: cdbs, - cmake, - libtool, - debhelper (>= 7), - bison, - kdelibs5-dev (>= 4:4.2.2), - pkg-kde-tools (>= 0.4.0), - libxapian-dev, - libz-dev -Standards-Version: 3.9.5 -Homepage: http://www.recoll.org/ - -Package: kio-recoll -Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends}, recoll -Description: A Recoll KIO slave for KDE 4 - A Recoll KIO slave for KDE 4, allows performing a Recoll search by - entering an appropriate URL in a KDE open dialog, or with an HTML-based - interface displayed in Konqueror. - The HTML-based interface is similar to the Recoll GUI QT-based interface, - slightly less powerful. It allows performing a search while staying fully - within the KDE framework: drag and drop from the result list works - normally and you have your normal choice of applications for opening files. - An alternative interface uses a directory view of search results. Due to - limitations in the current KIO slave interface, it is currently not - obviously useful. - The interface is described in more detail inside a help file which you can - access by entering recoll:/ inside the konqueror URL line (this works only - if the recoll KIO slave has been previously installed). +diff --git a/Makefile.am b/Makefile.am +index 892ed4f..b50345e 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -274,7 +274,7 @@ librecoll_la_LIBADD = $(LIBXAPIAN) $(LIBICONV) $(LIBTHREADS) + PicStatic: $(librecoll_la_OBJECTS) + rm -f .libs/librecoll.a + rm -f .libs/librecoll.so +- libtool --tag=LD --mode=link gcc -g -O -o librecoll.la \ ++ $(LIBTOOL) --tag=LD --mode=link gcc -g -O -o librecoll.la \ + $(librecoll_la_OBJECTS) + + bin_PROGRAMS = recollindex +diff --git a/Makefile.in b/Makefile.in +index 9fc916d..7eb90d9 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -2160,7 +2160,7 @@ CXXFLAGS ?= @CXXFLAGS@ + PicStatic: $(librecoll_la_OBJECTS) + rm -f .libs/librecoll.a + rm -f .libs/librecoll.so +- libtool --tag=LD --mode=link gcc -g -O -o librecoll.la \ ++ $(LIBTOOL) --tag=LD --mode=link gcc -g -O -o librecoll.la \ + $(librecoll_la_OBJECTS) + + # EXTRA_DIST: The Php Code does not build anymore. No need to ship it until +diff --git a/kde/kioslave/kio_recoll/dirif.cpp b/kde/kioslave/kio_recoll/dirif.cpp +index 3a96891..9d0a5f8 100644 +--- a/kde/kioslave/kio_recoll/dirif.cpp ++++ b/kde/kioslave/kio_recoll/dirif.cpp +@@ -305,7 +305,8 @@ void RecollProtocol::listDir(const QUrl& url) + // which offers an opportunity to not perform it. + if (ingest.endSlashQuery()) { + qDebug() << "RecollProtocol::listDir: Ends With /"; +- error(ERR_SLAVE_DEFINED, u8s2qs("Autocompletion search aborted")); ++ error(ERR_SLAVE_DEFINED, ++ QString::fromUtf8("Autocompletion search aborted")); + return; + } + if (!syncSearch(qd)) { +@@ -335,7 +336,7 @@ void RecollProtocol::listDir(const QUrl& url) + int pagelen = m_source->getSeqSlice(pagebase, pagesize, page); + UDSEntry entry; + if (pagelen < 0) { +- error(ERR_SLAVE_DEFINED, u8s2qs("Internal error")); ++ error(ERR_SLAVE_DEFINED, QString::fromUtf8("Internal error")); + break; + } + UDSEntryList entries; +diff --git a/kde/kioslave/kio_recoll/htmlif.cpp b/kde/kioslave/kio_recoll/htmlif.cpp +index 3e79038..cb396c3 100644 +--- a/kde/kioslave/kio_recoll/htmlif.cpp ++++ b/kde/kioslave/kio_recoll/htmlif.cpp +@@ -240,7 +240,7 @@ void RecollProtocol::showPreview(const Rcl::Doc& idoc) + string ipath = idoc.ipath; + if (!interner.internfile(fdoc, ipath)) { + error(KIO::ERR_SLAVE_DEFINED, +- u8s2qs("Cannot convert file to internal format")); ++ QString::fromUtf8("Cannot convert file to internal format")); + return; + } + if (!interner.get_html().empty()) { +diff --git a/kde/kioslave/kio_recoll/kio_recoll.h b/kde/kioslave/kio_recoll/kio_recoll.h +index 6529f91..970019e 100644 +--- a/kde/kioslave/kio_recoll/kio_recoll.h ++++ b/kde/kioslave/kio_recoll/kio_recoll.h +@@ -201,10 +201,5 @@ extern "C" { + kdemain(int argc, char **argv); + } + +-inline QString u8s2qs(const string& s) +-{ +- return QString::fromUtf8(s.c_str()); +-} +- + + #endif // _RECOLL_H