From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52815) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iG6xQ-000164-T4 for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iG6xP-0001B2-8c for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:12 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60694) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iG6xN-000185-Ic for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:11 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iG6xN-00012v-FS for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:09 -0400 Subject: [bug#37589] [PATCH v2 22/25] gnu: xfce: Add xfce4-mailwatch-plugin Resent-Message-ID: From: Ingo Ruhnke Date: Thu, 3 Oct 2019 21:38:42 +0200 Message-Id: <20191003193845.7108-22-grumbel@gmail.com> In-Reply-To: <20191003193845.7108-1-grumbel@gmail.com> References: <20191003193845.7108-1-grumbel@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37589@debbugs.gnu.org * gnu/packages/xfce.scm: Add xfce4-mailwatch-plugin. --- gnu/packages/xfce.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index a455df49a3..cbd8a54068 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1513,6 +1513,43 @@ button and a personalized tooltip.") Caps, Scroll and Num Lock in Xfce panel.") (license gpl2+))) +(define-public xfce4-mailwatch-plugin + (package + (name "xfce4-mailwatch-plugin") + (version "1.2.0") + (source (origin + (method url-fetch) + (uri (string-append "http://archive.xfce.org/src/panel-plugins/" + name "/" (version-major+minor version) "/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "1bfw3smwivr9mzdyq768biqrl4aq94zqi3xjzq6kqnd8561cqjk2")))) + (build-system gnu-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (inputs + `(("gtk+-2" ,gtk+-2) + ("libxfce4ui" ,libxfce4ui) + ("exo" ,exo) + ("xfce4-panel" ,xfce4-panel))) + (home-page + "https://goodies.xfce.org/projects/panel-plugins/xfce4-mailwatch-plugin") + (synopsis "Mail watch plugin for the Xfce panel") + (description "The Xfce4 Mailwatch Plugin is a multi-protocol, +multi-mailbox mail watcher. Currently, the protocols supported are: + +@itemize +@item IMAP (SSL/TLS and cleartext, CRAM-MD5) +@item POP3 (SSL/TLS and cleartext, CRAM-MD5) +@item Mbox mail spool (local) +@item Maildir mail spool (local) +@item MH-Maildir mail spool (local) +@item Google Mail (GMail) mailbox (remote) (requires gnutls) +@end itemize") + (license gpl2))) + (define-public xfce4-mpc-plugin (package (name "xfce4-mpc-plugin") -- 2.20.1