Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/c-blosc/files: c-blosc-1.5.3-shared-libs.patch
Date: Thu, 02 Apr 2015 07:21:17
Message-Id: 20150402072111.22C8A150B6@oystercatcher.gentoo.org
1 jlec 15/04/02 07:21:10
2
3 Added: c-blosc-1.5.3-shared-libs.patch
4 Log:
5 Version BUmp, bug #544770; fix version string for lz4 dep to compatible version, bug #516432
6
7 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
8
9 Revision Changes Path
10 1.1 dev-libs/c-blosc/files/c-blosc-1.5.3-shared-libs.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/c-blosc/files/c-blosc-1.5.3-shared-libs.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/c-blosc/files/c-blosc-1.5.3-shared-libs.patch?rev=1.1&content-type=text/plain
14
15 Index: c-blosc-1.5.3-shared-libs.patch
16 ===================================================================
17 hdf5/CMakeLists.txt | 6 +++---
18 1 file changed, 3 insertions(+), 3 deletions(-)
19
20 diff --git a/hdf5/CMakeLists.txt b/hdf5/CMakeLists.txt
21 index d91194f..032a292 100644
22 --- a/hdf5/CMakeLists.txt
23 +++ b/hdf5/CMakeLists.txt
24 @@ -44,16 +44,16 @@ endif(MSVC)
25
26 # install
27 install(FILES blosc_filter.h DESTINATION include COMPONENT HDF5_FILTER_DEV)
28 -install(TARGETS blosc_filter_shared DESTINATION lib COMPONENT HDF5_FILTER)
29 +install(TARGETS blosc_filter_shared DESTINATION lib${LIB_SUFFIX} COMPONENT HDF5_FILTER)
30 if(BUILD_STATIC)
31 install(
32 - TARGETS blosc_filter_static DESTINATION lib COMPONENT HDF5_FILTER_DEV)
33 + TARGETS blosc_filter_static DESTINATION lib${LIB_SUFFIX} COMPONENT HDF5_FILTER_DEV)
34 endif(BUILD_STATIC)
35
36
37 # test
38 if(BUILD_TESTS)
39 add_executable(example example.c)
40 - target_link_libraries(example blosc_filter_static ${HDF5_LIBRARIES})
41 + target_link_libraries(example blosc_filter_shared ${HDF5_LIBRARIES})
42 add_test(test_hdf5_filter example)
43 endif(BUILD_TESTS)