summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Mrozowski <reavertm@gentoo.org>2010-04-27 13:47:49 +0000
committerMaciej Mrozowski <reavertm@gentoo.org>2010-04-27 13:47:49 +0000
commit7cb931640ac6e94b4d27cfbf0205680beeae5081 (patch)
tree4b5ab57ea83649246600211d3f8596b0b52c6cff /dev-libs/libdbusmenu-qt/files
parentx86 stable wrt bug #315297 (diff)
downloadgentoo-2-7cb931640ac6e94b4d27cfbf0205680beeae5081.tar.gz
gentoo-2-7cb931640ac6e94b4d27cfbf0205680beeae5081.tar.bz2
gentoo-2-7cb931640ac6e94b4d27cfbf0205680beeae5081.zip
Version bump 0.3.2, fix bug 317389, restrict test, bug 315215
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libdbusmenu-qt/files')
-rw-r--r--dev-libs/libdbusmenu-qt/files/libdbusmenu-qt-0.3.2-cmake.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-libs/libdbusmenu-qt/files/libdbusmenu-qt-0.3.2-cmake.patch b/dev-libs/libdbusmenu-qt/files/libdbusmenu-qt-0.3.2-cmake.patch
new file mode 100644
index 000000000000..e8e13c480bf4
--- /dev/null
+++ b/dev-libs/libdbusmenu-qt/files/libdbusmenu-qt-0.3.2-cmake.patch
@@ -0,0 +1,30 @@
+Only in .: build
+diff -ru ../libdbusmenu-qt-0.3.2/cmake/modules/FindQJSON.cmake ./cmake/modules/FindQJSON.cmake
+--- ../libdbusmenu-qt-0.3.2/cmake/modules/FindQJSON.cmake 2010-04-27 15:20:49.187784398 +0200
++++ ./cmake/modules/FindQJSON.cmake 2010-04-27 15:21:06.515858660 +0200
+@@ -17,14 +17,14 @@
+ # use pkg-config to get the values of QJSON_INCLUDE_DIRS
+ # and QJSON_LIBRARY_DIRS to add as hints to the find commands.
+ include (FindPkgConfig)
+- pkg_check_modules (QJSON QJson>=0.5)
++ pkg_check_modules (PC_QJSON QJson>=0.5)
+ endif (NOT WIN32)
+
+ find_library (QJSON_LIBRARIES
+ NAMES
+ qjson
+ PATHS
+- ${QJSON_LIBRARY_DIRS}
++ ${PC_QJSON_LIBRARY_DIRS}
+ ${LIB_INSTALL_DIR}
+ ${KDE4_LIB_DIR}
+ )
+@@ -35,7 +35,7 @@
+ PATH_SUFFIXES
+ qjson
+ PATHS
+- ${QJSON_INCLUDE_DIRS}
++ ${PC_QJSON_INCLUDE_DIRS}
+ ${INCLUDE_INSTALL_DIR}
+ ${KDE4_INCLUDE_DIR}
+ )