[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
123/295: gnu: cogl: Update package definition.
From: |
guix-commits |
Subject: |
123/295: gnu: cogl: Update package definition. |
Date: |
Mon, 27 Jul 2020 06:25:47 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 0e046e0c8cd89261c4b24a1da039f8ce5886d13a
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri May 29 17:05:50 2020 -0400
gnu: cogl: Update package definition.
* gnu/packages/gnome.scm (cogl): Update package definition.
[build-system]: Change from gnu-build-system to glib-or-gtk-build-system.
[outputs]: New output 'doc'.
[arguments]<#:configure-flags>[--enable-gtk-doc]: New flag.
[--with-html-dir]: New flag.
<#:phases>['patch-docbook-xml]: New phase.
['fix-build-with-mesa-20]: Delete phase.
[native-inputs]: Add docbook-xml, gettext, gtk-doc and python-wrapper.
[inputs]: Add libdrm and sdl2. Remove mesa, cairo, pango, gstreamer,
gst-plugins-base and wayland.
[propagated-inputs]: Add cairo, gstreamer, gst-plugins-base, mesa
and wayland.
[synopsis]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 88 +++++++++++++++++++++++++++++---------------------
1 file changed, 52 insertions(+), 36 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 1262abc..8f9c127 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -163,6 +163,7 @@
#:use-module (gnu packages rust)
#:use-module (gnu packages samba)
#:use-module (gnu packages scanner)
+ #:use-module (gnu packages sdl)
#:use-module (gnu packages selinux)
#:use-module (gnu packages slang)
#:use-module (gnu packages speech)
@@ -4819,41 +4820,52 @@ throughout GNOME for API documentation).")
(source
(origin
(method url-fetch)
- (uri (string-append "mirror://gnome/sources/cogl/"
- (version-major+minor version) "/"
- "cogl-" version ".tar.xz"))
+ (uri
+ (string-append "mirror://gnome/sources/cogl/"
+ (version-major+minor version) "/"
+ "cogl-" version ".tar.xz"))
(sha256
(base32 "0nfph4ai60ncdx7hy6hl1i1cmp761jgnyjfhagzi0iqq36qb41d8"))))
;; NOTE: mutter exports a bundled fork of cogl, so when making changes to
;; cogl, corresponding changes may be appropriate in mutter as well.
- (build-system gnu-build-system)
+ (build-system glib-or-gtk-build-system)
+ (outputs '("out" "doc"))
(native-inputs
- `(("glib:bin" ,glib "bin") ; for glib-mkenums
+ `(("docbook-xml" ,docbook-xml-4.1.2)
+ ("gettext" ,gettext-minimal)
+ ("glib:bin" ,glib "bin")
("gobject-introspection" ,gobject-introspection)
- ("xorg-server" ,xorg-server-for-tests)
- ("pkg-config" ,pkg-config)))
+ ("gtk-doc" ,gtk-doc)
+ ("pkg-config" ,pkg-config)
+ ("python-wrapper" ,python-wrapper)
+ ("xorg-server" ,xorg-server-for-tests)))
+ (inputs
+ `(("libdrm" ,libdrm)))
(propagated-inputs
- `(("glib" ,glib)
- ("gdk-pixbuf" ,gdk-pixbuf)
+ `(("cairo" ,cairo)
+ ("glib" ,glib)
+ ("gdk-pixbuf+svg" ,gdk-pixbuf+svg)
+ ("gstreamer" ,gstreamer)
+ ("gst-plugins-base" ,gst-plugins-base)
("libx11" ,libx11)
("libxext" ,libxext)
("libxfixes" ,libxfixes)
("libxdamage" ,libxdamage)
("libxcomposite" ,libxcomposite)
- ("libxrandr" ,libxrandr)))
- (inputs
- `(("mesa" ,mesa)
- ("cairo" ,cairo)
+ ("libxrandr" ,libxrandr)
+ ("mesa" ,mesa)
("pango" ,pango)
- ("gstreamer" ,gstreamer)
- ("gst-plugins-base" ,gst-plugins-base)
("wayland" ,wayland)))
(arguments
`(#:disallowed-references (,xorg-server-for-tests)
#:configure-flags (list "--enable-cogl-gst"
"--enable-wayland-egl-platform"
"--enable-wayland-egl-server"
+ "--enable-gtk-doc"
+ (string-append "--with-html-dir="
+ (assoc-ref %outputs "doc")
+ "/share/gtk-doc/html")
;; Arrange to pass an absolute file name to
;; dlopen for libGL.so.
(string-append "--with-gl-libname="
@@ -4861,17 +4873,20 @@ throughout GNOME for API documentation).")
"/lib/libGL.so"))
#:phases
(modify-phases %standard-phases
- (add-after 'unpack 'fix-build-with-mesa-20
- (lambda _
- ;; Work around a problem with Mesa 20 where some macros used by
- ;; Cogl went missing from eglext.h. This can likely be removed
- ;; for newer versions of Cogl or Mesa.
- ;; https://gitlab.gnome.org/GNOME/cogl/-/merge_requests/19
- (substitute* '("configure"
- "cogl/winsys/cogl-winsys-egl-kms.c")
- (("#include <EGL/eglext.h>" all)
- (string-append all "\n#include <EGL/eglmesaext.h>\n")))
- #t))
+ (add-after 'unpack 'patch-docbook-xml
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let* ((xmldoc (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook")))
+ (with-directory-excursion "doc/reference"
+ (substitute*
+ '("cogl/cogl-docs.xml.in"
+ "cogl/blend-strings.xml"
+ "cogl-gst/cogl-gst-docs.xml.in"
+
"cogl-2.0-experimental/cogl-2.0-experimental-docs.xml.in"
+ "cogl-2.0-experimental/blend-strings.xml")
+ (("http://.*/docbookx\\.dtd")
+ (string-append xmldoc "/docbookx.dtd"))))
+ #t)))
(add-before 'check 'start-xorg-server
(lambda* (#:key tests? inputs #:allow-other-keys)
(if tests?
@@ -4883,17 +4898,18 @@ throughout GNOME for API documentation).")
#t)
(format #t "test suite not run~%"))
#t)))))
+ (synopsis "Hardware accelerated 3D graphics API")
+ (description "Cogl is a small library for using 3D graphics hardware for
+rendering. The API departs from the flat state machine style of OpenGL and is
+designed to make it easy to write orthogonal components that can render without
+stepping on each others toes.")
(home-page "https://www.cogl3d.org")
- (synopsis "Object oriented GL/GLES Abstraction/Utility Layer")
- (description
- "Cogl is a small library for using 3D graphics hardware to draw pretty
-pictures. The API departs from the flat state machine style of OpenGL and is
-designed to make it easy to write orthogonal components that can render
-without stepping on each others toes.")
- (license (list license:expat ; most of the code
- license:bsd-3 ; cogl/cogl-point-in-poly.c
- license:sgifreeb2.0 ; cogl-path/tesselator/
- license:asl2.0)))) ; examples/android/
+ (license
+ (list
+ license:expat ; most of the code
+ license:bsd-3 ; cogl/cogl-point-in-poly.c
+ license:sgifreeb2.0 ; cogl-path/tesselator/
+ license:asl2.0)))) ; examples/android/
(define-public clutter
(package
- 107/295: gnu: Add libglib-testing., (continued)
- 107/295: gnu: Add libglib-testing., guix-commits, 2020/07/27
- 108/295: gnu: Add malcontent., guix-commits, 2020/07/27
- 111/295: gnu: Add gnome-music., guix-commits, 2020/07/27
- 112/295: gnu: Add gnome-photos., guix-commits, 2020/07/27
- 114/295: gnu: appstream-glib: Update package definition., guix-commits, 2020/07/27
- 116/295: gnu: at-spi2-atk: Update to 2.34.2., guix-commits, 2020/07/27
- 117/295: gnu: atk: Update to 2.36.0., guix-commits, 2020/07/27
- 118/295: gnu: google-brotli: Update package definition., guix-commits, 2020/07/27
- 121/295: gnu: clutter-gtk: Update package definition., guix-commits, 2020/07/27
- 122/295: gnu: clutter-gst: Update package definition., guix-commits, 2020/07/27
- 123/295: gnu: cogl: Update package definition.,
guix-commits <=
- 124/295: gnu: dconf: Update to 0.36.0., guix-commits, 2020/07/27
- 125/295: gnu: catch-framework2: Update to 2.3.0., guix-commits, 2020/07/27
- 126/295: gnu: Add ronn., guix-commits, 2020/07/27
- 130/295: gnu: Add presage., guix-commits, 2020/07/27
- 131/295: gnu: fcitx: Update package definition., guix-commits, 2020/07/27
- 134/295: gnu: gdk-pixbuf: Update package definition., guix-commits, 2020/07/27
- 135/295: gnu: gdk-pixbuf+svg: Update package definition., guix-commits, 2020/07/27
- 139/295: gnu: glib-networking: Update to 2.62.4., guix-commits, 2020/07/27
- 142/295: gnu: gsettings-desktop-schemas: Update package definition., guix-commits, 2020/07/27
- 144/295: gnu: faad2: Update to 2.8.8., guix-commits, 2020/07/27