Index: textproc/Makefile =================================================================== --- textproc/Makefile (revision 310242) +++ textproc/Makefile (working copy) @@ -70,6 +70,7 @@ SUBDIR += clit SUBDIR += clucene SUBDIR += clucene-contrib + SUBDIR += clucene2 SUBDIR += coccigrep SUBDIR += coco SUBDIR += code2html Index: textproc/clucene/Makefile =================================================================== --- textproc/clucene/Makefile (revision 310242) +++ textproc/clucene/Makefile (working copy) @@ -1,12 +1,7 @@ -# New ports collection makefile for: clucene -# Date created: 2006-08-09 -# Whom: Cheng-Lung Sung -# # $FreeBSD$ -# PORTNAME= clucene -PORTVERSION= 0.9.21 +PORTVERSION= 0.9.21b CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-core-stable/${PORTVERSION} DISTNAME= ${PORTNAME}-core-${PORTVERSION} @@ -14,6 +9,8 @@ DISTNAME= ${PORTNAME}-core-${PORTVERSION} MAINTAINER= clsung@FreeBSD.org COMMENT= CLucene is a C++ port of Lucene +CONFLICTS= clucene-2.* + GNU_CONFIGURE= yes USE_BZIP2= yes USE_LDCONFIG= yes Index: textproc/clucene/distinfo =================================================================== --- textproc/clucene/distinfo (revision 310242) +++ textproc/clucene/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (clucene-core-0.9.21.tar.bz2) = ef9af373ea953362e42c9a3bdcbf8ef317bca4a407ffab9fe36c1b2807680630 -SIZE (clucene-core-0.9.21.tar.bz2) = 1530020 +SHA256 (clucene-core-0.9.21b.tar.bz2) = 202ee45af747f18642ae0a088d7c4553521714a511a1a9ec99b8144cf9928317 +SIZE (clucene-core-0.9.21b.tar.bz2) = 1539103 Index: textproc/clucene-contrib/Makefile =================================================================== --- textproc/clucene-contrib/Makefile (revision 310242) +++ textproc/clucene-contrib/Makefile (working copy) @@ -1,9 +1,4 @@ -# New ports collection makefile for: clucene-contrib -# Date created: 2010-10-4 -# Whom: Tom Judge -# # $FreeBSD$ -# PORTNAME= clucene-contrib PORTVERSION= 0.9.16a @@ -16,6 +11,8 @@ COMMENT= CLucene Contrib Code and Tools LIB_DEPENDS= clucene.0:${PORTSDIR}/textproc/clucene BUILD_DEPENDS= ${LOCALBASE}/include/iconv.h:${PORTSDIR}/converters/libiconv +CONFLICTS= clucene-2.* + GNU_CONFIGURE= yes USE_BZIP2= yes USE_LDCONFIG= yes Index: textproc/clucene2/Makefile =================================================================== --- textproc/clucene2/Makefile (revision 0) +++ textproc/clucene2/Makefile (working copy) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= clucene +PORTVERSION= 2.3.3.4 +CATEGORIES= textproc +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-core-unstable/2.3 +DISTNAME= ${PORTNAME}-core-${PORTVERSION} + +MAINTAINER= office@FreeBSD.org +COMMENT= CLucene is a C++ port of Lucene + +LICENSE= AL2 LGPL21 +LICENSE_COMB= dual + +BUILD_DEPENDS= ${LOCALBASE}/lib/libboost_regex.a:${PORTSDIR}/devel/boost-libs + +CONFLICTS= clucene-0.* clucene-contrib-0.* +LATEST_LINK= ${PORTNAME}2 + +USE_CMAKE= yes +USE_ICONV= yes +USE_LDCONFIG= yes + +CMAKE_ARGS= -DBUILD_CONTRIBS_LIB=ON +CXXFLAGS+= -D__LONG_LONG_SUPPORTED + +.include Property changes on: textproc/clucene2/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: textproc/clucene2/distinfo =================================================================== --- textproc/clucene2/distinfo (revision 0) +++ textproc/clucene2/distinfo (working copy) @@ -0,0 +1,2 @@ +SHA256 (clucene-core-2.3.3.4.tar.gz) = ddfdc433dd8ad31b5c5819cc4404a8d2127472a3b720d3e744e8c51d79732eab +SIZE (clucene-core-2.3.3.4.tar.gz) = 2241498 Property changes on: textproc/clucene2/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: textproc/clucene2/files/patch-CMakeLists.txt =================================================================== --- textproc/clucene2/files/patch-CMakeLists.txt (revision 0) +++ textproc/clucene2/files/patch-CMakeLists.txt (working copy) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2011-03-16 20:21:07.000000000 -0400 ++++ CMakeLists.txt 2012-08-07 16:27:55.000000000 -0400 +@@ -163,7 +163,7 @@ + SET(BUILD_CONTRIBS_LIB 1) + ENDIF ( BUILD_CONTRIBS ) + IF ( BUILD_CONTRIBS_LIB ) +- ADD_SUBDIRECTORY (src/contribs-lib EXCLUDE_FROM_ALL) ++ ADD_SUBDIRECTORY (src/contribs-lib) + ENDIF ( BUILD_CONTRIBS_LIB ) + + Property changes on: textproc/clucene2/files/patch-CMakeLists.txt ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: textproc/clucene2/files/patch-src__contribs-lib__CLucene__analysis__de__GermanStemmer.cpp =================================================================== --- textproc/clucene2/files/patch-src__contribs-lib__CLucene__analysis__de__GermanStemmer.cpp (revision 0) +++ textproc/clucene2/files/patch-src__contribs-lib__CLucene__analysis__de__GermanStemmer.cpp (working copy) @@ -0,0 +1,11 @@ +--- src/contribs-lib/CLucene/analysis/de/GermanStemmer.cpp.orig 2011-03-16 20:21:07.000000000 -0400 ++++ src/contribs-lib/CLucene/analysis/de/GermanStemmer.cpp 2013-01-08 17:03:27.000000000 -0500 +@@ -144,7 +144,7 @@ + { + buffer.setCharAt( i, _T('$') ); + buffer.deleteChars( i + 1, i + 3 ); +- substCount =+ 2; ++ substCount += 2; + } + else if ( c == _T('c') && buffer.charAt( i + 1 ) == _T('h') ) { + buffer.setCharAt( i, 0xa7 ); // section sign in UTF-16 Property changes on: textproc/clucene2/files/patch-src__contribs-lib__CLucene__analysis__de__GermanStemmer.cpp ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: textproc/clucene2/files/patch-src__contribs-lib__CMakeLists.txt =================================================================== --- textproc/clucene2/files/patch-src__contribs-lib__CMakeLists.txt (revision 0) +++ textproc/clucene2/files/patch-src__contribs-lib__CMakeLists.txt (working copy) @@ -0,0 +1,29 @@ +--- src/contribs-lib/CMakeLists.txt.orig 2011-03-16 20:21:07.000000000 -0400 ++++ src/contribs-lib/CMakeLists.txt 2012-08-07 16:27:55.000000000 -0400 +@@ -106,9 +106,26 @@ + ) + TARGET_LINK_LIBRARIES(clucene-contribs-lib ${clucene_contrib_extra_libs}) + ++#install public headers. ++FOREACH(file ${HEADERS}) ++ get_filename_component(apath ${file} PATH) ++ get_filename_component(aname ${file} NAME) ++ file(RELATIVE_PATH relpath ${CMAKE_SOURCE_DIR}/src/contribs-lib ${apath}) ++ IF ( NOT aname MATCHES "^_.*" ) ++ install(FILES ${file} ++ DESTINATION include/${relpath} ++ COMPONENT development) ++ ENDIF ( NOT aname MATCHES "^_.*" ) ++ENDFOREACH(file) ++ + #set properties on the libraries + SET_TARGET_PROPERTIES(clucene-contribs-lib PROPERTIES + VERSION ${CLUCENE_VERSION} + SOVERSION ${CLUCENE_SOVERSION} + COMPILE_DEFINITIONS_DEBUG _DEBUG + ) ++ ++#and install library ++install(TARGETS clucene-contribs-lib ++ DESTINATION ${LIB_DESTINATION} ++ COMPONENT runtime ) Property changes on: textproc/clucene2/files/patch-src__contribs-lib__CMakeLists.txt ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: textproc/clucene2/files/patch-src__core__CLucene__index__DocumentsWriter.cpp =================================================================== --- textproc/clucene2/files/patch-src__core__CLucene__index__DocumentsWriter.cpp (revision 0) +++ textproc/clucene2/files/patch-src__core__CLucene__index__DocumentsWriter.cpp (working copy) @@ -0,0 +1,11 @@ +--- src/core/CLucene/index/DocumentsWriter.cpp.orig 2011-03-16 20:21:07.000000000 -0400 ++++ src/core/CLucene/index/DocumentsWriter.cpp 2012-08-07 17:23:51.000000000 -0400 +@@ -125,7 +125,7 @@ + if (this->postingsFreeListDW.values){ + if (this->postingsFreeCountDW < this->postingsFreeListDW.length) { + memset(this->postingsFreeListDW.values + this->postingsFreeCountDW +- , NULL ++ , 0 + , sizeof(Posting*)); + } + postingsFreeListDW.deleteUntilNULL(); Property changes on: textproc/clucene2/files/patch-src__core__CLucene__index__DocumentsWriter.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: textproc/clucene2/files/patch-src__core__CLucene__util__VoidMap.h =================================================================== --- textproc/clucene2/files/patch-src__core__CLucene__util__VoidMap.h (revision 0) +++ textproc/clucene2/files/patch-src__core__CLucene__util__VoidMap.h (working copy) @@ -0,0 +1,19 @@ +--- src/core/CLucene/util/VoidMap.h.orig 2011-03-16 20:21:07.000000000 -0400 ++++ src/core/CLucene/util/VoidMap.h 2013-01-08 17:37:43.000000000 -0500 +@@ -83,7 +83,7 @@ + _vt get( _kt k) const { + const_iterator itr = base::find(k); + if ( itr==base::end() ) +- return (_vt)NULL; ++ return static_cast<_vt>(0); + else + return itr->second; + } +@@ -316,6 +316,7 @@ + if ( _this::dk || _this::dv ) + _this::remove(k); + ++ (*this)[k] = v;; + } + }; + Property changes on: textproc/clucene2/files/patch-src__core__CLucene__util__VoidMap.h ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: textproc/clucene2/files/patch-src__core__CMakeLists.txt =================================================================== --- textproc/clucene2/files/patch-src__core__CMakeLists.txt (revision 0) +++ textproc/clucene2/files/patch-src__core__CMakeLists.txt (working copy) @@ -0,0 +1,28 @@ +--- src/core/CMakeLists.txt.orig 2011-03-16 20:21:07.000000000 -0400 ++++ src/core/CMakeLists.txt 2012-08-07 14:12:31.000000000 -0400 +@@ -252,13 +252,13 @@ + set(CLUCENE_SOVERSION ${CLUCENE_SOVERSION}) + ") + install(FILES "${CMAKE_CURRENT_BINARY_DIR}/CLuceneConfig.cmake" +- DESTINATION ${LIB_DESTINATION}/CLuceneConfig.cmake) ++ DESTINATION ${LIB_DESTINATION}/CLucene) + + # install pkg-config file + IF(NOT WIN32) + configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libclucene-core.pc.cmake ${CMAKE_CURRENT_BINARY_DIR}/libclucene-core.pc @ONLY) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libclucene-core.pc +- DESTINATION ${LIB_DESTINATION}/pkgconfig ) ++ DESTINATION libdata/pkgconfig ) + ENDIF(NOT WIN32) + + +@@ -274,9 +274,6 @@ + install(FILES ${clucene-shared_BINARY_DIR}/CLucene/clucene-config.h + DESTINATION include/CLucene + COMPONENT development) +- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/CLuceneConfig.cmake +- DESTINATION include/CLucene +- COMPONENT development) + ENDIF ( LUCENE_SYS_INCLUDES ) + + Property changes on: textproc/clucene2/files/patch-src__core__CMakeLists.txt ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: textproc/clucene2/files/patch-src__shared__CMakeLists.txt =================================================================== --- textproc/clucene2/files/patch-src__shared__CMakeLists.txt (revision 0) +++ textproc/clucene2/files/patch-src__shared__CMakeLists.txt (working copy) @@ -0,0 +1,11 @@ +--- src/shared/CMakeLists.txt.orig 2011-03-16 20:21:07.000000000 -0400 ++++ src/shared/CMakeLists.txt 2012-08-07 13:31:00.000000000 -0400 +@@ -62,7 +62,7 @@ + stdint.h unistd.h io.h direct.h sys/dir.h sys/ndir.h dirent.h wctype.h fcntl.h + stat.h sys/stat.h stdexcept errno.h fcntl.h windef.h windows.h wchar.h + hash_map hash_set ext/hash_map ext/hash_map tr1/unordered_set tr1/unordered_map +- sys/timeb.h tchar.h strings.h stdexcept sys/mman.h winerror.h ) ++ tchar.h strings.h stdexcept sys/mman.h winerror.h ) + + + ######################################################################## Property changes on: textproc/clucene2/files/patch-src__shared__CMakeLists.txt ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: textproc/clucene2/pkg-descr =================================================================== --- textproc/clucene2/pkg-descr (revision 0) +++ textproc/clucene2/pkg-descr (working copy) @@ -0,0 +1,5 @@ +CLucene is a C++ port of Lucene: the high-performance, +full-featured text search engine written in Java. +CLucene is faster than lucene as it is written in C++. + +WWW: http://sourceforge.net/projects/clucene/ Property changes on: textproc/clucene2/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: textproc/clucene2/pkg-plist =================================================================== --- textproc/clucene2/pkg-plist (revision 0) +++ textproc/clucene2/pkg-plist (working copy) @@ -0,0 +1,395 @@ +include/CLucene.h +include/CLucene/CLConfig.h +include/CLucene/LuceneThreads.h +include/CLucene/SharedHeader.h +include/CLucene/StdHeader.h +include/CLucene/analysis/AnalysisHeader.h +include/CLucene/analysis/Analyzers.h +include/CLucene/analysis/CachingTokenFilter.h +include/CLucene/analysis/LanguageBasedAnalyzer.h +include/CLucene/analysis/PorterStemmer.h +include/CLucene/analysis/cjk/CJKAnalyzer.h +include/CLucene/analysis/de/GermanAnalyzer.h +include/CLucene/analysis/de/GermanStemFilter.h +include/CLucene/analysis/de/GermanStemmer.h +include/CLucene/analysis/standard/StandardAnalyzer.h +include/CLucene/analysis/standard/StandardFilter.h +include/CLucene/analysis/standard/StandardTokenizer.h +include/CLucene/analysis/standard/StandardTokenizerConstants.h +include/CLucene/clucene-config.h +include/CLucene/debug/error.h +include/CLucene/debug/lucenebase.h +include/CLucene/debug/mem.h +include/CLucene/document/DateField.h +include/CLucene/document/DateTools.h +include/CLucene/document/Document.h +include/CLucene/document/Field.h +include/CLucene/document/FieldSelector.h +include/CLucene/document/NumberTools.h +include/CLucene/ext/boost/assert.hpp +include/CLucene/ext/boost/checked_delete.hpp +include/CLucene/ext/boost/config.hpp +include/CLucene/ext/boost/config/abi/borland_prefix.hpp +include/CLucene/ext/boost/config/abi/borland_suffix.hpp +include/CLucene/ext/boost/config/abi/msvc_prefix.hpp +include/CLucene/ext/boost/config/abi/msvc_suffix.hpp +include/CLucene/ext/boost/config/abi_prefix.hpp +include/CLucene/ext/boost/config/abi_suffix.hpp +include/CLucene/ext/boost/config/auto_link.hpp +include/CLucene/ext/boost/config/compiler/borland.hpp +include/CLucene/ext/boost/config/compiler/codegear.hpp +include/CLucene/ext/boost/config/compiler/comeau.hpp +include/CLucene/ext/boost/config/compiler/common_edg.hpp +include/CLucene/ext/boost/config/compiler/compaq_cxx.hpp +include/CLucene/ext/boost/config/compiler/digitalmars.hpp +include/CLucene/ext/boost/config/compiler/gcc.hpp +include/CLucene/ext/boost/config/compiler/gcc_xml.hpp +include/CLucene/ext/boost/config/compiler/greenhills.hpp +include/CLucene/ext/boost/config/compiler/hp_acc.hpp +include/CLucene/ext/boost/config/compiler/intel.hpp +include/CLucene/ext/boost/config/compiler/kai.hpp +include/CLucene/ext/boost/config/compiler/metrowerks.hpp +include/CLucene/ext/boost/config/compiler/mpw.hpp +include/CLucene/ext/boost/config/compiler/pgi.hpp +include/CLucene/ext/boost/config/compiler/sgi_mipspro.hpp +include/CLucene/ext/boost/config/compiler/sunpro_cc.hpp +include/CLucene/ext/boost/config/compiler/vacpp.hpp +include/CLucene/ext/boost/config/compiler/visualc.hpp +include/CLucene/ext/boost/config/no_tr1/cmath.hpp +include/CLucene/ext/boost/config/no_tr1/complex.hpp +include/CLucene/ext/boost/config/no_tr1/functional.hpp +include/CLucene/ext/boost/config/no_tr1/memory.hpp +include/CLucene/ext/boost/config/no_tr1/utility.hpp +include/CLucene/ext/boost/config/platform/aix.hpp +include/CLucene/ext/boost/config/platform/amigaos.hpp +include/CLucene/ext/boost/config/platform/beos.hpp +include/CLucene/ext/boost/config/platform/bsd.hpp +include/CLucene/ext/boost/config/platform/cygwin.hpp +include/CLucene/ext/boost/config/platform/hpux.hpp +include/CLucene/ext/boost/config/platform/irix.hpp +include/CLucene/ext/boost/config/platform/linux.hpp +include/CLucene/ext/boost/config/platform/macos.hpp +include/CLucene/ext/boost/config/platform/qnxnto.hpp +include/CLucene/ext/boost/config/platform/solaris.hpp +include/CLucene/ext/boost/config/platform/vxworks.hpp +include/CLucene/ext/boost/config/platform/win32.hpp +include/CLucene/ext/boost/config/posix_features.hpp +include/CLucene/ext/boost/config/requires_threads.hpp +include/CLucene/ext/boost/config/select_compiler_config.hpp +include/CLucene/ext/boost/config/select_platform_config.hpp +include/CLucene/ext/boost/config/select_stdlib_config.hpp +include/CLucene/ext/boost/config/stdlib/dinkumware.hpp +include/CLucene/ext/boost/config/stdlib/libcomo.hpp +include/CLucene/ext/boost/config/stdlib/libstdcpp3.hpp +include/CLucene/ext/boost/config/stdlib/modena.hpp +include/CLucene/ext/boost/config/stdlib/msl.hpp +include/CLucene/ext/boost/config/stdlib/roguewave.hpp +include/CLucene/ext/boost/config/stdlib/sgi.hpp +include/CLucene/ext/boost/config/stdlib/stlport.hpp +include/CLucene/ext/boost/config/stdlib/vacpp.hpp +include/CLucene/ext/boost/config/suffix.hpp +include/CLucene/ext/boost/config/user.hpp +include/CLucene/ext/boost/config/warning_disable.hpp +include/CLucene/ext/boost/current_function.hpp +include/CLucene/ext/boost/detail/algorithm.hpp +include/CLucene/ext/boost/detail/allocator_utilities.hpp +include/CLucene/ext/boost/detail/atomic_count.hpp +include/CLucene/ext/boost/detail/binary_search.hpp +include/CLucene/ext/boost/detail/call_traits.hpp +include/CLucene/ext/boost/detail/catch_exceptions.hpp +include/CLucene/ext/boost/detail/compressed_pair.hpp +include/CLucene/ext/boost/detail/container_fwd.hpp +include/CLucene/ext/boost/detail/dynamic_bitset.hpp +include/CLucene/ext/boost/detail/endian.hpp +include/CLucene/ext/boost/detail/has_default_constructor.hpp +include/CLucene/ext/boost/detail/identifier.hpp +include/CLucene/ext/boost/detail/indirect_traits.hpp +include/CLucene/ext/boost/detail/interlocked.hpp +include/CLucene/ext/boost/detail/is_function_ref_tester.hpp +include/CLucene/ext/boost/detail/is_incrementable.hpp +include/CLucene/ext/boost/detail/is_xxx.hpp +include/CLucene/ext/boost/detail/iterator.hpp +include/CLucene/ext/boost/detail/lcast_precision.hpp +include/CLucene/ext/boost/detail/lightweight_mutex.hpp +include/CLucene/ext/boost/detail/lightweight_test.hpp +include/CLucene/ext/boost/detail/lightweight_thread.hpp +include/CLucene/ext/boost/detail/limits.hpp +include/CLucene/ext/boost/detail/named_template_params.hpp +include/CLucene/ext/boost/detail/no_exceptions_support.hpp +include/CLucene/ext/boost/detail/none_t.hpp +include/CLucene/ext/boost/detail/numeric_traits.hpp +include/CLucene/ext/boost/detail/ob_call_traits.hpp +include/CLucene/ext/boost/detail/ob_compressed_pair.hpp +include/CLucene/ext/boost/detail/quick_allocator.hpp +include/CLucene/ext/boost/detail/reference_content.hpp +include/CLucene/ext/boost/detail/scoped_enum_emulation.hpp +include/CLucene/ext/boost/detail/select_type.hpp +include/CLucene/ext/boost/detail/sp_typeinfo.hpp +include/CLucene/ext/boost/detail/templated_streams.hpp +include/CLucene/ext/boost/detail/utf8_codecvt_facet.hpp +include/CLucene/ext/boost/detail/workaround.hpp +include/CLucene/ext/boost/exception/all.hpp +include/CLucene/ext/boost/exception/current_exception_cast.hpp +include/CLucene/ext/boost/exception/detail/attribute_noreturn.hpp +include/CLucene/ext/boost/exception/detail/error_info_impl.hpp +include/CLucene/ext/boost/exception/detail/exception_ptr.hpp +include/CLucene/ext/boost/exception/detail/is_output_streamable.hpp +include/CLucene/ext/boost/exception/detail/object_hex_dump.hpp +include/CLucene/ext/boost/exception/detail/type_info.hpp +include/CLucene/ext/boost/exception/diagnostic_information.hpp +include/CLucene/ext/boost/exception/enable_current_exception.hpp +include/CLucene/ext/boost/exception/enable_error_info.hpp +include/CLucene/ext/boost/exception/errinfo_api_function.hpp +include/CLucene/ext/boost/exception/errinfo_at_line.hpp +include/CLucene/ext/boost/exception/errinfo_errno.hpp +include/CLucene/ext/boost/exception/errinfo_file_handle.hpp +include/CLucene/ext/boost/exception/errinfo_file_name.hpp +include/CLucene/ext/boost/exception/errinfo_file_open_mode.hpp +include/CLucene/ext/boost/exception/errinfo_nested_exception.hpp +include/CLucene/ext/boost/exception/errinfo_type_info_name.hpp +include/CLucene/ext/boost/exception/error_info.hpp +include/CLucene/ext/boost/exception/exception.hpp +include/CLucene/ext/boost/exception/get_error_info.hpp +include/CLucene/ext/boost/exception/info.hpp +include/CLucene/ext/boost/exception/info_tuple.hpp +include/CLucene/ext/boost/exception/to_string.hpp +include/CLucene/ext/boost/exception/to_string_stub.hpp +include/CLucene/ext/boost/memory_order.hpp +include/CLucene/ext/boost/shared_ptr.hpp +include/CLucene/ext/boost/smart_ptr/bad_weak_ptr.hpp +include/CLucene/ext/boost/smart_ptr/detail/atomic_count.hpp +include/CLucene/ext/boost/smart_ptr/detail/atomic_count_gcc.hpp +include/CLucene/ext/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp +include/CLucene/ext/boost/smart_ptr/detail/atomic_count_pthreads.hpp +include/CLucene/ext/boost/smart_ptr/detail/atomic_count_solaris.hpp +include/CLucene/ext/boost/smart_ptr/detail/atomic_count_sync.hpp +include/CLucene/ext/boost/smart_ptr/detail/atomic_count_win32.hpp +include/CLucene/ext/boost/smart_ptr/detail/lightweight_mutex.hpp +include/CLucene/ext/boost/smart_ptr/detail/lwm_nop.hpp +include/CLucene/ext/boost/smart_ptr/detail/lwm_pthreads.hpp +include/CLucene/ext/boost/smart_ptr/detail/lwm_win32_cs.hpp +include/CLucene/ext/boost/smart_ptr/detail/operator_bool.hpp +include/CLucene/ext/boost/smart_ptr/detail/quick_allocator.hpp +include/CLucene/ext/boost/smart_ptr/detail/shared_array_nmt.hpp +include/CLucene/ext/boost/smart_ptr/detail/shared_count.hpp +include/CLucene/ext/boost/smart_ptr/detail/shared_ptr_nmt.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_convertible.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_cw_x86.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_nt.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_pt.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_solaris.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_spin.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_sync.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_base_w32.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_counted_impl.hpp +include/CLucene/ext/boost/smart_ptr/detail/sp_has_sync.hpp +include/CLucene/ext/boost/smart_ptr/detail/spinlock.hpp +include/CLucene/ext/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +include/CLucene/ext/boost/smart_ptr/detail/spinlock_nt.hpp +include/CLucene/ext/boost/smart_ptr/detail/spinlock_pool.hpp +include/CLucene/ext/boost/smart_ptr/detail/spinlock_pt.hpp +include/CLucene/ext/boost/smart_ptr/detail/spinlock_sync.hpp +include/CLucene/ext/boost/smart_ptr/detail/spinlock_w32.hpp +include/CLucene/ext/boost/smart_ptr/detail/yield_k.hpp +include/CLucene/ext/boost/smart_ptr/enable_shared_from_this.hpp +include/CLucene/ext/boost/smart_ptr/enable_shared_from_this2.hpp +include/CLucene/ext/boost/smart_ptr/intrusive_ptr.hpp +include/CLucene/ext/boost/smart_ptr/make_shared.hpp +include/CLucene/ext/boost/smart_ptr/scoped_array.hpp +include/CLucene/ext/boost/smart_ptr/scoped_ptr.hpp +include/CLucene/ext/boost/smart_ptr/shared_array.hpp +include/CLucene/ext/boost/smart_ptr/shared_ptr.hpp +include/CLucene/ext/boost/smart_ptr/weak_ptr.hpp +include/CLucene/ext/boost/throw_exception.hpp +include/CLucene/ext/boost/version.hpp +include/CLucene/highlighter/Encoder.h +include/CLucene/highlighter/Formatter.h +include/CLucene/highlighter/Fragmenter.h +include/CLucene/highlighter/HighlightScorer.h +include/CLucene/highlighter/Highlighter.h +include/CLucene/highlighter/QueryScorer.h +include/CLucene/highlighter/QueryTermExtractor.h +include/CLucene/highlighter/Scorer.h +include/CLucene/highlighter/SimpleFragmenter.h +include/CLucene/highlighter/SimpleHTMLEncoder.h +include/CLucene/highlighter/SimpleHTMLFormatter.h +include/CLucene/highlighter/TextFragment.h +include/CLucene/highlighter/TokenGroup.h +include/CLucene/highlighter/TokenSources.h +include/CLucene/highlighter/WeightedTerm.h +include/CLucene/index/DirectoryIndexReader.h +include/CLucene/index/IndexDeletionPolicy.h +include/CLucene/index/IndexModifier.h +include/CLucene/index/IndexReader.h +include/CLucene/index/IndexWriter.h +include/CLucene/index/MergePolicy.h +include/CLucene/index/MergeScheduler.h +include/CLucene/index/MultiReader.h +include/CLucene/index/MultipleTermPositions.h +include/CLucene/index/Payload.h +include/CLucene/index/Term.h +include/CLucene/index/TermVector.h +include/CLucene/index/Terms.h +include/CLucene/queryParser/MultiFieldQueryParser.h +include/CLucene/queryParser/QueryParser.h +include/CLucene/queryParser/QueryParserConstants.h +include/CLucene/queryParser/QueryParserTokenManager.h +include/CLucene/queryParser/QueryToken.h +include/CLucene/queryParser/legacy/MultiFieldQueryParser.h +include/CLucene/queryParser/legacy/QueryParser.h +include/CLucene/queryParser/legacy/QueryToken.h +include/CLucene/search/BooleanClause.h +include/CLucene/search/BooleanQuery.h +include/CLucene/search/CachingSpanFilter.h +include/CLucene/search/CachingWrapperFilter.h +include/CLucene/search/ChainedFilter.h +include/CLucene/search/Compare.h +include/CLucene/search/ConstantScoreQuery.h +include/CLucene/search/DateFilter.h +include/CLucene/search/Explanation.h +include/CLucene/search/FieldCache.h +include/CLucene/search/FieldDoc.h +include/CLucene/search/FieldSortedHitQueue.h +include/CLucene/search/Filter.h +include/CLucene/search/FilterResultCache.h +include/CLucene/search/FilteredTermEnum.h +include/CLucene/search/FuzzyQuery.h +include/CLucene/search/Hits.h +include/CLucene/search/IndexSearcher.h +include/CLucene/search/MatchAllDocsQuery.h +include/CLucene/search/MultiPhraseQuery.h +include/CLucene/search/MultiSearcher.h +include/CLucene/search/MultiTermQuery.h +include/CLucene/search/PhraseQuery.h +include/CLucene/search/PrefixQuery.h +include/CLucene/search/Query.h +include/CLucene/search/QueryFilter.h +include/CLucene/search/RangeFilter.h +include/CLucene/search/RangeQuery.h +include/CLucene/search/Scorer.h +include/CLucene/search/ScorerDocQueue.h +include/CLucene/search/SearchHeader.h +include/CLucene/search/Searchable.h +include/CLucene/search/Similarity.h +include/CLucene/search/Sort.h +include/CLucene/search/SpanFilter.h +include/CLucene/search/SpanFilterResult.h +include/CLucene/search/SpanQueryFilter.h +include/CLucene/search/TermQuery.h +include/CLucene/search/WildcardQuery.h +include/CLucene/search/WildcardTermEnum.h +include/CLucene/search/spans/SpanFirstQuery.h +include/CLucene/search/spans/SpanNearQuery.h +include/CLucene/search/spans/SpanNotQuery.h +include/CLucene/search/spans/SpanOrQuery.h +include/CLucene/search/spans/SpanQuery.h +include/CLucene/search/spans/SpanScorer.h +include/CLucene/search/spans/SpanTermQuery.h +include/CLucene/search/spans/SpanWeight.h +include/CLucene/search/spans/Spans.h +include/CLucene/snowball/SnowballAnalyzer.h +include/CLucene/snowball/SnowballFilter.h +include/CLucene/snowball/include/libstemmer.h +include/CLucene/snowball/libstemmer.h +include/CLucene/snowball/libstemmer/modules.h +include/CLucene/snowball/runtime/api.h +include/CLucene/snowball/runtime/header.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_danish.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_dutch.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_english.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_finnish.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_french.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_german.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_italian.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_norwegian.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_porter.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_portuguese.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_spanish.h +include/CLucene/snowball/src_c/stem_ISO_8859_1_swedish.h +include/CLucene/snowball/src_c/stem_KOI8_R_russian.h +include/CLucene/snowball/src_c/stem_UTF_8_danish.h +include/CLucene/snowball/src_c/stem_UTF_8_dutch.h +include/CLucene/snowball/src_c/stem_UTF_8_english.h +include/CLucene/snowball/src_c/stem_UTF_8_finnish.h +include/CLucene/snowball/src_c/stem_UTF_8_french.h +include/CLucene/snowball/src_c/stem_UTF_8_german.h +include/CLucene/snowball/src_c/stem_UTF_8_italian.h +include/CLucene/snowball/src_c/stem_UTF_8_norwegian.h +include/CLucene/snowball/src_c/stem_UTF_8_porter.h +include/CLucene/snowball/src_c/stem_UTF_8_portuguese.h +include/CLucene/snowball/src_c/stem_UTF_8_russian.h +include/CLucene/snowball/src_c/stem_UTF_8_spanish.h +include/CLucene/snowball/src_c/stem_UTF_8_swedish.h +include/CLucene/store/Directory.h +include/CLucene/store/FSDirectory.h +include/CLucene/store/IndexInput.h +include/CLucene/store/IndexOutput.h +include/CLucene/store/Lock.h +include/CLucene/store/LockFactory.h +include/CLucene/store/RAMDirectory.h +include/CLucene/util/Array.h +include/CLucene/util/BitSet.h +include/CLucene/util/CLStreams.h +include/CLucene/util/Equators.h +include/CLucene/util/PriorityQueue.h +include/CLucene/util/Reader.h +include/CLucene/util/VoidList.h +include/CLucene/util/VoidMap.h +include/CLucene/util/arrayinputstream.h +include/CLucene/util/byteinputstream.h +include/CLucene/util/gzipcompressstream.h +include/CLucene/util/gzipinputstream.h +include/CLucene/util/streamarray.h +lib/CLucene/CLuceneConfig.cmake +lib/libclucene-contribs-lib.so +lib/libclucene-contribs-lib.so.1 +lib/libclucene-contribs-lib.so.2.3.3.4 +lib/libclucene-core.so +lib/libclucene-core.so.1 +lib/libclucene-core.so.2.3.3.4 +lib/libclucene-shared.so +lib/libclucene-shared.so.1 +lib/libclucene-shared.so.2.3.3.4 +libdata/pkgconfig/libclucene-core.pc +@dirrm lib/CLucene +@dirrm include/CLucene/util +@dirrm include/CLucene/store +@dirrm include/CLucene/snowball/src_c +@dirrm include/CLucene/snowball/runtime +@dirrm include/CLucene/snowball/libstemmer +@dirrm include/CLucene/snowball/include +@dirrm include/CLucene/snowball +@dirrm include/CLucene/search/spans +@dirrm include/CLucene/search +@dirrm include/CLucene/queryParser/legacy +@dirrm include/CLucene/queryParser +@dirrm include/CLucene/index +@dirrm include/CLucene/highlighter +@dirrm include/CLucene/ext/boost/smart_ptr/detail +@dirrm include/CLucene/ext/boost/smart_ptr +@dirrm include/CLucene/ext/boost/exception/detail +@dirrm include/CLucene/ext/boost/exception +@dirrm include/CLucene/ext/boost/detail +@dirrm include/CLucene/ext/boost/config/stdlib +@dirrm include/CLucene/ext/boost/config/platform +@dirrm include/CLucene/ext/boost/config/no_tr1 +@dirrm include/CLucene/ext/boost/config/compiler +@dirrm include/CLucene/ext/boost/config/abi +@dirrm include/CLucene/ext/boost/config +@dirrm include/CLucene/ext/boost +@dirrm include/CLucene/ext +@dirrm include/CLucene/document +@dirrm include/CLucene/debug +@dirrm include/CLucene/analysis/standard +@dirrm include/CLucene/analysis/de +@dirrm include/CLucene/analysis/cjk +@dirrm include/CLucene/analysis +@dirrm include/CLucene Property changes on: textproc/clucene2/pkg-plist ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property