Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libspatialindex/files: libspatialindex-1.8.1-QA.patch libspatialindex-1.8.1-pkgconfig.patch
Date: Sun, 30 Jun 2013 19:18:21
Message-Id: 20130630191815.243CD2171D@flycatcher.gentoo.org
1 hasufell 13/06/30 19:18:15
2
3 Added: libspatialindex-1.8.1-QA.patch
4 libspatialindex-1.8.1-pkgconfig.patch
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.1 sci-libs/libspatialindex/files/libspatialindex-1.8.1-QA.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/files/libspatialindex-1.8.1-QA.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/files/libspatialindex-1.8.1-QA.patch?rev=1.1&content-type=text/plain
15
16 Index: libspatialindex-1.8.1-QA.patch
17 ===================================================================
18 --- spatialindex-src-1.8.0/configure.ac
19 +++ spatialindex-src-1.8.0/configure.ac
20 @@ -49,10 +49,10 @@
21 AC_ARG_ENABLE(debug, [ --enable-debug=[no/yes] turn on debugging [default=$debug_default]],, enable_debug=$debug_default)
22
23 if test "x$enable_debug" = "xyes"; then
24 - CXXFLAGS="$CXXFLAGS -g -DDEBUG"
25 + CXXFLAGS="$CXXFLAGS -DDEBUG"
26 AC_MSG_RESULT(checking wether debug information is enabled... yes)
27 else
28 - CXXFLAGS="$CXXFLAGS -O2 -DNDEBUG"
29 + CXXFLAGS="$CXXFLAGS -DNDEBUG"
30 AC_MSG_RESULT(checking wether debug information is enabled... no)
31 fi
32
33
34
35
36 1.1 sci-libs/libspatialindex/files/libspatialindex-1.8.1-pkgconfig.patch
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/files/libspatialindex-1.8.1-pkgconfig.patch?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/files/libspatialindex-1.8.1-pkgconfig.patch?rev=1.1&content-type=text/plain
40
41 Index: libspatialindex-1.8.1-pkgconfig.patch
42 ===================================================================
43 From: Julian Ospald <hasufell@g.o>
44 Date: Sun Jun 30 19:10:57 UTC 2013
45 Subject: remove LDFLAGS from Libs field
46
47 https://github.com/libspatialindex/libspatialindex/issues/23
48
49 --- spatialindex-src-1.8.1/src/libspatialindex.pc.in
50 +++ spatialindex-src-1.8.1/src/libspatialindex.pc.in
51 @@ -7,6 +7,6 @@
52 Description: Generic C/C++ library for spatial indexing
53 Requires:
54 Version: @PACKAGE_VERSION@
55 -Libs: -L@libdir@ @LDFLAGS@
56 +Libs: -L@libdir@
57 Cflags: -I${includedir}/spatialindex @CFLAGS@ @CPPFLAGS@