[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/13: gnu: Add mate-panel.
From: |
Efraim Flashner |
Subject: |
06/13: gnu: Add mate-panel. |
Date: |
Tue, 12 Sep 2017 02:57:31 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit c3812bec8ef24400f5728146075b6411a3bf8161
Author: ng0 <address@hidden>
Date: Mon Aug 14 18:58:34 2017 +0000
gnu: Add mate-panel.
* gnu/packages/mate.scm (mate-panel): New variable.
Signed-off-by: Efraim Flashner <address@hidden>
---
gnu/packages/mate.scm | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 74 insertions(+)
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 94f6280..17e6c0c 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -282,6 +282,80 @@ specification, the MATE menu layout configuration files,
.directory files and
assorted menu related utility programs.")
(license (list license:gpl2+ license:lgpl2.0+))))
+(define-public mate-panel
+ (package
+ (name "mate-panel")
+ (version "1.18.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://pub.mate-desktop.org/releases/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1n565ff1n7jrfx223i3cl3m69wjda506nvbn8gra7m1jwdfzpbw1"))))
+ (build-system glib-or-gtk-build-system)
+ (arguments
+ `(#:configure-flags
+ (list (string-append "--with-zoneinfo-dir="
+ (assoc-ref %build-inputs "tzdata")
+ "/share/zoneinfo")
+ "--with-in-process-applets=all")
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'configure 'fix-timezone-path
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let* ((tzdata (assoc-ref inputs "tzdata")))
+ (substitute* "applets/clock/system-timezone.h"
+ (("/usr/share/lib/zoneinfo/tab")
+ (string-append tzdata "/share/zoneinfo/zone.tab"))
+ (("/usr/share/zoneinfo")
+ (string-append tzdata "/share/zoneinfo"))))
+ #t))
+ (add-after 'unpack 'fix-introspection-install-dir
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (substitute* '("configure")
+ (("`\\$PKG_CONFIG --variable=girdir
gobject-introspection-1.0`")
+ (string-append "\"" out "/share/gir-1.0/\""))
+ (("\\$\\(\\$PKG_CONFIG --variable=typelibdir
gobject-introspection-1.0\\)")
+ (string-append out "/lib/girepository-1.0/")))
+ #t))))))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("intltool" ,intltool)
+ ("itstool" ,itstool)
+ ("xtrans" ,xtrans)
+ ("gobject-introspection" ,gobject-introspection)))
+ (inputs
+ `(("dconf" ,dconf)
+ ("cairo" ,cairo)
+ ("dbus-glib" ,dbus-glib)
+ ("gtk+" ,gtk+)
+ ("libcanberra" ,libcanberra)
+ ("libice" ,libice)
+ ("libmateweather" ,libmateweather)
+ ("librsvg" ,librsvg)
+ ("libsm" ,libsm)
+ ("libx11" ,libx11)
+ ("libxau" ,libxau)
+ ("libxml2" ,libxml2)
+ ("libxrandr" ,libxrandr)
+ ("libwnck" ,libwnck)
+ ("mate-desktop" ,mate-desktop)
+ ("mate-menus" ,mate-menus)
+ ("pango" ,pango)
+ ("tzdata" ,tzdata)))
+ (home-page "https://mate-desktop.org/")
+ (synopsis "Panel for MATE")
+ (description
+ "Mate-panel contains the MATE panel, the libmate-panel-applet library and
+several applets. The applets supplied here include the Workspace Switcher,
+the Window List, the Window Selector, the Notification Area, the Clock and the
+infamous 'Wanda the Fish'.")
+ (license (list license:gpl2+ license:lgpl2.0+))))
+
(define-public caja
(package
(name "caja")
- branch master updated (f435379 -> b5831eb), Efraim Flashner, 2017/09/12
- 01/13: gnu: monero: Fix building on aarch64-linux., Efraim Flashner, 2017/09/12
- 04/13: gnu: Add marco., Efraim Flashner, 2017/09/12
- 03/13: gnu: Add mate-terminal., Efraim Flashner, 2017/09/12
- 09/13: gnu: Add mate-settings-daemon., Efraim Flashner, 2017/09/12
- 07/13: gnu: Add libmatemixer., Efraim Flashner, 2017/09/12
- 11/13: gnu: Add mate-media., Efraim Flashner, 2017/09/12
- 13/13: gnu: Add mate., Efraim Flashner, 2017/09/12
- 02/13: gnu: Add caja., Efraim Flashner, 2017/09/12
- 05/13: gnu: Add mate-session-manager., Efraim Flashner, 2017/09/12
- 06/13: gnu: Add mate-panel.,
Efraim Flashner <=
- 08/13: gnu: Add libmatekbd., Efraim Flashner, 2017/09/12
- 10/13: gnu: Add mate-applets., Efraim Flashner, 2017/09/12
- 12/13: gnu: Add mate-control-center., Efraim Flashner, 2017/09/12