Index: branches/2020Q3/x11/xfce4-taskmanager/Makefile =================================================================== --- branches/2020Q3/x11/xfce4-taskmanager/Makefile (revision 542486) +++ branches/2020Q3/x11/xfce4-taskmanager/Makefile (revision 542487) @@ -1,33 +1,34 @@ # Created by: DaJoob # $FreeBSD$ PORTNAME= xfce4-taskmanager PORTVERSION= 1.2.3 +PORTREVISION= 1 CATEGORIES= x11 xfce MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org COMMENT= Task manager for the Xfce desktop LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= gettext-tools gmake gnome localbase pkgconfig tar:bzip2 \ xorg USE_GNOME= cairo gdkpixbuf2 glib20 gtk30 intltool libwnck3 USE_XORG= ice sm x11 xmu xt GNU_CONFIGURE= yes INSTALLS_ICONS= yes CONFIGURE_ARGS+= --disable-silent-rules --disable-gksu \ --enable-wnck3 --disable-wnck --disable-gtk2 OPTIONS_DEFINE= NLS OPTIONS_SUB= yes NLS_CONFIGURE_ENABLE= nls NLS_USES= gettext-runtime .include Index: branches/2020Q3/x11/xfce4-taskmanager/files/patch-src_task-manager.c =================================================================== --- branches/2020Q3/x11/xfce4-taskmanager/files/patch-src_task-manager.c (nonexistent) +++ branches/2020Q3/x11/xfce4-taskmanager/files/patch-src_task-manager.c (revision 542487) @@ -0,0 +1,18 @@ +--- src/task-manager.c.orig 2019-12-09 09:12:44 UTC ++++ src/task-manager.c +@@ -432,10 +432,12 @@ xtm_task_manager_update_model (XtmTaskManager *manager + gtk_tree_model_get (manager->model, &cur_iter, XTM_PTV_COLUMN_CPU_STR, &cpu_str, XTM_PTV_COLUMN_TIMESTAMP, &old_timestamp, XTM_PTV_COLUMN_PID, &pid, -1); + found = (g_strcmp0 (cpu_str, "-") == 0); + g_free (cpu_str); +- if (found && (timestamp - old_timestamp) > TIMESTAMP_DELTA) ++ if (found) + { +- G_DEBUG_FMT ("Remove old task %d", pid); +- model_remove_tree_iter (manager->model, &cur_iter); ++ if ((timestamp - old_timestamp) > TIMESTAMP_DELTA) { ++ G_DEBUG_FMT ("Remove old task %d", pid); ++ model_remove_tree_iter (manager->model, &cur_iter); ++ } + continue; + } + Property changes on: branches/2020Q3/x11/xfce4-taskmanager/files/patch-src_task-manager.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2020Q3 =================================================================== --- branches/2020Q3 (revision 542486) +++ branches/2020Q3 (revision 542487) Property changes on: branches/2020Q3 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r542356