all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add xfce4-taskmanager.
@ 2016-04-25 21:36 Kei Yamashita
  2016-04-26  1:26 ` 宋文武
  0 siblings, 1 reply; 4+ messages in thread
From: Kei Yamashita @ 2016-04-25 21:36 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 69 bytes --]

This patch contains a definition for Xfce's most recent task manager.

[-- Attachment #2: 0001-gnu-Add-xfce4-taskmanager.patch --]
[-- Type: application/octet-stream, Size: 1734 bytes --]

From a82073a118221e69b604b5c9bbc5e63765f78b15 Mon Sep 17 00:00:00 2001
From: Kei Yamashita <kei@openmailbox.org>
Date: Mon, 25 Apr 2016 17:33:06 -0400
Subject: [PATCH] gnu: Add xfce4-taskmanager.

* gnu/packages/xfce.scm (xfce4-taskmanager): Add variable.
---
 gnu/packages/xfce.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 81f9672..c050b12 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -788,3 +788,29 @@ and scroll through images.  It can be used to run a slideshow of images, open
 images with other applications like an image-editor or configure an image as
 the desktop wallpaper.")
     (license gpl2+)))
+
+(define-public xfce4-taskmanager
+  (package
+    (name "xfce4-taskmanager")
+    (version "1.1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://archive.xfce.org/src/apps/"
+                                  name "/" (version-major+minor version) "/"
+                                  name "-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "1jwywmkkkmz7406m1jq40w6apiav25cznafhigbgpjv6z5hv27if"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("libwnck" ,libwnck)
+       ("gtk+" ,gtk+-2)))
+    (home-page "http://goodies.xfce.org/projects/applications/xfce4-taskmanager")
+    (synopsis "Easy to use task manager")
+    (description
+     "This is a task manager for the Xfce desktop.  It displays the CPU and
+memory usage graphically, and it can display processes as a tree.")
+    (license gpl2+)))
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] gnu: Add xfce4-taskmanager.
  2016-04-25 21:36 [PATCH] gnu: Add xfce4-taskmanager Kei Yamashita
@ 2016-04-26  1:26 ` 宋文武
  2016-04-26 18:32   ` Andreas Enge
  0 siblings, 1 reply; 4+ messages in thread
From: 宋文武 @ 2016-04-26  1:26 UTC (permalink / raw)
  To: Kei Yamashita; +Cc: guix-devel

Kei Yamashita <kei@openmailbox.org> writes:

> This patch contains a definition for Xfce's most recent task manager.
>
I replace libwnck with libwnck-2, as the gtk+-3 version is not detected
by the configure script.

Pushed, thanks!

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gnu: Add xfce4-taskmanager.
  2016-04-26  1:26 ` 宋文武
@ 2016-04-26 18:32   ` Andreas Enge
  2016-04-26 19:39     ` Kei Yamashita
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Enge @ 2016-04-26 18:32 UTC (permalink / raw)
  To: 宋文武; +Cc: guix-devel

On Tue, Apr 26, 2016 at 09:26:58AM +0800, 宋文武 wrote:
> Kei Yamashita <kei@openmailbox.org> writes:
> > This patch contains a definition for Xfce's most recent task manager.
> I replace libwnck with libwnck-2, as the gtk+-3 version is not detected
> by the configure script.
> 
> Pushed, thanks!

Thanks for the patch and its application! It is nice to see Xfce getting
closer to completion.

Do you think it should maybe be added to the xfce meta package?

Andreas

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gnu: Add xfce4-taskmanager.
  2016-04-26 18:32   ` Andreas Enge
@ 2016-04-26 19:39     ` Kei Yamashita
  0 siblings, 0 replies; 4+ messages in thread
From: Kei Yamashita @ 2016-04-26 19:39 UTC (permalink / raw)
  To: Andreas Enge; +Cc: guix-devel

On Tue, 26 Apr 2016 20:32:41 +0200
Andreas Enge <andreas@enge.fr> wrote:

> On Tue, Apr 26, 2016 at 09:26:58AM +0800, 宋文武 wrote:
> > Kei Yamashita <kei@openmailbox.org> writes:  
> > > This patch contains a definition for Xfce's most recent task
> > > manager.  
> > I replace libwnck with libwnck-2, as the gtk+-3 version is not
> > detected by the configure script.
> > 
> > Pushed, thanks!  
> 
> Thanks for the patch and its application! It is nice to see Xfce
> getting closer to completion.
> 
> Do you think it should maybe be added to the xfce meta package?
> 
> Andreas
> 

At some point, yes. I'm working on some more packages like mousepad and
orage. Eventually I'll add them to the xfce meta package when things
are solid.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-04-26 19:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-25 21:36 [PATCH] gnu: Add xfce4-taskmanager Kei Yamashita
2016-04-26  1:26 ` 宋文武
2016-04-26 18:32   ` Andreas Enge
2016-04-26 19:39     ` Kei Yamashita

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.