diff options
| author | Andreas Enge <andreas@enge.fr> | 2025-04-09 11:18:22 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-05-10 19:38:34 +0200 |
| commit | 3e270cac6bb85a39bd3a1a2c68946ac0edb52ae6 (patch) | |
| tree | 7f87abe06e5d41c1464557917a9cfdf52af4f5a0 /gnu | |
| parent | 03140b0122ea384eb3dbd9cb5f1433d5207ee4d6 (diff) | |
gnu: Remove libvideogfx.
This is a library without dependent packages, which has seen its latest
release in 2014. It has a very outdated ffmpeg version as input.
* gnu/packages/video.scm (libvideogfx): Delete variable.
Change-Id: I3303310558e6959047d17f93cf2a9c3272b663ed
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/video.scm | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 4cf65b18d90..a97b89bd7c0 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -657,47 +657,6 @@ and mmsh protocols.") (home-page "https://sourceforge.net/projects/libmms/") (license license:lgpl2.1+))) -(define-public libvideogfx - (package - (name "libvideogfx") - (version "1.0.9") - (source - (origin - (method git-fetch) - (uri - (git-reference - (url "https://github.com/farindk/libvideogfx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "154b0j8cfg879pg08xcbwvbz8z9nrfnyj31i48vxir1psas70ynq")))) - (build-system gnu-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-build-errors - (lambda _ - (substitute* "libvideogfx/graphics/fileio/ffmpeg.cc" - (("av_close_input_file\\(") - "avformat_close_input(&")) - (substitute* "libvideogfx/graphics/fileio/png.cc" - (("is != NULL") "is.good()")) - #t))))) - (native-inputs - (list autoconf automake libtool pkg-config)) - (inputs - `(("ffmpeg" ,ffmpeg-2.8) - ("jpeg" ,libjpeg-turbo) - ("png" ,libpng) - ("x11" ,libx11) - ("xext" ,libxext))) - (synopsis "Video processing library") - (description "LibVideoGfx is a C++ library for low-level video processing. -It aims at speeding up the development process for image and video processing -applications by providing high-level classes for commonly required tasks.") - (home-page "https://dirk-farin.net/software/libvideogfx/index.html") - (license license:lgpl2.1+))) - (define-public libde265 (package (name "libde265") |
