unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#38543] [PATCH 0/3] Add KDE multimedia addons
@ 2019-12-09 10:09 Hartmut Goebel
  2019-12-09 10:11 ` [bug#38543] [PATCH 1/3] gnu: Add libkcompactdisc Hartmut Goebel
       [not found] ` <handler.38543.B.15758861608311.ack@debbugs.gnu.org>
  0 siblings, 2 replies; 5+ messages in thread
From: Hartmut Goebel @ 2019-12-09 10:09 UTC (permalink / raw)
  To: 38543

This adds the KDE multimedia add-ons which have not been finished
for <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38532>

Hartmut Goebel (3):
  gnu: Add libkcompactdisc.
  gnu: Add audiocd-kio.
  gnu: Add ffmpegthumbs.

 gnu/packages/kde-multimedia.scm | 100 ++++++++++++++++++++++++++++++++
 1 file changed, 100 insertions(+)

-- 
2.21.0

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

* [bug#38543] [PATCH 1/3] gnu: Add libkcompactdisc.
  2019-12-09 10:09 [bug#38543] [PATCH 0/3] Add KDE multimedia addons Hartmut Goebel
@ 2019-12-09 10:11 ` Hartmut Goebel
  2019-12-09 10:11   ` [bug#38543] [PATCH 2/3] gnu: Add audiocd-kio Hartmut Goebel
  2019-12-09 10:11   ` [bug#38543] [PATCH 3/3] gnu: Add ffmpegthumbs Hartmut Goebel
       [not found] ` <handler.38543.B.15758861608311.ack@debbugs.gnu.org>
  1 sibling, 2 replies; 5+ messages in thread
From: Hartmut Goebel @ 2019-12-09 10:11 UTC (permalink / raw)
  To: 38543

* gnu/packages/kde-multimedia.scm (libkcompactdisc): New variable.
---
 gnu/packages/kde-multimedia.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm
index 7261ef04ad..7478ef4b00 100644
--- a/gnu/packages/kde-multimedia.scm
+++ b/gnu/packages/kde-multimedia.scm
@@ -600,3 +600,30 @@ Its features include:
     (synopsis "CDDB library for KDE Platform (runtime)")
     (description "A library for retrieving and sending cddb information.")
     (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public libkcompactdisc
+  (package
+    (name "libkcompactdisc")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/libkcompactdisc-" version ".tar.xz"))
+       (sha256
+        (base32 "09gl2dww5i50rpj92ryw4vq5ryy96cv9kflg6yqgdbznmmdqhawi"))))
+    (properties `((tags . ("Desktop" "KDE" "Multimedia"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)))
+    (inputs
+     `(("alsa-lib" ,alsa-lib)
+       ("kcoreaddons" ,kcoreaddons)
+       ("ki18n" ,ki18n)
+       ("phonon" ,phonon)
+       ("qtbase" ,qtbase)
+       ("solid" ,solid)))
+    (home-page "https://cgit.kde.org/libkcompactdisc.git/")
+    (synopsis "KDE library for playing & ripping CDs")
+    (description "KDE library for playing & ripping CDs.")
+    (license (list license:gpl2+ license:lgpl2.0+))))
-- 
2.21.0

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

* [bug#38543] [PATCH 2/3] gnu: Add audiocd-kio.
  2019-12-09 10:11 ` [bug#38543] [PATCH 1/3] gnu: Add libkcompactdisc Hartmut Goebel
@ 2019-12-09 10:11   ` Hartmut Goebel
  2019-12-09 10:11   ` [bug#38543] [PATCH 3/3] gnu: Add ffmpegthumbs Hartmut Goebel
  1 sibling, 0 replies; 5+ messages in thread
From: Hartmut Goebel @ 2019-12-09 10:11 UTC (permalink / raw)
  To: 38543

* gnu/packages/kde-multimedia.scm (audiocd-kio): New variable.
---
 gnu/packages/kde-multimedia.scm | 41 +++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm
index 7478ef4b00..eaae095e93 100644
--- a/gnu/packages/kde-multimedia.scm
+++ b/gnu/packages/kde-multimedia.scm
@@ -26,6 +26,7 @@
   #:use-module (gnu packages audio)
   #:use-module (gnu packages base)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages cdrom)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages gnome)
@@ -42,6 +43,46 @@
   #:use-module (gnu packages xiph)
   #:use-module (gnu packages xorg))
 
+(define-public audiocd-kio
+  (package
+    (name "audiocd-kio")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/audiocd-kio-" version ".tar.xz"))
+       (sha256
+        (base32 "1924w7li16qkmqsvbgfihjd7id6mb00m9k3acfwkkf32yzg3dn4q"))))
+    (properties `((tags . ("Desktop" "KDE" "Multimedia"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("cdparanoia" ,cdparanoia)
+       ("flac" ,flac)
+       ("kcmutils" ,kcmutils)
+       ("kconfig" ,kconfig)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("libkcddb" ,libkcddb)
+       ("libkcompactdisc", libkcompactdisc)
+       ("libvorbis" ,libvorbis)
+       ("phonon" ,phonon)
+       ("qtbase" ,qtbase)))
+    (home-page "https://kde.org/applications/multimedia/org.kde.kio_audiocd")
+    (synopsis "Transparent audio CD integration for applications using the KDE
+Platform")
+    (description "KIO AudioCD is a KIO slave that enables KIO-aware
+applications (such as Dolphin or k3b) to access audio and CD text data on the
+audio compact disks.  It allows transparent drag and drop conversion of audio
+data into the popular formats and has a configuration System Settings module
+available in the \"Multimedia\" section.
+
+This package is part of the KDE multimedia module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
+
 (define-public dragon
   (package
     (name "dragon")
-- 
2.21.0

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

* [bug#38543] [PATCH 3/3] gnu: Add ffmpegthumbs.
  2019-12-09 10:11 ` [bug#38543] [PATCH 1/3] gnu: Add libkcompactdisc Hartmut Goebel
  2019-12-09 10:11   ` [bug#38543] [PATCH 2/3] gnu: Add audiocd-kio Hartmut Goebel
@ 2019-12-09 10:11   ` Hartmut Goebel
  1 sibling, 0 replies; 5+ messages in thread
From: Hartmut Goebel @ 2019-12-09 10:11 UTC (permalink / raw)
  To: 38543

* gnu/packages/kde-multimedia.scm (ffmpegthumbs): New variable.
---
 gnu/packages/kde-multimedia.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm
index eaae095e93..4580a31dbd 100644
--- a/gnu/packages/kde-multimedia.scm
+++ b/gnu/packages/kde-multimedia.scm
@@ -199,6 +199,38 @@ The Baloo one is much faster because Baloo is providing all needed data from
 its own database.  You can build and play your own playlist.")
     (license license:lgpl3+)))
 
+(define-public ffmpegthumbs
+  (package
+    (name "ffmpegthumbs")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/ffmpegthumbs-" version ".tar.xz"))
+       (sha256
+        (base32 "1w6070ng40nf99wpl6p5s8nx0icfx2c26vvnz4f9fx7l7pldh6n9"))))
+    (properties `((tags . ("Desktop" "KDE" "Multimedia"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("ffmpeg" ,ffmpeg)
+       ("kconfig" ,kconfig)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("qtbase" ,qtbase)))
+    (home-page "https://kde.org/applications/multimedia/org.kde.ffmpegthumbs")
+    (synopsis "Video thumbnail generator for KDE using ffmpeg")
+    (description "
+FFMpegThumbs is a video thumbnail generator for KDE file managers
+like Dolphin and Konqueror.  It enables them to show preview images
+of video files using FFMpeg.
+
+This package is part of the KDE multimedia module.")
+    (license license:gpl2+)))
+
 (define-public juk
   (package
     (name "juk")
-- 
2.21.0

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

* bug#38543: Acknowledgement ([PATCH 0/3] Add KDE multimedia addons)
       [not found] ` <handler.38543.B.15758861608311.ack@debbugs.gnu.org>
@ 2019-12-26 15:46   ` Hartmut Goebel
  0 siblings, 0 replies; 5+ messages in thread
From: Hartmut Goebel @ 2019-12-26 15:46 UTC (permalink / raw)
  To: 38543-close

Pushed as b291c9570d5a27b11472df3df61cef9ed012241b

after removing the "tags" properties, using the fixed qt-build-system
and adding license comment.


-- 
Regards
Hartmut Goebel

| Hartmut Goebel          | h.goebel@crazy-compilers.com               |
| www.crazy-compilers.com | compilers which you thought are impossible |

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

end of thread, other threads:[~2019-12-26 15:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-09 10:09 [bug#38543] [PATCH 0/3] Add KDE multimedia addons Hartmut Goebel
2019-12-09 10:11 ` [bug#38543] [PATCH 1/3] gnu: Add libkcompactdisc Hartmut Goebel
2019-12-09 10:11   ` [bug#38543] [PATCH 2/3] gnu: Add audiocd-kio Hartmut Goebel
2019-12-09 10:11   ` [bug#38543] [PATCH 3/3] gnu: Add ffmpegthumbs Hartmut Goebel
     [not found] ` <handler.38543.B.15758861608311.ack@debbugs.gnu.org>
2019-12-26 15:46   ` bug#38543: Acknowledgement ([PATCH 0/3] Add KDE multimedia addons) Hartmut Goebel

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).