unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Brasero, or gnome without gnome
@ 2013-10-02 12:41 Andreas Enge
  2013-10-02 18:02 ` Andreas Enge
  2013-10-02 19:26 ` Cyril Roelandt
  0 siblings, 2 replies; 28+ messages in thread
From: Andreas Enge @ 2013-10-02 12:41 UTC (permalink / raw)
  To: guix-devel

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

Hi,

the attached patch is supposed to add the gnome cd burner brasero.
It compiles, but starting brasero fails on my debian kde desktop with
the following messages:

** (brasero:15560): WARNING **: Error retrieving accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files

(brasero:15560): GLib-GIO-ERROR **: Settings schema 'org.gnome.brasero.config' is not installed

Trace/breakpoint trap


Following
   http://forums.gentoo.org/viewtopic-p-7380668.html
   https://mail.gnome.org/archives/commits-list/2012-October/msg08466.html
the first one can be silenced by
   export NO_AT_BRIDGE=1

For the second one, I found
   http://forum.salixos.org/viewtopic.php?p=12697 that leads to
   http://forum.salixos.org/viewtopic.php?f=17&t=1852&start=10#p12011
or
   https://bugs.mageia.org/show_bug.cgi?id=3843


Does anyone know how to start a gtk+-3 application on a "foreign" desktop?
How can we get around running commands such as
   /usr/bin/glib-compile-schemas --allow-any-name /usr/share/glib-2.0/schemas/ ?

Andreas


[-- Attachment #2: brasero.diff --]
[-- Type: text/x-diff, Size: 2289 bytes --]

diff --git a/gnu/packages/cdrom.scm b/gnu/packages/cdrom.scm
index e207ae6..390b200 100644
--- a/gnu/packages/cdrom.scm
+++ b/gnu/packages/cdrom.scm
@@ -26,12 +26,18 @@
   #:use-module (gnu packages acl)
   #:use-module (gnu packages compression)
   #:use-module ((gnu packages gettext) #:renamer (symbol-prefix-proc 'gnu:))
+  #:use-module (gnu packages glib)
+  #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gstreamer)
   #:use-module (gnu packages gtk)
+  #:use-module (gnu packages libcanberra)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages help2man)
   #:use-module (gnu packages pkg-config)
-  #:use-module (gnu packages which))
+  #:use-module (gnu packages which)
+  #:use-module (gnu packages xml)
+  #:use-module (gnu packages xorg))
 
 (define-public libcddb
   (package
@@ -182,3 +188,36 @@ files.  Dvdisaster works at the image level so that the recovery does not
 depend on the file system of the medium.  The maximum error correction
 capacity is user-selectable.")
     (license gpl2+)))
+
+(define-public brasero
+  (package
+    (name "brasero")
+    (version "3.8.0")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append "mirror://gnome/sources/brasero/3.8/brasero-"
+                                 version ".tar.xz"))
+             (sha256
+              (base32
+               "1r5wjsrm47amdaf862ymkdlwlb636c45wg14x20hdr99c653d2nr"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("glib" ,glib)
+       ("gnome-doc-utils" ,gnome-doc-utils)
+       ("gstreamer" ,gstreamer)
+       ("gst-plugins-base" ,gst-plugins-base)
+       ("gtk+" ,gtk+)
+       ("intltool" ,intltool)
+       ("itstool" ,itstool)
+       ("libcanberra" ,libcanberra)
+       ("libice" ,libice)
+       ("libnotify" ,libnotify)
+       ("libsm" ,libsm)
+       ("libxml2" ,libxml2)
+       ("pkg-config" ,pkg-config)))
+    (home-page "https://projects.gnome.org/brasero/")
+    (synopsis "CD/DVD burning tool for Gnome")
+    (description "Brasero is an application to burn CD/DVD for the Gnome
+Desktop.  It is designed to be as simple as possible and has some unique
+features to enable users to create their discs easily and quickly.")
+    (license gpl2+)))

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

end of thread, other threads:[~2013-10-10 20:03 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-02 12:41 Brasero, or gnome without gnome Andreas Enge
2013-10-02 18:02 ` Andreas Enge
2013-10-02 19:32   ` Ludovic Courtès
2013-10-02 20:56     ` Andreas Enge
2013-10-02 21:18       ` Andreas Enge
2013-10-02 22:24         ` Ludovic Courtès
2013-10-03 11:07           ` Andreas Enge
2013-10-03 11:19             ` Ludovic Courtès
2013-10-04 16:50             ` Aljosha Papsch
2013-10-04 20:01               ` Ludovic Courtès
2013-10-07 19:53               ` Andreas Enge
2013-10-09 17:03                 ` Aljosha Papsch
2013-10-09 20:22                   ` Ludovic Courtès
2013-10-09 23:01                     ` Aljosha Papsch
2013-10-10 12:11                       ` Ludovic Courtès
2013-10-10 20:02                         ` LXDE, was: " Andreas Enge
2013-10-10 12:26                   ` Andreas Enge
2013-10-07 20:11               ` Andreas Enge
2013-10-07 22:00                 ` Ludovic Courtès
2013-10-02 22:17       ` Ludovic Courtès
2013-10-03 11:01         ` Andreas Enge
2013-10-03 11:21           ` Ludovic Courtès
2013-10-03 18:30             ` Andreas Enge
2013-10-03 21:10               ` Ludovic Courtès
2013-10-07 19:48                 ` Andreas Enge
2013-10-02 19:26 ` Cyril Roelandt
2013-10-02 20:53   ` Andreas Enge
2013-10-02 21:48     ` 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).