2013-06-16 17:57:34 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2024-07-08 09:21:49 -04:00
|
|
|
;;; Copyright © 2013, 2016, 2023-2024 Ludovic Courtès <ludo@gnu.org>
|
2016-07-18 12:32:19 -04:00
|
|
|
;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
|
2015-04-02 14:31:47 -04:00
|
|
|
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
2017-01-20 09:03:35 -05:00
|
|
|
;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
|
2021-03-15 05:22:37 -04:00
|
|
|
;;; Copyright © 2017, 2021 Efraim Flashner <efraim@flashner.co.il>
|
2017-08-30 17:41:08 -04:00
|
|
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
2020-07-19 08:12:25 -04:00
|
|
|
;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
2024-02-18 20:32:08 -05:00
|
|
|
;;; Copyright © 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2013-06-16 17:57:34 -04: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)
|
2023-02-24 08:53:56 -05:00
|
|
|
#:use-module (guix gexp)
|
2013-06-16 17:57:34 -04:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix build-system gnu)
|
2015-04-02 14:31:47 -04:00
|
|
|
#:use-module (guix build-system perl)
|
2013-06-16 17:57:34 -04:00
|
|
|
#:use-module (guix download)
|
2013-11-02 18:04:45 -04:00
|
|
|
#:use-module (gnu packages)
|
2015-04-02 14:31:47 -04:00
|
|
|
#:use-module (gnu packages perl)
|
2024-03-13 21:40:56 -04:00
|
|
|
#:use-module (gnu packages perl-check)
|
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 08:39:02 -04:00
|
|
|
#:use-module (gnu packages image)
|
2015-04-03 11:59:45 -04:00
|
|
|
#:use-module (gnu packages imagemagick)
|
2013-06-16 17:57:34 -04:00
|
|
|
#:use-module (gnu packages fontutils)
|
|
|
|
#:use-module (gnu packages compression)
|
2015-01-15 18:46:23 -05:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2017-05-02 10:57:52 -04:00
|
|
|
#:use-module ((guix licenses) #:select (non-copyleft perl-license)))
|
2013-06-16 17:57:34 -04:00
|
|
|
|
|
|
|
(define-public gd
|
|
|
|
(package
|
|
|
|
(name "gd")
|
2016-05-27 11:42:22 -04:00
|
|
|
;; Note: With libgd.org now pointing to github.com, genuine old
|
2015-01-15 18:46:23 -05:00
|
|
|
;; tarballs are no longer available. Notably, versions 2.0.x are
|
2013-06-16 17:57:34 -04:00
|
|
|
;; missing.
|
2024-02-18 20:32:08 -05:00
|
|
|
(version "2.3.3")
|
2013-06-16 17:57:34 -04:00
|
|
|
(source (origin
|
2024-02-18 20:32:08 -05:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/libgd/libgd/releases/download/gd-"
|
|
|
|
version "/libgd-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0qas3q9xz3wgw06dm2fj0i189rain6n60z1vyq50d5h7wbn25s1z"))
|
|
|
|
(patches
|
|
|
|
(search-patches "gd-fix-tests-on-i686.patch"
|
|
|
|
"gd-brect-bounds.patch"))))
|
2013-06-16 17:57:34 -04:00
|
|
|
(build-system gnu-build-system)
|
2017-01-25 13:03:04 -05:00
|
|
|
(arguments
|
2024-02-18 20:32:08 -05:00
|
|
|
;; As recommended by github.com/libgd/libgd/issues/278 to fix rounding
|
|
|
|
;; issues on aarch64 and other architectures.
|
2024-07-08 09:21:49 -04:00
|
|
|
(list #:make-flags #~(list "CFLAGS=-ffp-contract=off"
|
|
|
|
|
|
|
|
;; XXX: This test fails on i686-linux.
|
|
|
|
;; See <https://issues.guix.gnu.org/71996>.
|
|
|
|
#$@(if (and (not (%current-target-system))
|
|
|
|
(string-prefix? "i686"
|
|
|
|
(%current-system)))
|
|
|
|
#~("XFAIL_TESTS=gdimagegrayscale/basic")
|
|
|
|
#~()))
|
2024-02-18 20:32:08 -05:00
|
|
|
#:configure-flags #~(list "--disable-static")
|
|
|
|
#:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(add-after 'install 'remove-libtool-archives
|
|
|
|
;; Libtool archives lists the whole transitive dependencies,
|
|
|
|
;; which is unnecessary unless producing static archives and
|
|
|
|
;; leads to overlinking, e.g. causing the configure script of
|
|
|
|
;; texlive-bin to fail due to looking for a transitive jpeg
|
|
|
|
;; library.
|
|
|
|
(lambda _
|
|
|
|
(for-each delete-file
|
|
|
|
(find-files (string-append #$output "/lib")
|
|
|
|
"\\.la$")))))))
|
2015-01-15 18:46:23 -05:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list pkg-config))
|
2013-06-16 17:57:34 -04:00
|
|
|
(inputs
|
2022-07-05 16:39:40 -04:00
|
|
|
(list fontconfig
|
|
|
|
freetype
|
|
|
|
libjpeg-turbo
|
|
|
|
libpng
|
|
|
|
zlib))
|
2020-01-18 19:06:55 -05:00
|
|
|
(home-page "https://www.libgd.org/")
|
2013-06-16 17:57:34 -04:00
|
|
|
(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 14:26:34 -04:00
|
|
|
(license (non-copyleft "file://COPYING"
|
2016-05-17 12:07:08 -04:00
|
|
|
"See COPYING file in the distribution."))
|
2022-07-02 10:47:28 -04:00
|
|
|
(properties '((cpe-name . "libgd")
|
|
|
|
(upstream-name . "libgd")
|
|
|
|
(release-monitoring-url
|
|
|
|
. "https://github.com/libgd/libgd/releases")))))
|
2015-04-02 14:31:47 -04:00
|
|
|
|
|
|
|
(define-public perl-gd
|
|
|
|
(package
|
|
|
|
(name "perl-gd")
|
2024-03-13 21:40:56 -04:00
|
|
|
(version "2.78")
|
2015-04-02 14:31:47 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2018-02-26 19:21:27 -05:00
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
|
2015-04-02 14:31:47 -04:00
|
|
|
"GD-" version ".tar.gz"))
|
|
|
|
(sha256
|
2024-03-13 21:40:56 -04:00
|
|
|
(base32 "1r3fpr8jhpwi48i66rickiphyj442hypsqnk4df4yjs2ym5hacb8"))))
|
2015-04-02 14:31:47 -04:00
|
|
|
(build-system perl-build-system)
|
|
|
|
(inputs
|
2023-02-24 08:43:07 -05:00
|
|
|
(list fontconfig
|
|
|
|
freetype
|
|
|
|
gd
|
|
|
|
libpng
|
|
|
|
libjpeg-turbo
|
|
|
|
zlib))
|
2020-04-08 08:21:41 -04:00
|
|
|
(native-inputs
|
2024-03-13 21:40:56 -04:00
|
|
|
(list perl-extutils-pkgconfig
|
|
|
|
perl-test-nowarnings))
|
2015-04-02 14:31:47 -04:00
|
|
|
(arguments
|
2023-02-24 08:53:56 -05:00
|
|
|
(list #:make-maker-flags
|
|
|
|
#~(list (string-append "--lib_jpeg_path="
|
|
|
|
#$(this-package-input "libjpeg-turbo")))))
|
2018-08-11 09:53:20 -04:00
|
|
|
(home-page "https://metacpan.org/release/GD")
|
2015-04-02 14:31:47 -04: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 10:57:52 -04:00
|
|
|
(license perl-license)))
|
2015-04-03 11:59:45 -04:00
|
|
|
|
|
|
|
(define-public perl-gd-securityimage
|
|
|
|
(package
|
|
|
|
(name "perl-gd-securityimage")
|
2019-03-14 18:41:42 -04:00
|
|
|
(version "1.75")
|
2015-04-03 11:59:45 -04: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 18:41:42 -04:00
|
|
|
(base32 "19lf1kzdavrkkx3f900jnpynr55d5kjd2sdmwpfir5dsmkcj9pix"))))
|
2015-04-03 11:59:45 -04:00
|
|
|
(build-system perl-build-system)
|
2017-07-27 16:20:46 -04:00
|
|
|
(arguments
|
|
|
|
'(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'set-env
|
2018-06-27 21:01:27 -04:00
|
|
|
(lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
|
2015-04-03 11:59:45 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list perl-module-build))
|
2015-04-03 11:59:45 -04:00
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list perl-gd perl-image-magick))
|
2018-08-11 09:53:20 -04: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 08:16:07 -04:00
|
|
|
(synopsis "Security image generator")
|
2015-04-03 11:59:45 -04: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 10:57:52 -04:00
|
|
|
(license perl-license)))
|