aboutsummaryrefslogtreecommitdiff
path: root/textproc/clucene
diff options
context:
space:
mode:
authorBartek Rutkowski <robak@FreeBSD.org>2015-03-15 08:50:21 +0000
committerBartek Rutkowski <robak@FreeBSD.org>2015-03-15 08:50:21 +0000
commit4418aa5f4d4dbb7afc2df579306a2e2f49887b30 (patch)
treead1b39c9d78c26f7fa5eea8898263d6bc889f4ac /textproc/clucene
parent373540144fc3a608847d4d77754f8a52890a1995 (diff)
downloadports-4418aa5f4d4dbb7afc2df579306a2e2f49887b30.tar.gz
ports-4418aa5f4d4dbb7afc2df579306a2e2f49887b30.zip
textproc/clucene: fix missing lib in patch
PR: 185567 Submitted by: Olivier <bugs-freebsd@interfasys.ch>
Notes
Notes: svn path=/head/; revision=381307
Diffstat (limited to 'textproc/clucene')
-rw-r--r--textproc/clucene/Makefile2
-rw-r--r--textproc/clucene/files/patch-src__core__libclucene-core.pc.cmake2
2 files changed, 2 insertions, 2 deletions
diff --git a/textproc/clucene/Makefile b/textproc/clucene/Makefile
index ae4f81a6c867..b660ea7c625a 100644
--- a/textproc/clucene/Makefile
+++ b/textproc/clucene/Makefile
@@ -3,7 +3,7 @@
PORTNAME= clucene
PORTVERSION= 2.3.3.4
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= textproc
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-core-unstable/2.3
DISTNAME= ${PORTNAME}-core-${PORTVERSION}
diff --git a/textproc/clucene/files/patch-src__core__libclucene-core.pc.cmake b/textproc/clucene/files/patch-src__core__libclucene-core.pc.cmake
index d212b3491337..4b4e9dec8e8f 100644
--- a/textproc/clucene/files/patch-src__core__libclucene-core.pc.cmake
+++ b/textproc/clucene/files/patch-src__core__libclucene-core.pc.cmake
@@ -5,6 +5,6 @@
Description: CLucene - a C++ search engine, ported from the popular Apache Lucene
Version: @CLUCENE_VERSION_MAJOR@.@CLUCENE_VERSION_MINOR@.@CLUCENE_VERSION_REVISION@.@CLUCENE_VERSION_PATCH@
-Libs: -L${prefix}/@LIB_DESTINATION@/ -lclucene-core
-+Libs: -L${prefix}/@LIB_DESTINATION@/ -lclucene-core -lclucene-shared
++Libs: -L${prefix}/@LIB_DESTINATION@/ -lclucene-core -lclucene-shared -lclucene-contribs-lib
Cflags: -I${prefix}/include -I${prefix}/include/CLucene/ext
~