sysutils/conky: Update to 1.13.1
- Remove option referencing removed xmms2 port
This commit is contained in:
parent
eaf7a4ee53
commit
26ddb168f9
3 changed files with 21 additions and 9 deletions
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= conky
|
||||
PORTVERSION= 1.12.2
|
||||
PORTVERSION= 1.13.1
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= sysutils
|
||||
|
||||
|
|
@ -34,7 +34,7 @@ USE_GITHUB= yes
|
|||
GH_ACCOUNT= brndnmtthws
|
||||
|
||||
OPTIONS_DEFINE= APCUPSD CURL DOCS EXAMPLES IPV6 METAR MOC MPD NCURSES RSS \
|
||||
X11 XMMS2 XOAP
|
||||
X11 XOAP
|
||||
|
||||
OPTIONS_GROUP?= X11
|
||||
OPTIONS_GROUP_X11= ARGB DOUBLE_BUFFER IMLIB2 XFT XINERAMA LUA_CAIRO LUA_IMLIB2 LUA_RSVG
|
||||
|
|
@ -113,10 +113,6 @@ XINERAMA_CMAKE_BOOL= BUILD_XINERAMA
|
|||
XINERAMA_USE= xorg=xinerama
|
||||
XINERAMA_IMPLIES= X11
|
||||
|
||||
XMMS2_DESC= Control XMMS2 media player
|
||||
XMMS2_CMAKE_BOOL= BUILD_XMMS2
|
||||
XMMS2_LIB_DEPENDS= libxmmsclient.so:audio/xmms2
|
||||
|
||||
XOAP_DESC= Display XOAP weather reports
|
||||
XOAP_CMAKE_BOOL= BUILD_WEATHER_XOAP
|
||||
XOAP_IMPLIES= CURL METAR
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1619365300
|
||||
SHA256 (brndnmtthws-conky-v1.12.2_GH0.tar.gz) = a7eb112fe7a6bcd6c44706a53cbf6222e640cd1e585492fc654aa9e05a7bbc94
|
||||
SIZE (brndnmtthws-conky-v1.12.2_GH0.tar.gz) = 2407428
|
||||
TIMESTAMP = 1663601049
|
||||
SHA256 (brndnmtthws-conky-v1.13.1_GH0.tar.gz) = f85c96250b501e937b9b5d2ff3f06176e14777c94cec81373bbfc8a619d7a05a
|
||||
SIZE (brndnmtthws-conky-v1.13.1_GH0.tar.gz) = 2443276
|
||||
|
|
|
|||
16
sysutils/conky/files/patch-src_display-console.cc
Normal file
16
sysutils/conky/files/patch-src_display-console.cc
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
--- src/display-console.cc.orig 2022-09-19 15:16:35 UTC
|
||||
+++ src/display-console.cc
|
||||
@@ -54,8 +54,11 @@ bool display_output_console::detect() {
|
||||
}
|
||||
|
||||
bool display_output_console::detect() {
|
||||
- if ((out_to_stdout.get(*state) || out_to_stderr.get(*state)) &&
|
||||
- !out_to_ncurses.get(*state)) {
|
||||
+ if ((out_to_stdout.get(*state) || out_to_stderr.get(*state))
|
||||
+#ifdef BUILD_NCURSES
|
||||
+ && !out_to_ncurses.get(*state)
|
||||
+#endif
|
||||
+ ) {
|
||||
DBGP2("Display output '%s' enabled in config.", name.c_str());
|
||||
return true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue