aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/enlightenment.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/enlightenment.scm')
0 files changed, 0 insertions, 0 deletions
(find-files (string-append #$output "/bin"))) (path (search-path-as-list '("bin") (map (cut assoc-ref inputs <>) (list "ghostscript" "imagemagick"))))) (for-each (lambda (program) (wrap-program program `("PATH" ":" prefix ,path))) programs))))))) (inputs (list libpng zlib ;; Quoth INSTALL: ;; “To run fig2dev, the packages ;; ghostscript, and one out of ;; netpbm | ImageMagick | GraphicsMagick ;; are needed to produce various bitmap output formats, or process ;; fig files with embedded images.” ghostscript imagemagick)) (native-inputs ;; XXX: Tests fail if netpbm is absent. (list netpbm)) (home-page "https://sourceforge.net/projects/mcj") (synopsis "Translate Fig to other graphic description formats") (description "Fig2dev is a set of tools for creating TeX documents with graphics which are portable, in the sense that they can be printed in a wide variety of environments.") (license (license:non-copyleft "file://Makefile.am" "See <https://spdx.org/licenses/Xfig.html>.")))) (define-public transfig (deprecated-package "transfig" fig2dev)) (define-public xfig (package (name "xfig") (version "3.2.9") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/mcj/" name "-" version ".tar.xz")) (sha256 (base32 "1xy2zqbd1wn2fij95kgnj39850r7xk74kvx7kp0dxhmvs429vv8k")) ;; TODO: Remove these patches and snippet when updating, ;; upstreamed since commit `84375ac05e923b46bbacc8b336b0dfbe29497b6b'. (patches (search-patches "xfig-Enable-error-message-for-missing-libraries.patch" "xfig-Use-pkg-config-to-set-fontconfig-CFLAGS-and-LIBS.patch" "xfig-Fix-double-free-when-requesting-MediaBox.patch")) (modules '((guix build utils))) (snippet ;; The patch-dot-desktop-files phase requires a relative name. #~(begin (substitute* "xfig.desktop" (("^(Exec=)/usr/bin/" _ key) key)) ;; This forces autoreconf to be invoked, needed for patches ;; to be effective. (delete-file "configure"))))) (build-system gnu-build-system) (arguments (list #:modules '((guix build gnu-build-system) (guix build utils) (srfi srfi-26)) #:phases #~(modify-phases %standard-phases (add-after 'install 'wrap-program (lambda* (#:key inputs #:allow-other-keys) (let ((path (search-path-as-list '("bin") (map (cut assoc-ref inputs <>) (list "ghostscript" "fig2dev"))))) (wrap-program (string-append #$output "/bin/xfig") `("PATH" ":" prefix ,path)))))))) (native-inputs (list pkg-config ;; TODO: Remove the import on (gnu packages autotools) ;; and related packages in the next update. autoconf automake libtool ;; For tests. desktop-file-utils)) (inputs (list ghostscript fig2dev libxaw3d libjpeg-turbo libpng libxpm libx11 libxft libxt)) (home-page "https://mcj.sourceforge.net/") (synopsis "Interactive drawing tool") (description "Xfig is an interactive drawing tool which runs under X Window System. In xfig, figures may be drawn using objects such as circles, boxes, lines, spline curves, text, etc. It is also possible to import images in formats such as GIF, JPEG, EPSF (PostScript), etc. Those objects can be created, deleted, moved or modified. Attributes such as colors or line styles can be selected in various ways. For text, 35 fonts are available.") (license (license:non-copyleft "file://Makefile.am" "See <https://spdx.org/licenses/Xfig.html>."))))