From 1bbadcc904f28c4761d49118b33bf287d547dd19 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Fri, 24 Jul 2020 11:38:57 -0400 Subject: [PATCH 33/36] gnu: gupnp-dlna: Update package definition. * gnu/packages/gnome.scm (gupnp-dlna): Update package definition. [build-system]: Change from gnu to glib-or-gtk. [outputs]: New output "doc". [arguments]<#:configure-flags>[--disable-static]: New flag. [--enable-gtk-doc]: New flag. [--with-html-dir=]: New flag. <#:phases>['patch-docbook-xml]: New phase. [native-inputs]: Add docbook-xml. Remove libxml2. [inputs]: Add libxml2. Remove gstreamer. [propagated-inputs]: Add glib, glib-networking and gstreamer. Remove gst-plugins-good. [description]: Modify. --- gnu/packages/gnome.scm | 88 +++++++++++++++++++++++++++--------------- 1 file changed, 57 insertions(+), 31 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index c0022a695e..1f419c5f7d 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1168,37 +1168,63 @@ UPnP's internals.") (define-public gupnp-dlna (package - (name "gupnp-dlna") - (version "0.10.5") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" - (version-major+minor version) "/" - name "-" version ".tar.xz")) - (sha256 - (base32 - "0spzd2saax7w776p5laixdam6d7smyynr9qszhbmq7f14y13cghj")))) - (build-system gnu-build-system) - (native-inputs - `(("gettext" ,gettext-minimal) - ("glib:bin" ,glib "bin") - ("gobject-introspection" ,gobject-introspection) - ("gtk-doc" ,gtk-doc) - ("libxml" ,libxml2) - ("pkg-config" ,pkg-config) - ("vala" ,vala))) - (inputs - `(("gstreamer" ,gstreamer) - ("gupnp" ,gupnp))) - (propagated-inputs - `(("gst-plugins-base" ,gst-plugins-base) - ("gst-plugins-good" ,gst-plugins-good))) - (synopsis "GUPnP DLNA for GNOME") - (description "This package provides a small utility library to -support DLNA-related tasks such as media profile guessing, transcoding to a -given profile, etc. DLNA is a subset of UPnP A/V.") - (home-page "https://gitlab.gnome.org/GNOME/gupnp-dlna") - (license license:lgpl2.0+))) + (name "gupnp-dlna") + (version "0.10.5") + (source + (origin + (method url-fetch) + (uri + (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 "0spzd2saax7w776p5laixdam6d7smyynr9qszhbmq7f14y13cghj")))) + (build-system glib-or-gtk-build-system) + (outputs '("out" "doc")) + (arguments + `(#:configure-flags + (list + "--disable-static" + "--enable-gtk-doc" + (string-append "--with-html-dir=" + (assoc-ref %outputs "doc") + "/share/gtk-doc/html")) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-docbook-xml + (lambda* (#:key inputs #:allow-other-keys) + (with-directory-excursion "doc" + (substitute* + '("gupnp-dlna-gst/gupnp-dlna-gst-docs.sgml" + "gupnp-dlna-metadata/gupnp-dlna-metadata-docs.sgml" + "gupnp-dlna/gupnp-dlna-docs.sgml") + (("http://www.oasis-open.org/docbook/xml/4.1.2/") + (string-append (assoc-ref inputs "docbook-xml") + "/xml/dtd/docbook/")))) + #t))))) + (native-inputs + `(("docbook-xml" ,docbook-xml-4.1.2) + ("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin") + ("gobject-introspection" ,gobject-introspection) + ("gtk-doc" ,gtk-doc) + ("libxml" ,libxml2) + ("pkg-config" ,pkg-config) + ("vala" ,vala))) + (inputs + `(("gupnp" ,gupnp) + ("libxml2" ,libxml2))) + (propagated-inputs + `(("glib" ,glib) + ("glib-networking" ,glib-networking) + ("gstreamer" ,gstreamer) + ("gst-plugins-base" ,gst-plugins-base))) + (synopsis "GUPnP DLNA for GNOME") + (description "GUPnP-DLNA is a small utility library that aims to ease the +DLNA-related tasks such as media profile guessing, transcoding to a given +profile, etc.") + (home-page "https://gitlab.gnome.org/GNOME/gupnp-dlna") + (license license:lgpl2.0+))) (define-public gupnp-av (package -- 2.27.0