unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 01/15] gnu: Add gtk-xfce-engine.
@ 2014-12-10 12:02 宋文武
  2014-12-10 12:02 ` [PATCH 02/15] gnu: Add libxfce4util 宋文武
                   ` (14 more replies)
  0 siblings, 15 replies; 34+ messages in thread
From: 宋文武 @ 2014-12-10 12:02 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/xfce.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
---
 gnu-system.am         |  1 +
 gnu/packages/xfce.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)
 create mode 100644 gnu/packages/xfce.scm

diff --git a/gnu-system.am b/gnu-system.am
index e923340..2854fb5 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -279,6 +279,7 @@ GNU_SYSTEM_MODULES =				\
   gnu/packages/xnee.scm				\
   gnu/packages/xdisorg.scm			\
   gnu/packages/xorg.scm				\
+  gnu/packages/xfce.scm				\
   gnu/packages/yasm.scm				\
   gnu/packages/yubico.scm			\
   gnu/packages/zile.scm				\
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
new file mode 100644
index 0000000..696fffe
--- /dev/null
+++ b/gnu/packages/xfce.scm
@@ -0,0 +1,48 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2014 Sou Bunnbu <iyzsong@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages xfce)
+  #:use-module (guix licenses)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (guix build-system gnu)
+  #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages glib)
+  #:use-module (gnu packages gtk))
+
+(define-public gtk-xfce-engine
+  (package
+    (name "gtk-xfce-engine")
+    (version "3.0.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://archive.xfce.org/xfce/4.10/src/"
+                                  name "-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "13c3ajfqkdr6jlqjyhcp4nls0ddanypr83q9qib2ciffik78zq4h"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("intltool" ,intltool)))
+    (inputs `(("gtk+" ,gtk+-2)))
+    (home-page "http://www.xfce.org/")
+    (synopsis "GTK+ theme engine for Xfce")
+    (description
+     "Default GTK+ engine and themes for Xfce Desktop Environment.")
+    (license gpl2+)))
-- 
2.1.2

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

end of thread, other threads:[~2014-12-13  3:20 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-10 12:02 [PATCH 01/15] gnu: Add gtk-xfce-engine 宋文武
2014-12-10 12:02 ` [PATCH 02/15] gnu: Add libxfce4util 宋文武
2014-12-11 13:28   ` Ludovic Courtès
2014-12-10 12:02 ` [PATCH 03/15] gnu: Add xfconf 宋文武
2014-12-11 13:28   ` Ludovic Courtès
2014-12-12 15:28   ` Mark H Weaver
2014-12-13  3:20     ` 宋文武
2014-12-10 12:02 ` [PATCH 04/15] gnu: Add libxfce4ui 宋文武
2014-12-11 13:29   ` Ludovic Courtès
2014-12-10 12:02 ` [PATCH 05/15] gnu: Add exo 宋文武
2014-12-11 13:30   ` Ludovic Courtès
2014-12-10 12:02 ` [PATCH 06/15] gnu: Add garcon 宋文武
2014-12-10 12:02 ` [PATCH 07/15] gnu: Add tumbler 宋文武
2014-12-11 13:31   ` Ludovic Courtès
2014-12-10 12:02 ` [PATCH 08/15] gnu: Add xfce4-panel 宋文武
2014-12-11 13:31   ` Ludovic Courtès
2014-12-10 12:02 ` [PATCH 09/15] gnu: Add xfce4-appfinder 宋文武
2014-12-11 13:32   ` Ludovic Courtès
2014-12-10 12:02 ` [PATCH 10/15] gnu: Add xfce4-session 宋文武
2014-12-11 13:32   ` Ludovic Courtès
2014-12-10 12:02 ` [PATCH 11/15] gnu: Add xfce4-settings 宋文武
2014-12-11 13:33   ` Ludovic Courtès
2014-12-12  2:37   ` Mark H Weaver
2014-12-12 12:53     ` 宋文武
2014-12-10 12:02 ` [PATCH 12/15] gnu: Add thunar 宋文武
2014-12-11 13:34   ` Ludovic Courtès
2014-12-10 12:02 ` [PATCH 13/15] gnu: Add thunar-volman 宋文武
2014-12-11 13:35   ` Ludovic Courtès
2014-12-10 12:02 ` [PATCH 14/15] gnu: Add xfwm4 宋文武
2014-12-11 13:35   ` Ludovic Courtès
2014-12-10 12:02 ` [PATCH 15/15] gnu: Add xfdesktop 宋文武
2014-12-11 13:36   ` Ludovic Courtès
2014-12-12 12:54     ` 宋文武
2014-12-11 13:27 ` [PATCH 01/15] gnu: Add gtk-xfce-engine Ludovic Courtès

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).