From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: Brasero, or gnome without gnome Date: Wed, 2 Oct 2013 23:18:08 +0200 Message-ID: <20131002211808.GA26447@debian> References: <20131002124146.GA15506@debian> <20131002180223.GA873@debian> <874n8zsc3c.fsf@gnu.org> <20131002205600.GA1680@debian> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="huq684BweRXVnRxX" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51238) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRToJ-0000Ju-Vl for guix-devel@gnu.org; Wed, 02 Oct 2013 17:18:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VRToE-0004Ya-3D for guix-devel@gnu.org; Wed, 02 Oct 2013 17:18:19 -0400 Content-Disposition: inline In-Reply-To: <20131002205600.GA1680@debian> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ludovic =?iso-8859-15?Q?Court=E8s?= Cc: guix-devel@gnu.org --huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The attached patch yields a "working" brasero in the sense that it starts, shows all icons, and allows, for instance, to drag and drop files from the kde file browser into an image to be created. Apart from that, many helper programs (mkisofs, cdrecord etc.) are missing, so the program is of little practical use... But we can still use it to advance our understanding of gnome packaging! And not to start a flame war, but I see it as a real incentive to consider kde packaging... As a first step, for qt, I think we might need to get the cmake build system working. Cyril, would you be able to make it work on x86_64, potentially by disabling the failing test in cmake? Andreas --huq684BweRXVnRxX Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="brasero.diff" diff --git a/gnu/packages/cdrom.scm b/gnu/packages/cdrom.scm index e207ae6..c378d2f 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,39 @@ 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) + (propagated-inputs + `(("hicolor-icon-theme" ,hicolor-icon-theme))) + (inputs + `(("glib" ,glib) + ("gnome-doc-utils" ,gnome-doc-utils) + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) + ("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+))) --huq684BweRXVnRxX--