summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/clucene-pkgconfig.patch
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2014-04-16 10:58:31 +0200
committerAndreas Enge <andreas@enge.fr>2014-04-16 10:58:31 +0200
commit7051054a0a2751af840159e3aa68ffd0cdb5cb84 (patch)
tree682de2a56451117082fd804e40b328e586bf0db2 /gnu/packages/patches/clucene-pkgconfig.patch
parent8a79ec41e8bec04af4f889a4fdf2b25e3641f12c (diff)
downloadguix-patches-7051054a0a2751af840159e3aa68ffd0cdb5cb84.tar
guix-patches-7051054a0a2751af840159e3aa68ffd0cdb5cb84.tar.gz
gnu: clucene: Add patch to indicate linking with clucene-shared, not only
clucene-core, to pkgconfig. * gnu/packages/patches/clucene-pkgconfig.patch: New file. * gnu-system.am (dist_patch_DATA): Register patch. * gnu/packages/rdf.scm (clucene): Use patch.
Diffstat (limited to 'gnu/packages/patches/clucene-pkgconfig.patch')
-rw-r--r--gnu/packages/patches/clucene-pkgconfig.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/patches/clucene-pkgconfig.patch b/gnu/packages/patches/clucene-pkgconfig.patch
new file mode 100644
index 0000000000..5e4825cd3f
--- /dev/null
+++ b/gnu/packages/patches/clucene-pkgconfig.patch
@@ -0,0 +1,21 @@
+Taken from the Debian package.
+
+From 7be4a19b76d98260cf95040a47935f854a4ba7a4 Mon Sep 17 00:00:00 2001
+From: Valentin Rusu <kde@rusu.info>
+Date: Sat, 17 Dec 2011 13:47:58 +0100
+Subject: [PATCH] Fix .pc file by adding clucene-shared library
+
+---
+ src/core/libclucene-core.pc.cmake | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/src/core/libclucene-core.pc.cmake
++++ b/src/core/libclucene-core.pc.cmake
+@@ -6,6 +6,6 @@ includedir=${prefix}/include:${prefix}/i
+ Name: libclucene
+ 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
+ Cflags: -I${prefix}/include -I${prefix}/include/CLucene/ext
+ ~