aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/inklingreader.scm
blob: 6cdc4b3330bdaee28a20c8e5461f0503a11992e2 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Roel Janssen <roel@gnu.org>
;;;
;;; 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 inklingreader)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gnome)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages libusb)
  #:use-module (gnu packages pkg-config))

(define-public inklingreader
  (package
    (name "inklingreader")
    (version "0.8")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "ftp://alpha.gnu.org/gnu/inklingreader/inklingreader-"
                    version ".tar.gz"))
              (sha256
               (base32
                "0ikg95mgwfqh0bq4dzvkfmdiycacqvv27g91hl6adwk5y3gzl96g"))))
    (build-system gnu-build-system)
    (inputs
     `(("glib" ,glib)
       ("cairo" ,cairo)
       ("gtk+" ,gtk+)
       ("librsvg" ,librsvg)
       ("libusb" ,libusb)))
    (native-inputs
     `(("pkg-config" ,pkg-config)))
    (home-page "https://www.gnu.org/software/inklingreader/")
    (synopsis "Wacom Inkling sketch format conversion and manipulation")
    (description
     "GNU InklingReader is a package to support the Wacom Inkling device,
including data conversion to various free formats, basic editing features,
and an Inkscape plugin.")
    (license license:gpl3+)))
erf groff perl pkg-config)) (inputs (list file gv libgc libpaper psutils)) (home-page "https://www.gnu.org/software/a2ps/") (synopsis "Any file to PostScript, including pretty-printing") (description "GNU a2ps converts almost anything to a PostScript file, ready for printing. It accomplishes this by being able to delegate files to external handlers, such as Groff and Gzip. It handles as many steps as is necessary to produce a pretty-printed file. It also includes some extra abilities for special cases, such as pretty-printing @samp{-help} output.") (license gpl3+))) (define-public trueprint (package (name "trueprint") (version "5.4") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/trueprint/trueprint-" version ".tar.gz")) (sha256 (base32 "13rkc0fga10xyf56yy9dnq95zndnfadkhxflnp24skszj21y8jqh")))) (build-system gnu-build-system) (arguments ;; Must define DIFF_CMD for tests to pass '(#:configure-flags '("CPPFLAGS=-DDIFF_CMD=\\\"diff\\\""))) (home-page "https://www.gnu.org/software/trueprint/") (synopsis "Pretty-print C sources and other plain text to PostScript") (description "GNU Trueprint translates C source code files as PostScript files. In addition to the basic source code output, it can also perform diff-marking, indentation counting, function and file indices and more.") (license gpl2))) (define-public enscript (package (name "enscript") (version "1.6.6") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/enscript/enscript-" version ".tar.gz")) (sha256 (base32 "1fy0ymvzrrvs889zanxcaxjfcxarm2d3k43c9frmbl1ld7dblmkd")))) (build-system gnu-build-system) (home-page "https://www.gnu.org/software/enscript/") (synopsis "Generating PostScript, including pretty-printing") (description "GNU Enscript is a program to convert ASCII text files to PostScript, HTML or RTF formats, to be stored in files or sent immediately to a printer. It also includes the capability to perform syntax highlighting for several different programming languages.") (license gpl3+))) (define-public fmt-11 (package (name "fmt") (version "11.0.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/fmtlib/fmt") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1v9k57zj34axagkxwkmg73gs9h15i6c8nv9hsgwjwmi82pinv8r0")))) (build-system cmake-build-system) (arguments '(#:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) (home-page "https://fmt.dev") (synopsis "Small and fast C++ formatting library") (description "@code{fmt} (formerly @code{cppformat}) is a formatting library for C++. It can be used as a safe alternative to @code{printf} or as a fast alternative to @code{IOStreams}.") ;; The library is bsd-2, but documentation and tests include other licenses. (license (list bsd-2 bsd-3 psfl)))) (define-public fmt-10 (package (inherit fmt-11) (version "10.2.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/fmtlib/fmt/releases/download/" version "/fmt-" version ".zip")) (sha256 (base32 "1j8nln7rql2nxkhdlgpmx1c1dp6dyxnar1n5r7sjg0rws6i5289i")))) (native-inputs (list unzip)))) (define-public fmt-9 (package (inherit fmt-10) (version "9.1.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/fmtlib/fmt/releases/download/" version "/fmt-" version ".zip")) (sha256 (base32 "15n9yi6xzzs7g9rm87kg8y5yhl2zrqj3bjr845saa63f6swlrsyc")))))) (define-public fmt-8 (package (inherit fmt-9) (version "8.1.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/fmtlib/fmt/releases/download/" version "/fmt-" version ".zip")) (sha256 (base32 "0p8f82ijqa57sk72hjf0qviv1wwinmns0p87wiv2v8fvisnqnxr3")))))) (define-public fmt-8.0 (package (inherit fmt-8) (version "8.0.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/fmtlib/fmt/releases/download/" version "/fmt-" version ".zip")) (sha256 (base32 "1gqmsk4r93x65cqs8w7zhfiv70w5fv8279nrblggqm4mmdpaa9x6")))))) (define-public fmt-7 (package (inherit fmt-8) (version "7.1.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/fmtlib/fmt/releases/download/" version "/fmt-" version ".zip")) (sha256 (base32 "17sc10hfg087z0s774lnn05wwy3bfzmcv7j448p92pr0s02cb62x")))))) (define-public fmt-6 (package (inherit fmt-7) (version "6.1.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/fmtlib/fmt/releases/download/" version "/fmt-" version ".zip")) (sha256 (base32 "1s1hxaby5byb07rgmrk4a0q11fxhz7b42khch7sp2qx974y0yrb3")))) (build-system cmake-build-system) (arguments '(#:tests? #f ; TODO: posix-mock-test segfaults #:configure-flags '("-DBUILD_SHARED_LIBS=ON" "-DCMAKE_CXX_COMPILER=clang++" "-DCMAKE_CXX_FLAGS=-stdlib=libc++" "-DCMAKE_EXE_LINKER_FLAGS=-lc++abi") #:phases (modify-phases %standard-phases (add-after 'set-paths 'adjust-CPLUS_INCLUDE_PATH (lambda* (#:key inputs #:allow-other-keys) (let ((gcc (assoc-ref inputs "gcc"))) (setenv "CPLUS_INCLUDE_PATH" (string-join (cons (search-input-directory inputs "/include/c++/v1") ;; Hide GCC's C++ headers so that they do not interfere with ;; the Clang headers. (delete (string-append gcc "/include/c++") (string-split (getenv "CPLUS_INCLUDE_PATH") #\:))) ":")) (format #true "environment variable `CPLUS_INCLUDE_PATH' changed to ~a~%" (getenv "CPLUS_INCLUDE_PATH")))))))) (properties `((hidden? . #true))) (native-inputs (list unzip)) (inputs `(("libcxx" ,libcxx+libcxxabi-6) ("libcxxabi" ,libcxxabi-6) ("clang" ,clang-6))))) ;; Note: Updating fmt causes some 1000s of rebuilds, so let's have a pinned ;; version. (define-public fmt fmt-9) (define-public source-highlight (package (name "source-highlight") (version "3.1.9") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/src-highlite/source-highlight-" version ".tar.gz")) (patches (search-patches "source-highlight-gcc-compat.patch")) (sha256 (base32 "148w47k3zswbxvhg83z38ifi85f9dqcpg7icvvw1cm6bg21x4zrs")))) (build-system gnu-build-system) ;; The ctags that comes with emacs does not support the --excmd options, ;; so can't be used (inputs (list boost-for-source-highlight)) (native-inputs (list bison flex)) (arguments (list #:configure-flags #~(list (string-append "--with-boost=" (assoc-ref %build-inputs "boost"))) #:parallel-tests? #f ;There appear to be race conditions #:phases #~(modify-phases %standard-phases (add-before 'build 'rename-lesspipe-to-lesspipe.sh.in (lambda _ (substitute* "src/src-hilite-lesspipe.sh.in" (("lesspipe") "lesspipe.sh")))) (add-before 'build 'skip-doc-directory (lambda _ (substitute* "Makefile" (("^SUBDIRS = (.*) doc(.*)$" _ before after) (string-append "SUBDIRS = " before " " after "\n"))))) (add-before 'check 'patch-test-files (lambda _ ;; Unpatch shebangs in test input so that source-highlight ;; is still able to infer input language (substitute* '("tests/test.sh" "tests/test2.sh" "tests/test.tcl") (((string-append "#! *" (which "sh"))) "#!/bin/sh")) ;; Initial patching unrecoverably removes whitespace, so ;; remove it also in the comparison output. (substitute* '("tests/test.sh.html" "tests/test2.sh.html" "tests/test.tcl.html") (("#! */bin/sh") "#!/bin/sh"))))))) (home-page "https://www.gnu.org/software/src-highlite/") (synopsis "Produce a document with syntax highlighting from a source file") (description "GNU source-highlight reads in a source code file and produces an output file in which the keywords are highlighted in different colors to designate their syntactic role. It supports over 150 different languages and it can output to 8 different formats, including HTML, LaTeX and ODF. It can also output to ANSI color escape sequences, so that highlighted source code can be seen in a terminal.") (license gpl3+) (properties '((ftp-directory . "/gnu/src-highlite"))))) (define-public highlight (package (name "highlight") (version "4.11") (outputs (list "out" "gui")) (source (origin (method git-fetch) (uri (git-reference (url "https://gitlab.com/saalen/highlight") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0xb9jm7249qnbain4l94nakgxsmia4w4x246dagr669fkmffcdmg")) (patches (search-patches "highlight-gui-data-dir.patch")))) (build-system gnu-build-system) (arguments (list #:tests? #f ;no tests #:make-flags #~(let ((confdir (string-append #$output "/share/highlight/config/"))) (list (string-append "PREFIX=" #$output) (string-append "HL_CONFIG_DIR=" confdir) (string-append "conf_dir=" confdir))) #:phases #~(modify-phases %standard-phases (delete 'configure) ;no configure script (add-after 'unpack 'fix-search-for-lua (lambda _ (let ((ver #$(version-major+minor (package-version (this-package-input "lua"))))) (substitute* "src/makefile" (("(LUA_PKG_NAME=).*" _ assignment) (string-append assignment "lua-" ver "\n"))) (substitute* "src/gui-qt/highlight.pro" (("(PKGCONFIG \\+= lua)" _ assignment) (string-append assignment "-" ver))) (substitute* "extras/swig/makefile" (("lua") (string-append "lua-" ver)))))) (add-after 'build 'build-gui (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (data (string-append out "/share/highlight/")) (conf (string-append out "/etc/highlight/")) (doc (string-append out "/share/doc/highlight/")) (gui (assoc-ref outputs "gui")) (gui-data (string-append gui "/share/highlight/"))) ;; modified version of gui task in makefile (invoke "make" "-C" "./src" "-f" "./makefile" (string-append "HL_DATA_DIR=" data) (string-append "HL_CONFIG_DIR=" conf) (string-append "HL_DOC_DIR=" doc) (string-append "GUI_DATA_DIR=" gui-data) "gui-qt")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (invoke "make" "install" (string-append "PREFIX=" out))))) (add-after 'install 'install-perl-bindings (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (data (string-append out "/share/highlight/")) (conf (string-append out "/etc/highlight/")) (perldir (string-append out "/lib/perl5/site_perl/" #$(package-version (this-package-input "perl")))) (autodir (string-append perldir "/auto/highlight"))) (with-directory-excursion "extras/swig" (invoke "make" "perl" (string-append "hl_data_dir=" data) (string-append "hl_conf_dir=" conf)) (invoke "perl" "-I" "." "testmod.pl") (install-file "highlight.pm" perldir) (install-file "highlight.so" autodir))))) (add-after 'install 'install-gui (lambda* (#:key outputs #:allow-other-keys) (let ((gui (assoc-ref outputs "gui"))) (mkdir-p (string-append gui "/bin")) (invoke "make" "install-gui" (string-append "PREFIX=" gui)))))))) (inputs (list lua boost perl qtbase-5)) (native-inputs (list pkg-config swig)) (home-page "http://www.andre-simon.de/doku/highlight/en/highlight.html") (synopsis "Convert code to documents with syntax highlighting") (description "Highlight converts source code to HTML, XHTML, RTF, LaTeX, TeX, SVG, BBCode and terminal escape sequences with colored syntax highlighting. Language definitions and color themes are customizable.") (license gpl3+)))