GNU bug report logs -
#75441
[PATCH 1/3] gnu: Add boost-1.74.0.
Previous Next
Reported by: ROCKTAKEY <rocktakey <at> gmail.com>
Date: Wed, 8 Jan 2025 17:41:01 UTC
Severity: normal
Tags: patch
Done: ROCKTAKEY <rocktakey <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Change-Id: I7237db9c86f0e26cc6ceb836cbedc8bb578b072f
---
gnu/packages/image.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 7337a27b88..8a94806f24 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -39,6 +39,7 @@
;;; Copyright © 2023-2024 Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
;;; Copyright © 2024 chris <chris <at> bumblehead.com>
+;;; Copyright © 2025 ROCKTAKEY <rocktakey <at> gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1076,6 +1077,33 @@ (define-public giflib
(home-page "http://giflib.sourceforge.net/")
(license license:x11)))
+(define-public giflib-for-siv3d
+ (package
+ (inherit giflib)
+ (version "5.1.4")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/giflib/giflib-"
+ version ".tar.bz2"))
+ (sha256
+ (base32
+ "1md83dip8rf29y40cm5r7nn19705f54iraz6545zhwa6y8zyq9yz"))))
+ (arguments
+ (append
+ ;; FIXME: Somehow test failed
+ '(#:tests? #f)
+ (substitute-keyword-arguments (package-arguments giflib)
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (add-before 'build 'configure
+ (lambda args
+ (apply (assoc-ref %standard-phases 'configure) args)))
+ (replace 'disable-html-doc-gen
+ (lambda _
+ (substitute* "doc/Makefile.in"
+ (("^all: allhtml manpages") ""))
+ #t)))))))))
+
(define-public libuemf
(package
(name "libuemf")
--
2.47.1
This bug report was last modified 129 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.