From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52825) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iG6xR-00016A-7o for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iG6xP-0001Au-8j for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:13 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60696) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iG6xO-00019t-L0 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 1iG6xO-00013A-Hy for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:10 -0400 Subject: [bug#37589] [PATCH v2 24/25] gnu: xfce: Add xfce4-places-plugin Resent-Message-ID: From: Ingo Ruhnke Date: Thu, 3 Oct 2019 21:38:44 +0200 Message-Id: <20191003193845.7108-24-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-places-plugin. --- gnu/packages/xfce.scm | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 1c454341f9..57d1fec021 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1674,6 +1674,47 @@ mounted or when unmounting fails.") interfaces of your choice in the panel.") (license gpl2+))) +(define-public xfce4-places-plugin + (package + (name "xfce4-places-plugin") + (version "1.8.1") + (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 + "1chac4ki70axgvkmhw94m0srsv0pwiwqrqbh8di0y9n90fgj24gj")))) + (build-system gnu-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (inputs + `(("desktop-file-utils" ,desktop-file-utils) + ("gtk+-2" ,gtk+-2) + ("exo" ,exo) + ("libxfce4ui" ,libxfce4ui) + ("xfce4-panel" ,xfce4-panel))) + (home-page + "https://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin") + (synopsis "Gnome-like Places menu for the Xfce panel") + (description "This plugin provides a menu with quick access to folders, +documents, and removable media. The places plugin brings much of the +functionality of GNOME's Places menu to Xfce. + +The plugin puts a simple button on the panel. Clicking on this button +opens up a menu with the following: + +@itemize +@item System-defined directories (home folder, trash, desktop, file system) +@item Removable media (using thunar-vfs) +@item User-defined bookmarks (reads @file{~/.gtk-bookmarks}) +@item Search program launcher (optional) +@item Recent documents submenu +@end itemize") + (license gpl2+))) + (define-public xfce4-smartbookmark-plugin (package (name "xfce4-smartbookmark-plugin") -- 2.20.1