summaryrefslogtreecommitdiff
path: root/dev-cpp/lucene++/files/lucene++-3.0.6-fix-installing-headers.patch
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2015-11-07 14:36:38 +0300
committerSergey Popov <pinkbyte@gentoo.org>2015-11-07 14:39:33 +0300
commit6f2a47bbaec096fcd4bc9b8d6a3977f026f96afa (patch)
tree7954556c72a87d5297f88d16c75d8e587b7d083c /dev-cpp/lucene++/files/lucene++-3.0.6-fix-installing-headers.patch
parent37183e58ffa937202e3bf9e065cf0b139aa26b4f (diff)
downloadgentoo-6f2a47bbaec096fcd4bc9b8d6a3977f026f96afa.tar.gz
gentoo-6f2a47bbaec096fcd4bc9b8d6a3977f026f96afa.tar.bz2
gentoo-6f2a47bbaec096fcd4bc9b8d6a3977f026f96afa.zip
dev-cpp/lucene++: drop old version
Package-Manager: portage-2.2.24
Diffstat (limited to 'dev-cpp/lucene++/files/lucene++-3.0.6-fix-installing-headers.patch')
-rw-r--r--dev-cpp/lucene++/files/lucene++-3.0.6-fix-installing-headers.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-cpp/lucene++/files/lucene++-3.0.6-fix-installing-headers.patch b/dev-cpp/lucene++/files/lucene++-3.0.6-fix-installing-headers.patch
deleted file mode 100644
index f9ccc84eccd3..000000000000
--- a/dev-cpp/lucene++/files/lucene++-3.0.6-fix-installing-headers.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From: rezso <rezso@example.com>
-Date: Mon, 19 May 2014 09:20:40 +0100
-Subject: [PATCH] fix installing lucene++ headers in 3.0.6
-
-Origin: upstream, https://github.com/luceneplusplus/LucenePlusPlus/commit/994f03cf736229044a168835ae7387696041658f
-Description: backport upstream patch to fix missing headers install
-
-Index: lucene++-3.0.6/CMakeLists.txt
-===================================================================
---- lucene++-3.0.6.orig/CMakeLists.txt
-+++ lucene++-3.0.6/CMakeLists.txt
-@@ -139,6 +139,14 @@ if(NOT WIN32)
- DESTINATION ${LIB_DESTINATION}/pkgconfig)
- endif()
-
-+#################################
-+# install Config.h
-+#################################
-+install(
-+ FILES
-+ "${CMAKE_CURRENT_BINARY_DIR}/include/Config.h"
-+ DESTINATION include/lucene++)
-+
- ####################################
- # custom targets
- ####################################
-Index: lucene++-3.0.6/src/core/CMakeLists.txt
-===================================================================
---- lucene++-3.0.6.orig/src/core/CMakeLists.txt
-+++ lucene++-3.0.6/src/core/CMakeLists.txt
-@@ -20,7 +20,7 @@ file(GLOB_RECURSE lucene_internal_header
- )
-
- file(GLOB_RECURSE lucene_headers
-- include/*.h
-+ "${lucene++_SOURCE_DIR}/include/*.h"
- )
-
- add_definitions(-DLPP_BUILDING_LIB)