New commits:
commit faa03c47c96ed05bb56e356b265f1b51f4d6bf50
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
x11/conky: converted libmicrohttpd to optional dependency
diff --git a/x11/conky/CONFIGURE b/x11/conky/CONFIGURE
index aecb49c..64b5eda 100755
--- a/x11/conky/CONFIGURE
+++ b/x11/conky/CONFIGURE
@@ -4,8 +4,6 @@ config_query_option CONKY_OPTS 'enable METAR weather
support?' n \
'-DBUILD_WEATHER_METAR=on' '-DBUILD_WEATHER_METAR=off' &&
config_query_option CONKY_OPTS 'enable XOAP weather support?' n \
'-DBUILD_WEATHER_XOAP=on' '-DBUILD_WEATHER_XOAP=off' &&
-config_query_option CONKY_OPTS 'enable support HTTP?' n \
- '-DBUILD_HTTP=on' '-DBUILD_HTTP=off' &&
config_query_option CONKY_OPTS 'enable support for IBM/Lenovo laptops?' n \
'-DBUILD_IBM=on' '-DBUILD_IBM=off' &&
config_query_option CONKY_OPTS 'enable support for iconv?' n \
@@ -21,4 +19,7 @@ config_query_option CONKY_OPTS 'enable support for per task
IO stats?' y \
config_query_option CONKY_OPTS 'enable support XShape?' y \
'-DBUILD_XSHAPE=on' '-DBUILD_XSHAPE=off' &&
config_query_option CONKY_OPTS 'enable support for IPv4 port monitoring?' y \
- '-DBUILD_PORT_MONITORS=on' '-DBUILD_PORT_MONITORS=off'
+ '-DBUILD_PORT_MONITORS=on' '-DBUILD_PORT_MONITORS=off' &&
+
+list_remove 'CONKY_OPTS' '-DBUILD_HTTP=on' &&
+list_remove 'CONKY_OPTS' '-DBUILD_HTTP=off'
diff --git a/x11/conky/DEPENDS b/x11/conky/DEPENDS
index b9845a5..7f3a97f 100755
--- a/x11/conky/DEPENDS
+++ b/x11/conky/DEPENDS
@@ -1,8 +1,11 @@
depends glib2 &&
depends cmake &&
depends LUA &&
-depends libmicrohttpd &&