2013-06-16 23:57:34 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2016-05-17 18:07:08 +02:00
|
|
|
;;; Copyright © 2013, 2016 Ludovic Courtès <ludo@gnu.org>
|
2016-07-18 18:32:19 +02:00
|
|
|
;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
|
2015-04-02 20:31:47 +02:00
|
|
|
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
2017-01-20 15:03:35 +01:00
|
|
|
;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
|
2017-03-01 21:17:23 +01:00
|
|
|
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
2017-08-30 23:41:08 +02:00
|
|
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
2019-03-14 23:41:32 +01:00
|
|
|
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
2013-06-16 23:57:34 +02:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages gd)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix build-system gnu)
|
2015-04-02 20:31:47 +02:00
|
|
|
#:use-module (guix build-system perl)
|
2013-06-16 23:57:34 +02:00
|
|
|
#:use-module (guix download)
|
2013-11-02 23:04:45 +01:00
|
|
|
#:use-module (gnu packages)
|
2015-04-02 20:31:47 +02:00
|
|
|
#:use-module (gnu packages perl)
|
gnu: Consolidate libjpeg, libpng, and libtiff into one module.
* gnu/packages/image.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add image.scm and remove libjpeg.scm,
libpng.scm, and libtiff.scm.
* gnu/packages/libjpeg.scm, gnu/packages/libpng.scm, gnu/packages/libtiff.scm:
Delete files.
* gnu/packages/emacs.scm gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnustep.scm, gnu/packages/gnuzilla.scm,
gnu/packages/graphviz.scm, gnu/packages/gtk.scm,
gnu/packages/imagemagick.scm, gnu/packages/inkscape.scm,
gnu/packages/netpbm.scm, gnu/packages/pdf.scm, gnu/packages/plotutils.scm,
gnu/packages/qemu.scm, gnu/packages/qt.scm, gnu/packages/scheme.scm,
gnu/packages/sdl.scm, gnu/packages/slim.scm, gnu/packages/tcl.scm,
gnu/packages/texlive.scm, gnu/packages/video.scm, gnu/packages/xiph.scm,
gnu/packages/xorg.scm: Use (gnu packages image) module.
2014-06-25 14:39:02 +02:00
|
|
|
#:use-module (gnu packages image)
|
2015-04-03 17:59:45 +02:00
|
|
|
#:use-module (gnu packages imagemagick)
|
2013-06-16 23:57:34 +02:00
|
|
|
#:use-module (gnu packages fontutils)
|
|
|
|
#:use-module (gnu packages compression)
|
2015-01-16 00:46:23 +01:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2017-05-02 16:57:52 +02:00
|
|
|
#:use-module ((guix licenses) #:select (non-copyleft perl-license)))
|
2013-06-16 23:57:34 +02:00
|
|
|
|
|
|
|
(define-public gd
|
|
|
|
(package
|
|
|
|
(name "gd")
|
2019-02-15 18:22:10 +01:00
|
|
|
(replacement gd/fixed)
|
2016-05-27 17:42:22 +02:00
|
|
|
;; Note: With libgd.org now pointing to github.com, genuine old
|
2015-01-16 00:46:23 +01:00
|
|
|
;; tarballs are no longer available. Notably, versions 2.0.x are
|
2013-06-16 23:57:34 +02:00
|
|
|
;; missing.
|
2017-09-20 19:06:38 +02:00
|
|
|
(version "2.2.5")
|
2013-06-16 23:57:34 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2015-01-16 00:46:23 +01:00
|
|
|
(uri (string-append
|
2016-05-27 17:42:22 +02:00
|
|
|
"https://github.com/libgd/libgd/releases/download/gd-"
|
|
|
|
version "/libgd-" version ".tar.xz"))
|
2013-06-16 23:57:34 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
2017-09-20 19:06:38 +02:00
|
|
|
"0lfy5f241sbv8s3splm2zqiaxv7lxrcshh875xryryk7yk5jqc4c"))
|
2018-09-10 01:30:06 +02:00
|
|
|
|
|
|
|
(patches (search-patches "gd-CVE-2018-5711.patch"
|
|
|
|
"gd-CVE-2018-1000222.patch"
|
|
|
|
"gd-fix-tests-on-i686.patch"
|
2017-09-20 19:06:38 +02:00
|
|
|
"gd-freetype-test-failure.patch"))))
|
2013-06-16 23:57:34 +02:00
|
|
|
(build-system gnu-build-system)
|
2017-01-25 19:03:04 +01:00
|
|
|
(arguments
|
2017-03-01 21:17:23 +01:00
|
|
|
;; As recommended by github.com/libgd/libgd/issues/278 to fix rounding
|
|
|
|
;; issues on aarch64 and other architectures.
|
|
|
|
`(#:make-flags '("CFLAGS=-ffp-contract=off")
|
|
|
|
#:phases
|
2017-01-25 19:03:04 +01:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
;; This test is known to fail on i686-linux:
|
|
|
|
;; https://github.com/libgd/libgd/issues/359
|
|
|
|
;; TODO Replace this substitution with an upstream bug fix.
|
|
|
|
(add-after 'unpack 'disable-failing-test
|
|
|
|
(lambda _
|
|
|
|
(substitute* "tests/gdimagegrayscale/basic.c"
|
|
|
|
(("return gdNumFailures\\(\\)")
|
2017-03-01 21:17:23 +01:00
|
|
|
"return 0"))
|
|
|
|
#t)))))
|
2015-01-16 00:46:23 +01:00
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
2013-06-16 23:57:34 +02:00
|
|
|
(inputs
|
|
|
|
`(("freetype" ,freetype)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("fontconfig" ,fontconfig)
|
|
|
|
("libjpeg" ,libjpeg)))
|
|
|
|
(home-page "http://www.libgd.org/")
|
|
|
|
(synopsis "Library for the dynamic creation of images by programmers")
|
|
|
|
(description
|
|
|
|
"GD is a library for the dynamic creation of images by programmers. GD
|
|
|
|
is written in C, and \"wrappers\" are available for Perl, PHP and other
|
|
|
|
languages. GD creates PNG, JPEG, GIF, WebP, XPM, BMP images, among other
|
|
|
|
formats. GD is commonly used to generate charts, graphics, thumbnails, and
|
|
|
|
most anything else, on the fly. While not restricted to use on the web, the
|
|
|
|
most common applications of GD involve website development.")
|
gnu: Update packages to use 'non-copyleft' instead of 'bsd-style'.
* gnu/packages/avr.scm, gnu/packages/compression.scm,
gnu/packages/curl.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/databases.scm, gnu/packages/firmware.scm,
gnu/packages/flex.scm, gnu/packages/fontutils.scm,
gnu/packages/gd.scm, gnu/packages/ghostscript.scm,
gnu/packages/gnunet.scm, gnu/packages/graphics.scm,
gnu/packages/hugs.scm, gnu/packages/image.scm,
gnu/packages/linux.scm, gnu/packages/mail.scm,
gnu/packages/maths.scm, gnu/packages/mit-krb5.scm,
gnu/packages/python.scm, gnu/packages/rdf.scm,
gnu/packages/ssh.scm, gnu/packages/tcl.scm,
gnu/packages/xdisorg.scm, gnu/packages/xiph.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm: Use 'non-copyleft'
instead of 'bsd-style'.
2015-03-14 19:26:34 +01:00
|
|
|
(license (non-copyleft "file://COPYING"
|
2016-05-17 18:07:08 +02:00
|
|
|
"See COPYING file in the distribution."))
|
|
|
|
(properties '((cpe-name . "libgd")))))
|
2015-04-02 20:31:47 +02:00
|
|
|
|
2019-02-15 18:22:10 +01:00
|
|
|
(define-public gd/fixed
|
|
|
|
(hidden-package
|
|
|
|
(package
|
|
|
|
(inherit gd)
|
|
|
|
(source (origin
|
|
|
|
(inherit (package-source gd))
|
|
|
|
(patches (append (origin-patches (package-source gd))
|
|
|
|
(search-patches "gd-CVE-2019-6977.patch"
|
|
|
|
"gd-CVE-2019-6978.patch"))))))))
|
|
|
|
|
2015-04-02 20:31:47 +02:00
|
|
|
(define-public perl-gd
|
|
|
|
(package
|
|
|
|
(name "perl-gd")
|
2019-03-14 23:41:32 +01:00
|
|
|
(version "2.71")
|
2015-04-02 20:31:47 +02:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2018-02-27 01:21:27 +01:00
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
|
2015-04-02 20:31:47 +02:00
|
|
|
"GD-" version ".tar.gz"))
|
|
|
|
(sha256
|
2019-03-14 23:41:32 +01:00
|
|
|
(base32 "1ivskdb4nwy7ky37369hwkfxp11fkp6ri5k7qlf2dmra7f3y86s5"))))
|
2015-04-02 20:31:47 +02:00
|
|
|
(build-system perl-build-system)
|
|
|
|
(inputs
|
2018-02-27 01:21:27 +01:00
|
|
|
`(("fontconfig" ,fontconfig)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("gd" ,gd)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("libjpeg" ,libjpeg)
|
|
|
|
("zlib" ,zlib)))
|
2015-04-02 20:31:47 +02:00
|
|
|
(arguments
|
2018-02-27 01:21:27 +01:00
|
|
|
`(#:make-maker-flags
|
|
|
|
(list (string-append "--lib_jpeg_path="
|
|
|
|
(assoc-ref %build-inputs "libjpeg")))))
|
2018-08-11 15:53:20 +02:00
|
|
|
(home-page "https://metacpan.org/release/GD")
|
2015-04-02 20:31:47 +02:00
|
|
|
(synopsis "Perl interface to the GD graphics library")
|
|
|
|
(description "GD.pm is an autoloadable interface module for libgd, a
|
|
|
|
popular library for creating and manipulating PNG files. With this library
|
|
|
|
you can create PNG images on the fly or modify existing files.")
|
2017-05-02 16:57:52 +02:00
|
|
|
(license perl-license)))
|
2015-04-03 17:59:45 +02:00
|
|
|
|
|
|
|
(define-public perl-gd-securityimage
|
|
|
|
(package
|
|
|
|
(name "perl-gd-securityimage")
|
2019-03-14 23:41:42 +01:00
|
|
|
(version "1.75")
|
2015-04-03 17:59:45 +02:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/B/BU/BURAK/"
|
|
|
|
"GD-SecurityImage-" version ".tar.gz"))
|
|
|
|
(sha256
|
2019-03-14 23:41:42 +01:00
|
|
|
(base32 "19lf1kzdavrkkx3f900jnpynr55d5kjd2sdmwpfir5dsmkcj9pix"))))
|
2015-04-03 17:59:45 +02:00
|
|
|
(build-system perl-build-system)
|
2017-07-27 22:20:46 +02:00
|
|
|
(arguments
|
|
|
|
'(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'set-env
|
2018-06-28 03:01:27 +02:00
|
|
|
(lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
|
2015-04-03 17:59:45 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("perl-module-build" ,perl-module-build)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("perl-gd" ,perl-gd)
|
|
|
|
("perl-image-magick" ,perl-image-magick)))
|
2018-08-11 15:53:20 +02:00
|
|
|
(home-page "https://metacpan.org/release/GD-SecurityImage")
|
gnu packages: Clean up synopses and descriptions.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm,
gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/databases.scm, gnu/packages/enchant.scm,
gnu/packages/firmware.scm, gnu/packages/fonts.scm,
gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm,
gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm,
gnu/packages/haskell.scm, gnu/packages/language.scm,
gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm,
gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm,
gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm,
gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/pretty-print.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm,
gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm,
gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm,
gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm,
gnu/packages/unrtf.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm,
gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm:
Fix typos. Trim long lines. Add missing periods in the end of sentences.
Use double spaces between sentences. Remove trailing whitespaces.
2015-07-17 14:16:07 +02:00
|
|
|
(synopsis "Security image generator")
|
2015-04-03 17:59:45 +02:00
|
|
|
(description "This module provides a basic interface to create
|
|
|
|
security (captcha) images. The final output is the actual graphic data, the
|
|
|
|
mime type of the graphic, and the created random string. The module also has
|
|
|
|
some \"styles\" that are used to create the background (or foreground) of the
|
|
|
|
image.")
|
2017-05-02 16:57:52 +02:00
|
|
|
(license perl-license)))
|