From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH] gnu: Move gtkglext from gnome to gtk. Date: Tue, 16 Aug 2016 20:01:04 +0200 Message-ID: <20160816180104.20832-1-dannym@scratchpost.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.9.1" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36855) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZifw-0000A6-00 for guix-devel@gnu.org; Tue, 16 Aug 2016 14:01:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bZifr-0006nm-2M for guix-devel@gnu.org; Tue, 16 Aug 2016 14:01:19 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:43329) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZifq-0006nf-NC for guix-devel@gnu.org; Tue, 16 Aug 2016 14:01:15 -0400 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" To: guix-devel@gnu.org This is a multi-part message in MIME format. --------------2.9.1 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable gnu: Move gtkglext from gnome to gtk. * gnu/packages/gnome.scm (gtkglext): Moved from here... * gnu/packages/gtk.scm (gtkglext): ... to here --- gnu/packages/gnome.scm | 28 ---------------------------- gnu/packages/gtk.scm | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 28 deletions(-) --------------2.9.1 Content-Type: text/x-patch; name="0001-gnu-Move-gtkglext-from-gnome-to-gtk.patch" Content-Disposition: attachment; filename="0001-gnu-Move-gtkglext-from-gnome-to-gtk.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4a0be01..ee10b5f 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -784,34 +784,6 @@ demand (lazy) programming language support for C, Py= thon and JS; simplicity of the API.") (license license:lgpl2.0+))) =20 -(define-public gtkglext - (package - (name "gtkglext") - (version "1.2.0") - (source (origin - (method url-fetch) - (uri (string-append "mirror://sourceforge/gtkglext/gtkglex= t/" - version "/gtkglext-" version ".tar.gz"= )) - (sha256 - (base32 "1ya4d2j2aacr9ii5zj4ac95fjpdvlm2rg79mgnk7yvl1dcy3= y1z5")) - (patches (search-patches - "gtkglext-disable-disable-deprecated.patch")))) - (build-system gnu-build-system) - (inputs `(("gtk+" ,gtk+-2) - ("mesa" ,mesa) - ("glu" ,glu) - ("libx11" ,libx11) - ("libxt" ,libxt))) - (native-inputs `(("pkg-config" ,pkg-config) - ("glib" ,glib "bin"))) - (propagated-inputs `(("pangox-compat" ,pangox-compat))) - (home-page "https://projects.gnome.org/gtkglext") - (synopsis "OpenGL extension to GTK+") - (description "GtkGLExt is an OpenGL extension to GTK+. It provides -additional GDK objects which support OpenGL rendering in GTK+ and GtkWid= get -API add-ons to make GTK+ widgets OpenGL-capable.") - (license license:lgpl2.1+))) - (define-public glade3 (package (name "glade") diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 8feac11..9b01f2e 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1331,3 +1331,31 @@ glass artworks done by Venicians glass blowers.") "GtkSpell provides word-processor-style highlighting and replacemen= t of misspelled words in a GtkTextView widget.") (license license:gpl2+))) + +(define-public gtkglext + (package + (name "gtkglext") + (version "1.2.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/gtkglext/gtkglex= t/" + version "/gtkglext-" version ".tar.gz"= )) + (sha256 + (base32 "1ya4d2j2aacr9ii5zj4ac95fjpdvlm2rg79mgnk7yvl1dcy3= y1z5")) + (patches (search-patches + "gtkglext-disable-disable-deprecated.patch")))) + (build-system gnu-build-system) + (inputs `(("gtk+" ,gtk+-2) + ("mesa" ,mesa) + ("glu" ,glu) + ("libx11" ,libx11) + ("libxt" ,libxt))) + (native-inputs `(("pkg-config" ,pkg-config) + ("glib" ,glib "bin"))) + (propagated-inputs `(("pangox-compat" ,pangox-compat))) + (home-page "https://projects.gnome.org/gtkglext") + (synopsis "OpenGL extension to GTK+") + (description "GtkGLExt is an OpenGL extension to GTK+. It provides +additional GDK objects which support OpenGL rendering in GTK+ and GtkWid= get +API add-ons to make GTK+ widgets OpenGL-capable.") + (license license:lgpl2.1+))) --------------2.9.1--