commit:     ba6473341f414f64c355302901890f5b3d9d752d
Author:     Daniel Pielmeier <billie <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 19 16:55:08 2016 +0000
Commit:     Daniel Pielmeier <billie <AT> gentoo <DOT> org>
CommitDate: Fri Feb 19 16:55:08 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba647334

app-admin/conky: Add patch to build with wifi support.

This fixes bug #573502. Thanks to Stanislav Nikitin for the report
and Till Schäfer for testing the patch.

Package-Manager: portage-2.2.26

 app-admin/conky/conky-1.10.1.ebuild                  |  2 ++
 app-admin/conky/files/conky-1.10.1-includewlan.patch | 13 +++++++++++++
 2 files changed, 15 insertions(+)

diff --git a/app-admin/conky/conky-1.10.1.ebuild 
b/app-admin/conky/conky-1.10.1.ebuild
index 86a87b8..be3ce3f 100644
--- a/app-admin/conky/conky-1.10.1.ebuild
+++ b/app-admin/conky/conky-1.10.1.ebuild
@@ -76,6 +76,8 @@ pkg_setup() {
 }
 
 src_prepare() {
+       epatch "${FILESDIR}/${P}-includewlan.patch"
+
        # Allow user patches #478482
        epatch_user
 }

diff --git a/app-admin/conky/files/conky-1.10.1-includewlan.patch 
b/app-admin/conky/files/conky-1.10.1-includewlan.patch
new file mode 100644
index 0000000..82b09a7
--- /dev/null
+++ b/app-admin/conky/files/conky-1.10.1-includewlan.patch
@@ -0,0 +1,13 @@
+diff -Naur a/cmake/ConkyPlatformChecks.cmake b/cmake/ConkyPlatformChecks.cmake
+--- a/cmake/ConkyPlatformChecks.cmake  2015-11-18 20:47:45.000000000 +0500
++++ b/cmake/ConkyPlatformChecks.cmake  2016-01-31 20:04:58.036144590 +0500
+@@ -141,7 +141,8 @@
+ endif(BUILD_MYSQL)
+ 
+ if(BUILD_WLAN)
+-      check_include_file(iwlib.h IWLIB_H -D_GNU_SOURCE)
++      set(CMAKE_REQUIRED_DEFINITIONS -D_GNU_SOURCE) 
++      check_include_files(iwlib.h IWLIB_H -D_GNU_SOURCE)
+       if(NOT IWLIB_H)
+               message(FATAL_ERROR "Unable to find iwlib.h")
+       endif(NOT IWLIB_H)

Reply via email to