2015-04-27 20:09:15 +00:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
2016-03-07 10:42:02 +00:00
|
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2024-03-25 16:54:36 +00:00
|
|
|
|
;;; Copyright © 2016, 2018-2021, 2023, 2024 Efraim Flashner <efraim@flashner.co.il>
|
2017-01-03 15:58:41 +00:00
|
|
|
|
;;; Copyright © 2017 Alex Griffin <a@ajgrf.com>
|
2017-03-27 18:15:04 +00:00
|
|
|
|
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
|
2021-03-03 18:30:32 +00:00
|
|
|
|
;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2017-08-13 11:59:46 +00:00
|
|
|
|
;;; Copyright © 2017 Andy Wingo <wingo@igalia.com>
|
2021-07-16 14:50:56 +00:00
|
|
|
|
;;; Copyright © 2017, 2018, 2019, 2021 Ludovic Courtès <ludo@gnu.org>
|
2022-08-10 18:49:33 +00:00
|
|
|
|
;;; Copyright © 2017, 2018, 2019, 2022 Marius Bakke <marius@gnu.org>
|
2017-11-10 18:38:50 +00:00
|
|
|
|
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
2022-11-27 07:35:27 +00:00
|
|
|
|
;;; Copyright © 2018, 2019, 2022 Ricardo Wurmus <rekado@elephly.net>
|
2020-07-28 11:36:44 +00:00
|
|
|
|
;;; Copyright © 2018, 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
2019-07-16 05:42:07 +00:00
|
|
|
|
;;; Copyright © 2019 Chris Marusich <cmmarusich@gmail.com>
|
2020-05-29 17:30:12 +00:00
|
|
|
|
;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl>
|
2023-03-31 10:09:01 +00:00
|
|
|
|
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
|
2023-10-12 02:23:07 +00:00
|
|
|
|
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2015-04-27 20:09:15 +00: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 libreoffice)
|
2022-11-27 07:37:32 +00:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2018-09-29 03:30:55 +00:00
|
|
|
|
#:use-module (guix build-system glib-or-gtk)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2020-02-21 02:40:44 +00:00
|
|
|
|
#:use-module (guix build-system python)
|
2022-08-10 19:39:25 +00:00
|
|
|
|
#:use-module (guix gexp)
|
2015-04-27 20:09:15 +00:00
|
|
|
|
#:use-module (guix download)
|
2019-01-05 20:20:02 +00:00
|
|
|
|
#:use-module (guix git-download)
|
2020-02-17 20:21:55 +00:00
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix utils)
|
2017-09-16 21:20:09 +00:00
|
|
|
|
#:use-module (ice-9 match)
|
2016-01-05 22:09:27 +00:00
|
|
|
|
#:use-module (gnu packages)
|
2020-01-30 19:54:28 +00:00
|
|
|
|
#:use-module (gnu packages aidc)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
|
#:use-module (gnu packages bison)
|
2015-04-27 20:09:15 +00:00
|
|
|
|
#:use-module (gnu packages boost)
|
2015-05-03 11:05:58 +00:00
|
|
|
|
#:use-module (gnu packages check)
|
2015-04-30 19:23:29 +00:00
|
|
|
|
#:use-module (gnu packages compression)
|
2023-11-08 02:30:18 +00:00
|
|
|
|
#:use-module (gnu packages cpp)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages cups)
|
2015-05-14 15:24:03 +00:00
|
|
|
|
#:use-module (gnu packages curl)
|
|
|
|
|
#:use-module (gnu packages cyrus-sasl)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages databases)
|
2022-08-10 20:46:54 +00:00
|
|
|
|
#:use-module (gnu packages datastructures)
|
gnu: Update module imports for asciidoc and doxygen.
This is a followup to commit 0573a923def01e54bf104e0015ade44ab42f694f.
* gnu/packages/algebra.scm, gnu/packages/bioinformatics.scm,
gnu/packages/fcitx.scm, gnu/packages/fish.scm,
gnu/packages/freedesktop.scm, gnu/packages/game-development.scm,
gnu/packages/gcc.scm, gnu/packages/graphics.scm, gnu/packages/image.scm,
gnu/packages/kodi.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/messaging.scm,
gnu/packages/mpd.scm, gnu/packages/music.scm, gnu/packages/rdf.scm,
gnu/packages/serialization.scm, gnu/packages/version-control.scm,
gnu/packages/web.scm, gnu/packages/wm.scm, gnu/packages/xdisorg.scm,
gnu/packages/xiph.scm: Change imports of (gnu packages asciidoc) or
(gnu packages doxygen) to (gnu packages documentation).
2016-05-13 00:18:15 +00:00
|
|
|
|
#:use-module (gnu packages documentation)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages flex)
|
|
|
|
|
#:use-module (gnu packages fontutils)
|
2019-07-16 05:42:07 +00:00
|
|
|
|
#:use-module (gnu packages freedesktop)
|
2021-06-22 09:41:27 +00:00
|
|
|
|
#:use-module (gnu packages game-development)
|
2015-05-06 19:34:49 +00:00
|
|
|
|
#:use-module (gnu packages ghostscript)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages gl)
|
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
|
#:use-module (gnu packages gnome)
|
2015-05-03 20:43:48 +00:00
|
|
|
|
#:use-module (gnu packages gperf)
|
2018-02-11 10:46:27 +00:00
|
|
|
|
#:use-module (gnu packages gnupg)
|
2022-11-27 16:39:52 +00:00
|
|
|
|
#:use-module (gnu packages graphics)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages gstreamer)
|
|
|
|
|
#:use-module (gnu packages gtk)
|
gnu: hunspell: Move hunspell and dictionaries to hunspell module.
Consolidate hunspell and its dictionaries into the (gnu packages hunspell)
module instead of having them scattered about.
* gnu/packages/aspell.scm (aspell-word-list, define-word-list-dictionary,
hunspell-dict-{en, en-au, en-gb, en-gb-ize, en-us}): Remove variables.
* gnu/packages/libreoffice.scm (hunspell, dicollecte-french-dictionary,
define-french-dictionary, hunspell-dict-fr-{classique, moderne, réforme,
toutes-variantes}, hunspell-dict-pl, hunspell-dict-de, hunspell-dict-hu):
Remove variables.
* gnu/packages/hunspell.scm (hunspell, dicollecte-french-dictionary,
define-french-dictionary, hunspell-dict-fr-{classique, moderne, réforme,
toutes-variantes}, hunspell-dict-pl, hunspell-dict-de, hunspell-dict-hu,
aspell-word-list, define-word-list-dictionary, hunspell-dict-{en, en-au,
en-gb, en-gb-ize, en-us}): Add variables.
(hunspell-dictionary): Explicitly declare upstream libreoffice version to
prevent circular dependency.
* gnu/packages/ebook.scm,
gnu/packages/enchant.scm,
gnu/packages/freedesktop.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/messaging.scm,
gnu/packages/scribus.scm,
gnu/packages/task-management.scm,
gnu/packages/telegram.scm,
gnu/packages/tex.scm,
gnu/packages/text-editors.scm,
gnu/packages/video.scm: Adjust module imports.
2023-01-03 23:48:39 +00:00
|
|
|
|
#:use-module (gnu packages hunspell)
|
2015-05-03 20:43:48 +00:00
|
|
|
|
#:use-module (gnu packages icu4c)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages image)
|
|
|
|
|
#:use-module (gnu packages linux)
|
2020-01-30 19:53:22 +00:00
|
|
|
|
#:use-module (gnu packages logging)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages maths)
|
gnu: Move nss & co. to nss.scm.
* gnu/packages/gnuzilla.scm (nspr, nss): Move to...
* gnu/packages/nss.scm: ... here. New file.
* gnu/packages/chromium.scm, gnu/packages/disk.scm,
gnu/packages/freedesktop.scm, gnu/packages/gnome.scm,
gnu/packages/gnunet.scm, gnu/packages/java.scm,
gnu/packages/libreoffice.scm, gnu/packages/linux.scm,
gnu/packages/mate.scm, gnu/packages/openldap.scm,
gnu/packages/package-management.scm, gnu/packages/password-utils.scm,
gnu/packages/polkit.scm, gnu/packages/qt.scm,
gnu/packages/sssd.scm, gnu/packages/storage.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/xml.scm: Adjust
accordingly.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add nss.scm.
2019-04-04 13:14:57 +00:00
|
|
|
|
#:use-module (gnu packages nss)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages openldap)
|
|
|
|
|
#:use-module (gnu packages pdf)
|
2015-05-04 20:27:32 +00:00
|
|
|
|
#:use-module (gnu packages perl)
|
2019-01-14 15:00:35 +00:00
|
|
|
|
#:use-module (gnu packages perl-compression)
|
2015-04-27 20:09:15 +00:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2015-05-03 20:43:48 +00:00
|
|
|
|
#:use-module (gnu packages python)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages rdf)
|
|
|
|
|
#:use-module (gnu packages scanner)
|
gnu: Move content of openssl module into tls module.
* gnu/packages/openssl.scm (openssl, perl-net-ssleay): Move to...
* gnu/packages/tls.scm: ...here.
* gnu/packages/openssl.scm: Delete file.
* gnu-system.am (GNU_SYSTEM_MODULES): Unregister deleted file.
* gnu/packages/{admin.scm, bittorrent.scm, certs.scm, ci.scm,
cyrus-sasl.scm, databases.scm, dns.scm, ebook.scm, enlightenment.scm,
gnunet.scm, libreoffice.scm, links.scm, mail.scm, messaging.scm,
networking.scm, ntp.scm, openldap.scm, package-management.scm, pdf.scm,
python.scm, qt.scm, rdesktop.scm, rdf.scm, ruby.scm, ssh.scm,
synergy.scm, tor.scm, version-control.scm, video.scm, vpn.scm,
w3m.scm, web.scm, weechat.scm, xiph.scm}: Adapt module import.
2015-07-05 16:27:24 +00:00
|
|
|
|
#:use-module (gnu packages tls)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages version-control)
|
|
|
|
|
#:use-module (gnu packages xml)
|
gnu: Move contents of zip module into compression module.
* gnu/packages/zip.scm (zip, unzip, zziplib, perl-zip): Move to...
* gnu/packages/compression.scm: ...here.
* gnu/packages/zip.scm: Delete file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Unregister deleted file.
* po/packages/POTFILES.in: Unregister deleted file.
* gnu/packages/{audio, avr, bioinformatics, busybox, cdrom, ci, compression,
docbook, documentation, fonts, fpga, game-development, games, gl, gnome,
gnuzilla, graphics, guile, haskell, image, java, kodi, ldc, libreoffice,
markup, maths, mc, monitoring, music, php, pretty-print, python, scheme,
smalltalk, statistics, synergy, tex, textutils, video, web-browsers, xml,
zip}.scm, guix/build-system/{ant, font}.scm, guix/{download, packages}.scm:
Adapt module import.
2017-06-12 18:40:01 +00:00
|
|
|
|
#:use-module (gnu packages xorg))
|
2015-04-27 20:09:15 +00:00
|
|
|
|
|
|
|
|
|
(define-public ixion
|
|
|
|
|
(package
|
|
|
|
|
(name "ixion")
|
2023-10-12 02:23:07 +00:00
|
|
|
|
(version "0.19.0")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://gitlab.com/ixion/ixion")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0nycbs3765wkaw9ff7aflm56ayxkn15dlfl5pbbb9b5i2rcv3dq6"))))
|
2015-04-27 20:09:15 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2023-10-12 02:23:07 +00:00
|
|
|
|
(native-inputs (list autoconf automake libtool pkg-config))
|
|
|
|
|
(inputs (list mdds python spdlog))
|
2015-04-27 20:09:15 +00:00
|
|
|
|
(home-page "https://gitlab.com/ixion/ixion")
|
|
|
|
|
(synopsis "General purpose formula parser and interpreter")
|
|
|
|
|
(description "Ixion is a library for calculating the results of formula
|
|
|
|
|
expressions stored in multiple named targets, or \"cells\". The cells can
|
|
|
|
|
be referenced from each other, and the library takes care of resolving
|
|
|
|
|
their dependencies automatically upon calculation.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-04-30 19:23:29 +00:00
|
|
|
|
|
|
|
|
|
(define-public orcus
|
|
|
|
|
(package
|
|
|
|
|
(name "orcus")
|
2024-03-25 17:04:25 +00:00
|
|
|
|
(version "0.19.2")
|
2023-10-12 02:24:49 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
;; The test suite requires data files store with Git Large
|
|
|
|
|
;; File Storage.
|
|
|
|
|
(method git-fetch/lfs)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://gitlab.com/orcus/orcus")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2024-03-25 17:04:25 +00:00
|
|
|
|
"03q72z91azq35l8jfvjizd6yghjrgrss221iwh5zjwvxgzcbkl7v"))))
|
2015-04-30 19:23:29 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2023-10-12 02:24:49 +00:00
|
|
|
|
(arguments (list #:configure-flags #~(list "--disable-static")))
|
|
|
|
|
(native-inputs (list autoconf automake libtool pkg-config))
|
|
|
|
|
(inputs (list ixion mdds python zlib))
|
2015-04-30 19:23:29 +00:00
|
|
|
|
(home-page "https://gitlab.com/orcus/orcus")
|
|
|
|
|
(synopsis "File import filter library for spreadsheet documents")
|
|
|
|
|
(description "Orcus is a library that provides a collection of standalone
|
|
|
|
|
file processing filters. It is currently focused on providing filters for
|
|
|
|
|
spreadsheet documents. The library includes import filters for
|
|
|
|
|
Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document Spreadsheet,
|
|
|
|
|
Plain Text, Gnumeric XML, Generic XML. It also includes low-level parsers for
|
|
|
|
|
CSV, CSS and XML.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-03 11:05:58 +00:00
|
|
|
|
|
2020-02-21 02:40:44 +00:00
|
|
|
|
(define-public unoconv
|
|
|
|
|
(package
|
|
|
|
|
(name "unoconv")
|
|
|
|
|
(version "0.9.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "unoconv" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0cb0bvyxib3xrj0jdgizhp6p057lr8kqnd3n921rin37ivcvz3ih"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'stop-hash-sniffing
|
|
|
|
|
;; Fixes <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=39647#11>.
|
|
|
|
|
;; Submitted upsteam: <https://github.com/unoconv/unoconv/pull/531>.
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "unoconv"
|
|
|
|
|
(("sys.argv\\[0\\]\\.split\\('2'\\)")
|
|
|
|
|
"os.path.basename(sys.argv[0]).split('2')"))
|
|
|
|
|
#t))
|
|
|
|
|
(add-after 'unpack 'patch-find_offices
|
|
|
|
|
;; find_offices is a convoluted cross-platform treasure hunt.
|
|
|
|
|
;; Keep things simple and return the correct paths immediately.
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let* ((libreoffice (assoc-ref inputs "libreoffice")))
|
|
|
|
|
(substitute* "unoconv"
|
|
|
|
|
(("def find_offices\\(\\):" match)
|
|
|
|
|
(string-append
|
|
|
|
|
match "\n"
|
|
|
|
|
" return [Office("
|
|
|
|
|
"'" libreoffice "/lib/libreoffice', "
|
|
|
|
|
"'" libreoffice "/lib/libreoffice/program', "
|
|
|
|
|
"'" libreoffice "/lib/libreoffice/program', "
|
|
|
|
|
"'" libreoffice "/lib/libreoffice/program/pyuno.so', "
|
|
|
|
|
"'" libreoffice "/bin/soffice', "
|
|
|
|
|
"sys.executable, "
|
|
|
|
|
"None)]\n")))
|
|
|
|
|
#t))))))
|
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list libreoffice))
|
2020-02-21 02:40:44 +00:00
|
|
|
|
(home-page "http://dag.wiee.rs/home-made/unoconv/")
|
|
|
|
|
(synopsis "Convert between any document format supported by LibreOffice")
|
|
|
|
|
(description
|
|
|
|
|
"Unoconv is a command-line utility to convert documents from any format
|
|
|
|
|
that LibreOffice can import, to any format it can export. It can be used for
|
|
|
|
|
batch processing and can apply custom style templates and filters.
|
|
|
|
|
|
|
|
|
|
Unoconv converts between over a hundred formats, including Open Document
|
|
|
|
|
Format (@file{.odt}, @file{.ods}, @file{.odp})), Portable Document Format
|
|
|
|
|
(@file{.pdf}), HTML and XHTML, RTF, DocBook (@file{.xml}), @file{.doc} and
|
|
|
|
|
@file{.docx}), @file{.xls} and @file{.xlsx}).
|
|
|
|
|
|
|
|
|
|
All required fonts must be installed on the converting system.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:gpl2)))
|
2020-02-21 02:40:44 +00:00
|
|
|
|
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(define-public librevenge
|
|
|
|
|
(package
|
|
|
|
|
(name "librevenge")
|
2017-10-08 15:09:49 +00:00
|
|
|
|
(version "0.0.4")
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2020-02-17 18:22:36 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/libwpd/librevenge/librevenge-"
|
|
|
|
|
version "/librevenge-" version ".tar.xz"))
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(sha256 (base32
|
2017-10-08 15:09:49 +00:00
|
|
|
|
"1cj76cz4mqcy2mgv9l5xlc95bypyk8zbq0ls9cswqrs2y0lhfgwk"))))
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list cppunit doxygen pkg-config))
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list zlib))
|
2016-01-05 22:09:27 +00:00
|
|
|
|
(propagated-inputs ; Referenced by .la files
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost))
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(arguments
|
|
|
|
|
;; avoid triggering configure errors by simple inclusion of boost headers
|
2016-01-05 22:09:27 +00:00
|
|
|
|
`(#:configure-flags '("--disable-werror"
|
|
|
|
|
;; Avoid undefined library references
|
|
|
|
|
"LDFLAGS=-lboost_system")))
|
gnu: Use HTTPS for all sourceforge.net home pages.
* gnu/packages/admin.scm (mingetty, clusterssh)[home-page]: Use HTTPS.
* gnu/packages/audio.scm (libbs2b, soxr)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (bless)[home-page]: Likewise.
* gnu/packages/display-managers.scm (slim)[home-page]: Likewise.
* gnu/packages/games.scm (extremetuxracer)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (gs-fonts)[home-page]: Likewise.
* gnu/packages/haskell.scm (ghc-regex-base, ghc-regex-posix,
ghc-regex-compat)[home-page]: Likewise.
* gnu/packages/image.scm (imlib2)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (librevenge, libcmis, libodfgen, libmwaw)
[home-page]: Likewise.
* gnu/packages/linux.scm (hdparm, acpid, libavc1394, rng-tools)
[home-page]: Likewise.
* gnu/packages/mail.scm (esmtp)[home-page]: Likewise.
* gnu/packages/mp3.scm (ripperx)[home-page]: Likewise.
* gnu/packages/onc-rpc.scm (libtirpc)[home-page]: Likewise.
* gnu/packages/perl.scm (perl-czplib)[home-page]: Likewise.
* gnu/packages/python.scm (python-pyasn1-modules)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (xosd)[home-page]: Likewise.
2017-01-04 00:30:46 +00:00
|
|
|
|
(home-page "https://sourceforge.net/p/libwpd/wiki/librevenge/")
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(synopsis "Document importer for office suites")
|
|
|
|
|
(description "Librevenge is a base library for writing document import
|
|
|
|
|
filters. It has interfaces for text documents, vector graphics,
|
|
|
|
|
spreadsheets and presentations.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual-licensed
|
2015-05-03 12:28:09 +00:00
|
|
|
|
|
|
|
|
|
(define-public libwpd
|
|
|
|
|
(package
|
|
|
|
|
(name "libwpd")
|
2019-12-04 04:26:53 +00:00
|
|
|
|
(version "0.10.3")
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-03-16 18:08:44 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/libwpd/libwpd/"
|
|
|
|
|
"libwpd-" version "/libwpd-" version ".tar.xz"))
|
2022-07-23 04:27:30 +00:00
|
|
|
|
(patches (search-patches "libwpd-gcc-compat.patch"))
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(sha256 (base32
|
2019-12-04 04:26:53 +00:00
|
|
|
|
"02fx8bngslcj7i5g1gx2kiign4vp09wrmp5wpvix9igxcavb0r94"))))
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2019-02-11 13:17:08 +00:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("--disable-werror")))
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list doxygen pkg-config))
|
2015-05-16 19:22:34 +00:00
|
|
|
|
(propagated-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list librevenge)) ; in Requires field of .pkg
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list zlib))
|
gnu: Use HTTPS package home pages wherever possible.
* gnu/packages/accessibility.scm (florence)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (netcat, nmon)[home-page]: Likewise.
* gnu/packages/algebra.scm (mpfrcx, cm, flint, fftw, r-dtt)[home-page]:
Likewise.
* gnu/packages/apr.scm (apr, apr-util)[home-page]: Likewise.
* gnu/packages/aspell.scm (aspell-dict-it)[home-page]: Likewise.
* gnu/packages/astronomy.scm (casacore, sextractor, libnova)
(xplanet)[home-page]: Likewise.
* gnu/packages/audio.scm (libtimidity, alsa-modular-synth, azr3, tao)
(freepats, rakarrack, liblo, libshout-idjc, timidity++, libsbsms)
(libmodplug, libxmp, xmp, sox, drc, gsm, gnaural)
(streamripper)[home-page]: Likewise.
* gnu/packages/authentication.scm (pamtester)[home-page]: Likewise.
* gnu/packages/backup.scm (grsync)[home-page]: Likewise.
* gnu/packages/bioconductor.scm (r-nmf, r-edger, r-limma)
(r-plgem)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (python-biom-format, bowtie, bowtie1)
(bwa, crossmap, java-htsjdk, java-htsjdk-latest, java-picard)
(java-picard-2.10.3, kaiju, proteinortho, rsem, rseqc, seek, samtools)
(snap-aligner, subread, stringtie, r-centipede, prinseq, emboss, phylip)
(libsbml)[home-page]: Likewise.
* gnu/packages/build-tools.scm (tup)[home-page]: Likewise.
* gnu/packages/cdrom.scm (libcddb, cdrdao, cdrtools)
(cd-discid)[home-page]: Likewise.
* gnu/packages/check.scm (cunit, python-nose)
(python-pyhamcrest)[home-page]: Likewise.
* gnu/packages/chemistry.scm (gromacs)[home-page]: Likewise.
* gnu/packages/chez.scm (chez-fmt)[home-page]: Likewise.
* gnu/packages/code.scm (lcov, uncrustify, cscope)[home-page]: Likewise.
* gnu/packages/compression.scm (p7zip)[home-page]: Likewise.
* gnu/packages/cran.scm (r-emdist, r-proj4, r-zoo, r-ggalluvial)
(r-orgmassspecr, r-polychrome, r-partykit, r-rcpp, r-ff, r-emdbook)
(r-fitdistrplus, r-linprog, r-geometry, r-dtw, r-fst, r-rjags)
(r-intergraph, r-qualv, r-labelled, r-survey, r-coin, r-fmsb, r-tm)
(r-corpcor, r-rmpfr, r-spatialextremes, r-longitudinal, r-genenet)
(r-bayesm, r-seqinr, r-mpm, r-text2vec, r-rgdal, r-seewave, r-hdrcde)
(r-shapes, r-anytime, r-stm, r-d3network, r-tam, r-directlabels)
(r-spatstat-utils, r-spatstat-sparse, r-spatstat-data, r-spatstat-geom)
(r-spatstat-core, r-spatstat-linnet, r-spatstat-random, r-spatstat)
(r-rcpptoml, r-mlecens, r-seurat, r-mlearning, r-zooimage)[home-page]:
Likewise.
* gnu/packages/crates-io.scm (rust-nickel-0.11, rust-thrift-0.13)
(rust-trust-dns-https-0.20, rust-trust-dns-native-tls-0.20)
(rust-trust-dns-openssl-0.20, rust-trust-dns-proto-0.20)
(rust-trust-dns-resolver-0.20, rust-trust-dns-rustls-0.20)
(rust-uint-0.9, rust-yaml-rust-0.4)[home-page]: Likewise.
* gnu/packages/crypto.scm (libdecaf, ccrypt)[home-page]: Likewise.
* gnu/packages/curl.scm (curlpp)[home-page]: Likewise.
* gnu/packages/databases.scm (python-pylibmc, unixodbc, wiredtiger)
(libpqxx, mdbtools, virtuoso-ose, libdbi, libdbi-drivers)
(soci)[home-page]: Likewise.
* gnu/packages/debian.scm (apt-mirror)[home-page]: Likewise.
* gnu/packages/debug.scm (remake)[home-page]: Likewise.
* gnu/packages/disk.scm (sdparm, idle3-tools, duc)[home-page]: Likewise.
* gnu/packages/django.scm (python-django-haystack)[home-page]: Likewise.
* gnu/packages/djvu.scm (djvulibre, djview)[home-page]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[home-page]: Likewise.
* gnu/packages/docbook.scm (dblatex, docbook2x)[home-page]: Likewise.
* gnu/packages/documentation.scm (scrollkeeper)[home-page]: Likewise.
* gnu/packages/ebook.scm (liblinebreak)[home-page]: Likewise.
* gnu/packages/electronics.scm (xoscope)[home-page]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-bbdb, emacs-caps-lock, emacs-djvu)
(emacs-pabbrev, emacs-twittering-mode, emacs-filladapt, emacs-rudel)
(emacs-stream, emacspeak, emacs-cc-mode, emacs-eldoc, emacs-jsonrpc)
(emacs-gtk-look, emacs-xclip, emacs-slime-volleyball, emacs-minimap)
(emacs-auto-dictionary-mode, emacs-persist, emacs-shell-command+)
(emacs-map, emacs-xref, emacs-dictionary)[home-page]: Likewise.
* gnu/packages/embedded.scm (sdcc)[home-page]: Likewise.
* gnu/packages/engineering.scm (asco, libngspice, libspnav)
(openctm)[home-page]: Likewise.
* gnu/packages/erlang.scm (erlang-erlware-commons)[home-page]: Likewise.
* gnu/packages/file-systems.scm (jfsutils, curlftpfs)[home-page]:
Likewise.
* gnu/packages/finance.scm (gbonds)[home-page]: Likewise.
* gnu/packages/flashing-tools.scm (dfu-util, srecord)[home-page]:
Likewise.
* gnu/packages/fltk.scm (ntk)[home-page]: Likewise.
* gnu/packages/fonts.scm (font-terminus, font-tex-gyre)
(font-comic-neue)[home-page]: Likewise.
* gnu/packages/fontutils.scm (ttf2pt1, potrace, libspiro)[home-page]:
Likewise.
* gnu/packages/fpga.scm (icestorm, gtkwave, gtkwave)
(python-myhdl)[home-page]: Likewise.
* gnu/packages/freedesktop.scm (libatasmart)[home-page]: Likewise.
* gnu/packages/ftp.scm (weex)[home-page]: Likewise.
* gnu/packages/game-development.scm (dds, python-tmx, sfxr, quesoglc)
(eureka, plib)[home-page]: Likewise.
* gnu/packages/games.scm (abe, alex4, armagetronad, barony)
(foobillard++, golly, ltris, pipewalker, prboom-plus, trigger-rally)
(cmatrix, pinball, pioneers, tennix, chromium-bsu, freeciv, kiki)
(quakespasm, frotz, frotz-dumb-terminal, frotz-sdl, btanks)
(flare-engine, chessx, barrage, cgoban, passage)[home-page]: Likewise.
* gnu/packages/geo.scm (python-geopandas, saga)[home-page]: Likewise.
* gnu/packages/gl.scm (freeglut, gl2ps)[home-page]: Likewise.
* gnu/packages/gnome.scm (cogl, clutter-gtk, clutter-gst, bluefish)
(workrave)[home-page]: Likewise.
* gnu/packages/gnustep.scm (wmnd, wmfire, wmfire)[home-page]: Likewise.
* gnu/packages/graph.scm (mscgen)[home-page]: Likewise.
* gnu/packages/graphics.scm (assimp, alembic, ctl, agg)
(opencsg)[home-page]: Likewise.
* gnu/packages/graphviz.scm (gts)[home-page]: Likewise.
* gnu/packages/gtk.scm (gtkspell3)[home-page]: Likewise.
* gnu/packages/guile-xyz.scm (guile-irregex)[home-page]: Likewise.
* gnu/packages/haskell-apps.scm (cpphs)[home-page]: Likewise.
* gnu/packages/haskell-check.scm (ghc-hunit)[home-page]: Likewise.
* gnu/packages/haskell-web.scm (ghc-http-client-restricted)
(ghc-blaze-html, ghc-happstack-server, ghc-sourcemap)[home-page]:
Likewise.
* gnu/packages/haskell-xyz.scm (ghc-assoc, ghc-cairo, ghc-cborg)
(ghc-csv, ghc-glob, ghc-gtk2hs-buildtools, ghc-hmatrix-gsl-stats)
(ghc-intervalmap, ghc-lens-family-core, ghc-managed, ghc-mountpoints)
(ghc-network-multicast, ghc-optional-args, ghc-regex, ghc-spoon)
(ghc-transformers, ghc-turtle, ghc-utf8-light, ghc-wizards)
(ghc-template-haskell, ghc-boot-th, ghc-binary-orphans)
(ghc-postgresql-simple)[home-page]: Likewise.
* gnu/packages/hexedit.scm (ht, bvi)[home-page]: Likewise.
* gnu/packages/hunspell.scm (hunspell-dict-hu)[home-page]: Likewise.
* gnu/packages/image-processing.scm (mia)[home-page]: Likewise.
* gnu/packages/image-viewers.scm (geeqie, gpicview, luminance-hdr)
(qiv)[home-page]: Likewise.
* gnu/packages/image.scm (libuemf, devil, steghide, optipng, niftilib)
(sng, mtpaint)[home-page]: Likewise.
* gnu/packages/java-xml.scm (java-simple-xml, java-jaxp)
(java-apache-xml-commons-resolver)[home-page]: Likewise.
* gnu/packages/java.scm (java-cisd-base, java-cisd-args4j)
(java-hamcrest-core, java-jsr305, java-eclipse-osgi)
(java-eclipse-equinox-common, java-eclipse-core-jobs)
(java-eclipse-equinox-registry, java-eclipse-equinox-app)
(java-eclipse-equinox-preferences, java-eclipse-core-contenttype)
(java-eclipse-text, java-treelayout, java-aopalliance, java-jeromq)
(java-cdi-api)[home-page]: Likewise.
* gnu/packages/jemalloc.scm (jemalloc-4.5.0)[home-page]: Likewise.
* gnu/packages/julia-xyz.scm (julia-recipespipeline)[home-page]:
Likewise.
* gnu/packages/kde-internet.scm (kget)[home-page]: Likewise.
* gnu/packages/kde-systemtools.scm (dolphin-plugins)
(konsole)[home-page]: Likewise.
* gnu/packages/kodi.scm (fstrcmp)[home-page]: Likewise.
* gnu/packages/language.scm (hime, libchewing)[home-page]: Likewise.
* gnu/packages/lego.scm (nqc)[home-page]: Likewise.
* gnu/packages/lesstif.scm (lesstif)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[home-page]: Likewise.
* gnu/packages/libdaemon.scm (libdaemon)[home-page]: Likewise.
* gnu/packages/libffi.scm (libffi)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (libwpd, libwpg, libwps)[home-page]:
Likewise.
* gnu/packages/libusb.scm (libmtp, gmtp)[home-page]: Likewise.
* gnu/packages/linux.scm (e2fsprogs, extundelete, lsscsi, net-tools)
(kbd, sysfsutils, cpuid, libpfm4)[home-page]: Likewise.
* gnu/packages/lisp-check.scm (sbcl-ptester, sbcl-xlunit)[home-page]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-html-encode, sbcl-py-configparser)
(sbcl-cl-utilities, sbcl-series, sbcl-uffi, sbcl-clsql, sbcl-sycamore)
(sbcl-osicat, sbcl-hu.dwim.common, sbcl-caveman, sbcl-trivial-shell)
(sbcl-trivial-benchmark, sbcl-screamer, sbcl-smug)[home-page]: Likewise.
* gnu/packages/lisp.scm (lush2)[home-page]: Likewise.
* gnu/packages/logging.scm (log4cpp)[home-page]: Likewise.
* gnu/packages/lua.scm (lua-ldoc)[home-page]: Likewise.
* gnu/packages/machine-learning.scm (mcl, openfst, rxcpp)[home-page]:
Likewise.
* gnu/packages/mail.scm (muchsync, procmail, sendmail)
(opensmtpd-filter-dkimsign, crm114)[home-page]: Likewise.
* gnu/packages/man.scm (libpipeline, man-db)[home-page]: Likewise.
* gnu/packages/maths.scm (lapack, scalapack, hdf-eos5, itpp, gmsh)
(metamath, p4est, armadillo, suitesparse, atlas, lpsolve, wcalc, why3)
(frama-c)[home-page]: Likewise.
* gnu/packages/mcrypt.scm (mcrypt, libmcrypt, libmhash)[home-page]:
Likewise.
* gnu/packages/minetest.scm (minetest-advtrains)[home-page]: Likewise.
* gnu/packages/monitoring.scm (python-whisper, python-carbon)
(hostscope)[home-page]: Likewise.
* gnu/packages/mp3.scm (id3lib, libmp3splt, mp3splt, mpg321)
(lame)[home-page]: Likewise.
* gnu/packages/multiprecision.scm (mpc)[home-page]: Likewise.
* gnu/packages/music.scm (aria-maestosa, lingot, setbfree, bristol)
(portmidi, python-pyportmidi, zynaddsubfx, yoshimi, aj-snapshot)
(schismtracker, midicsv, midicsv, qmidiarp, qmidiroute, dssi, tap-lv2)
(shiru-lv2)[home-page]: Likewise.
* gnu/packages/ncurses.scm (stfl)[home-page]: Likewise.
* gnu/packages/networking.scm (lksctp-tools, mbuffer, ifstatus, bird)
(tunctl, traceroute)[home-page]: Likewise.
* gnu/packages/node-xyz.scm (node-mersenne)[home-page]: Likewise.
* gnu/packages/ntp.scm (openntpd)[home-page]: Likewise.
* gnu/packages/ocaml.scm (opam, hevea, ocaml-menhir, ocaml-piqilib)
(ocaml-graph, cubicle)[home-page]: Likewise.
* gnu/packages/opencl.scm (python-pyopencl)[home-page]: Likewise.
* gnu/packages/package-management.scm (xstow, modules)[home-page]:
Likewise.
* gnu/packages/parallel.scm (xjobs)[home-page]: Likewise.
* gnu/packages/pdf.scm (podofo, qpdf, xournal, impressive)[home-page]:
Likewise.
* gnu/packages/perl.scm (perl-math-vecstat, perltidy)[home-page]:
Likewise.
* gnu/packages/photo.scm (libpano13, enblend-enfuse, hugin)[home-page]:
Likewise.
* gnu/packages/plan9.scm (drawterm)[home-page]: Likewise.
* gnu/packages/plotutils.scm (guile-charting, ploticus)[home-page]:
Likewise.
* gnu/packages/popt.scm (argtable, popt)[home-page]: Likewise.
* gnu/packages/profiling.scm (otf2)[home-page]: Likewise.
* gnu/packages/pulseaudio.scm (pulseaudio)[home-page]: Likewise.
* gnu/packages/python-check.scm (python-mypy)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-cssutils)
(python-translationstring)[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-diskcache, python-doxyqml)
(python-docutils, python-pexpect, python-importlib-resources)
(python-simplegeneric, python-urwid, python-xlrd, python-xlwt)
(python-pyasn1, python-pythondialog, python-tftpy, python-random2)
(python-arcp, python-pyopengl, python-sortedcollections)
(python-sortedcontainers, python-yapsy, python-pydispatcher)
(python-posix-ipc)[home-page]: Likewise.
* gnu/packages/qt.scm (qwt, libqglviewer, signond)[home-page]: Likewise.
* gnu/packages/radio.scm (unixcw, gnuais)[home-page]: Likewise.
* gnu/packages/raspberry-pi.scm (bcm2835)[home-page]: Likewise.
* gnu/packages/rdf.scm (clucene, rasqal, redland)[home-page]: Likewise.
* gnu/packages/regex.scm (tre)[home-page]: Likewise.
* gnu/packages/rsync.scm (librsync)[home-page]: Likewise.
* gnu/packages/ruby.scm (ruby-packnga, ruby-nokogiri, ruby-oj, ruby-ox)
(ruby-sinatra, ruby-citrus, ruby-cbor, ruby-roda)[home-page]: Likewise.
* gnu/packages/scheme.scm (scheme48, tinyscheme)[home-page]: Likewise.
* gnu/packages/screen.scm (dtach)[home-page]: Likewise.
* gnu/packages/scsi.scm (sg3-utils)[home-page]: Likewise.
* gnu/packages/sdl.scm (libmikmod, sdl-pango)[home-page]: Likewise.
* gnu/packages/shellutils.scm (hstr, rig)[home-page]: Likewise.
* gnu/packages/simulation.scm (python-dolfin-adjoint)[home-page]:
Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[home-page]: Likewise.
* gnu/packages/speech.scm (espeak)[home-page]: Likewise.
* gnu/packages/stalonetray.scm (stalonetray)[home-page]: Likewise.
* gnu/packages/statistics.scm (jags, r-mass, r-class, r-lattice)
(r-matrix, r-nnet, r-spatial, r-bit, r-bit64, r-digest, r-xtable)
(python-statsmodels, r-ade4, r-latticeextra, r-rcurl, r-xml, r-mvtnorm)
(r-robustbase, r-minqa, r-fdrtool, java-jdistlib, xlispstat)[home-page]:
Likewise.
* gnu/packages/swig.scm (swig)[home-page]: Likewise.
* gnu/packages/task-management.scm (wtime)[home-page]: Likewise.
* gnu/packages/tcl.scm (itcl, tclxml, tclx)[home-page]: Likewise.
* gnu/packages/terminals.scm (libtermkey, mlterm, libvterm)
(libvterm)[home-page]: Likewise.
* gnu/packages/tex.scm (texlive-lm, texlive-lm-math, texlive-cs)
(texlive-csplain, biber, texmaker)[home-page]: Likewise.
* gnu/packages/text-editors.scm (joe)[home-page]: Likewise.
* gnu/packages/textutils.scm (drm-tools, docx2txt)[home-page]: Likewise.
* gnu/packages/tv.scm (tvtime)[home-page]: Likewise.
* gnu/packages/unicode.scm (libunibreak)[home-page]: Likewise.
* gnu/packages/upnp.scm (libupnp)[home-page]: Likewise.
* gnu/packages/version-control.scm (cvs)[home-page]: Likewise.
* gnu/packages/video.scm (transcode, libquicktime, mjpegtools, aalib)
(liba52, libmpeg2, x265, libdv, dvdauthor, aegisub, pitivi, gavl)
(dvdbackup, guvcview, video-contact-sheet)[home-page]: Likewise.
* gnu/packages/virtualization.scm (bochs)[home-page]: Likewise.
* gnu/packages/w3m.scm (w3m)[home-page]: Likewise.
* gnu/packages/web.scm (qjson, libquvi-scripts, libquvi, quvi)
(tidy-html, htmlcxx)[home-page]: Likewise.
* gnu/packages/wm.scm (evilwm, menumaker)[home-page]: Likewise.
* gnu/packages/wv.scm (wv)[home-page]: Likewise.
* gnu/packages/wxwidgets.scm (wxsvg)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (mtdev, xsel)[home-page]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Likewise.
* gnu/packages/xml.scm (openjade, python-pyxb, xmlstarlet, xmlrpc-c)
(opensp)[home-page]: Likewise.
* gnu/packages/xorg.scm (xf86-video-qxl)[home-page]: Likewise.
2023-02-12 00:00:00 +00:00
|
|
|
|
(home-page "https://libwpd.sourceforge.net/")
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(synopsis "Library for importing WordPerfect documents")
|
|
|
|
|
(description "Libwpd is a C++ library designed to help process
|
|
|
|
|
WordPerfect documents. It is most commonly used to import such documents
|
|
|
|
|
into other word processors.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual-licensed
|
2015-05-03 20:43:48 +00:00
|
|
|
|
|
|
|
|
|
(define-public libe-book
|
|
|
|
|
(package
|
|
|
|
|
(name "libe-book")
|
2018-02-28 19:42:54 +00:00
|
|
|
|
(version "0.1.3")
|
2015-05-03 20:43:48 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/libebook/libe-book-"
|
|
|
|
|
version "/libe-book-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
2021-08-08 10:59:08 +00:00
|
|
|
|
(base32
|
|
|
|
|
"1yg1vws1wggzhjw672bpgh2x541g5i9wryf67g51m0r79zrqz3by"))
|
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
|
|
|
|
;; This can be removed with the next release.
|
|
|
|
|
;; Needed for icu4c compatibility >= 68.0.
|
|
|
|
|
(substitute* "src/lib/EBOOKCharsetConverter.cpp"
|
|
|
|
|
(("TRUE, TRUE, &status")
|
|
|
|
|
"true, true, &status"))))))
|
2015-05-03 20:43:48 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list cppunit gperf pkg-config))
|
2015-05-16 19:31:12 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list icu4c liblangtag librevenge libxml2))
|
2015-05-16 19:31:12 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost))
|
2015-05-03 20:43:48 +00:00
|
|
|
|
(arguments
|
|
|
|
|
;; avoid triggering configure errors by simple inclusion of boost headers
|
|
|
|
|
`(#:configure-flags '("--disable-werror")))
|
|
|
|
|
(home-page "http://libebook.sourceforge.net")
|
|
|
|
|
(synopsis "Library for import of reflowable e-book formats")
|
|
|
|
|
(description "Libe-book is a library and a set of tools for reading and
|
|
|
|
|
converting various reflowable e-book formats. Currently supported are:
|
|
|
|
|
Broad Band eBook, eReader .pdb, FictionBook v. 2 (including zipped files),
|
|
|
|
|
PalmDoc Ebook, Plucker .pdb, QiOO (mobile format, for java-enabled
|
|
|
|
|
cellphones), TCR (simple compressed text format), TealDoc, zTXT,
|
|
|
|
|
ZVR (simple compressed text format).")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-04 20:27:32 +00:00
|
|
|
|
|
2018-06-07 06:30:41 +00:00
|
|
|
|
(define-public libepubgen
|
|
|
|
|
(package
|
|
|
|
|
(name "libepubgen")
|
|
|
|
|
(version "0.1.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/libepubgen/libepubgen-"
|
|
|
|
|
version "/libepubgen-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1b8mc9zzrqypj1v9zdy3ybc48pw0rfr06cyi7n6grvybjjwq9q03"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list cppunit pkg-config))
|
2018-06-07 06:30:41 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list libxml2 boost))
|
2018-06-07 06:30:41 +00:00
|
|
|
|
(propagated-inputs ; in Requires field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list librevenge))
|
2018-06-07 06:30:41 +00:00
|
|
|
|
(home-page "https://sourceforge.net/projects/libepubgen/")
|
|
|
|
|
(synopsis "EPUB generator library for librevenge")
|
|
|
|
|
(description "libepubgen is an EPUB generator for librevenge. It supports
|
|
|
|
|
librevenge's text document interface and--currently in a very limited
|
|
|
|
|
way--presentation and vector drawing interfaces.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2018-06-07 06:30:41 +00:00
|
|
|
|
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(define-public libwpg
|
|
|
|
|
(package
|
|
|
|
|
(name "libwpg")
|
2019-03-16 18:08:04 +00:00
|
|
|
|
(version "0.3.3")
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-03-16 18:01:23 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/libwpg/libwpg/"
|
|
|
|
|
"libwpg-" version "/libwpg-" version ".tar.xz"))
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(sha256 (base32
|
2019-03-16 18:08:04 +00:00
|
|
|
|
"074x159immf139szkswv2zapnq75p7xk10dbha2p9193hgwggcwr"))))
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list doxygen pkg-config))
|
2015-05-16 19:34:14 +00:00
|
|
|
|
(propagated-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list libwpd)) ; in Requires field of .pkg
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list perl zlib))
|
gnu: Use HTTPS package home pages wherever possible.
* gnu/packages/accessibility.scm (florence)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (netcat, nmon)[home-page]: Likewise.
* gnu/packages/algebra.scm (mpfrcx, cm, flint, fftw, r-dtt)[home-page]:
Likewise.
* gnu/packages/apr.scm (apr, apr-util)[home-page]: Likewise.
* gnu/packages/aspell.scm (aspell-dict-it)[home-page]: Likewise.
* gnu/packages/astronomy.scm (casacore, sextractor, libnova)
(xplanet)[home-page]: Likewise.
* gnu/packages/audio.scm (libtimidity, alsa-modular-synth, azr3, tao)
(freepats, rakarrack, liblo, libshout-idjc, timidity++, libsbsms)
(libmodplug, libxmp, xmp, sox, drc, gsm, gnaural)
(streamripper)[home-page]: Likewise.
* gnu/packages/authentication.scm (pamtester)[home-page]: Likewise.
* gnu/packages/backup.scm (grsync)[home-page]: Likewise.
* gnu/packages/bioconductor.scm (r-nmf, r-edger, r-limma)
(r-plgem)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (python-biom-format, bowtie, bowtie1)
(bwa, crossmap, java-htsjdk, java-htsjdk-latest, java-picard)
(java-picard-2.10.3, kaiju, proteinortho, rsem, rseqc, seek, samtools)
(snap-aligner, subread, stringtie, r-centipede, prinseq, emboss, phylip)
(libsbml)[home-page]: Likewise.
* gnu/packages/build-tools.scm (tup)[home-page]: Likewise.
* gnu/packages/cdrom.scm (libcddb, cdrdao, cdrtools)
(cd-discid)[home-page]: Likewise.
* gnu/packages/check.scm (cunit, python-nose)
(python-pyhamcrest)[home-page]: Likewise.
* gnu/packages/chemistry.scm (gromacs)[home-page]: Likewise.
* gnu/packages/chez.scm (chez-fmt)[home-page]: Likewise.
* gnu/packages/code.scm (lcov, uncrustify, cscope)[home-page]: Likewise.
* gnu/packages/compression.scm (p7zip)[home-page]: Likewise.
* gnu/packages/cran.scm (r-emdist, r-proj4, r-zoo, r-ggalluvial)
(r-orgmassspecr, r-polychrome, r-partykit, r-rcpp, r-ff, r-emdbook)
(r-fitdistrplus, r-linprog, r-geometry, r-dtw, r-fst, r-rjags)
(r-intergraph, r-qualv, r-labelled, r-survey, r-coin, r-fmsb, r-tm)
(r-corpcor, r-rmpfr, r-spatialextremes, r-longitudinal, r-genenet)
(r-bayesm, r-seqinr, r-mpm, r-text2vec, r-rgdal, r-seewave, r-hdrcde)
(r-shapes, r-anytime, r-stm, r-d3network, r-tam, r-directlabels)
(r-spatstat-utils, r-spatstat-sparse, r-spatstat-data, r-spatstat-geom)
(r-spatstat-core, r-spatstat-linnet, r-spatstat-random, r-spatstat)
(r-rcpptoml, r-mlecens, r-seurat, r-mlearning, r-zooimage)[home-page]:
Likewise.
* gnu/packages/crates-io.scm (rust-nickel-0.11, rust-thrift-0.13)
(rust-trust-dns-https-0.20, rust-trust-dns-native-tls-0.20)
(rust-trust-dns-openssl-0.20, rust-trust-dns-proto-0.20)
(rust-trust-dns-resolver-0.20, rust-trust-dns-rustls-0.20)
(rust-uint-0.9, rust-yaml-rust-0.4)[home-page]: Likewise.
* gnu/packages/crypto.scm (libdecaf, ccrypt)[home-page]: Likewise.
* gnu/packages/curl.scm (curlpp)[home-page]: Likewise.
* gnu/packages/databases.scm (python-pylibmc, unixodbc, wiredtiger)
(libpqxx, mdbtools, virtuoso-ose, libdbi, libdbi-drivers)
(soci)[home-page]: Likewise.
* gnu/packages/debian.scm (apt-mirror)[home-page]: Likewise.
* gnu/packages/debug.scm (remake)[home-page]: Likewise.
* gnu/packages/disk.scm (sdparm, idle3-tools, duc)[home-page]: Likewise.
* gnu/packages/django.scm (python-django-haystack)[home-page]: Likewise.
* gnu/packages/djvu.scm (djvulibre, djview)[home-page]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[home-page]: Likewise.
* gnu/packages/docbook.scm (dblatex, docbook2x)[home-page]: Likewise.
* gnu/packages/documentation.scm (scrollkeeper)[home-page]: Likewise.
* gnu/packages/ebook.scm (liblinebreak)[home-page]: Likewise.
* gnu/packages/electronics.scm (xoscope)[home-page]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-bbdb, emacs-caps-lock, emacs-djvu)
(emacs-pabbrev, emacs-twittering-mode, emacs-filladapt, emacs-rudel)
(emacs-stream, emacspeak, emacs-cc-mode, emacs-eldoc, emacs-jsonrpc)
(emacs-gtk-look, emacs-xclip, emacs-slime-volleyball, emacs-minimap)
(emacs-auto-dictionary-mode, emacs-persist, emacs-shell-command+)
(emacs-map, emacs-xref, emacs-dictionary)[home-page]: Likewise.
* gnu/packages/embedded.scm (sdcc)[home-page]: Likewise.
* gnu/packages/engineering.scm (asco, libngspice, libspnav)
(openctm)[home-page]: Likewise.
* gnu/packages/erlang.scm (erlang-erlware-commons)[home-page]: Likewise.
* gnu/packages/file-systems.scm (jfsutils, curlftpfs)[home-page]:
Likewise.
* gnu/packages/finance.scm (gbonds)[home-page]: Likewise.
* gnu/packages/flashing-tools.scm (dfu-util, srecord)[home-page]:
Likewise.
* gnu/packages/fltk.scm (ntk)[home-page]: Likewise.
* gnu/packages/fonts.scm (font-terminus, font-tex-gyre)
(font-comic-neue)[home-page]: Likewise.
* gnu/packages/fontutils.scm (ttf2pt1, potrace, libspiro)[home-page]:
Likewise.
* gnu/packages/fpga.scm (icestorm, gtkwave, gtkwave)
(python-myhdl)[home-page]: Likewise.
* gnu/packages/freedesktop.scm (libatasmart)[home-page]: Likewise.
* gnu/packages/ftp.scm (weex)[home-page]: Likewise.
* gnu/packages/game-development.scm (dds, python-tmx, sfxr, quesoglc)
(eureka, plib)[home-page]: Likewise.
* gnu/packages/games.scm (abe, alex4, armagetronad, barony)
(foobillard++, golly, ltris, pipewalker, prboom-plus, trigger-rally)
(cmatrix, pinball, pioneers, tennix, chromium-bsu, freeciv, kiki)
(quakespasm, frotz, frotz-dumb-terminal, frotz-sdl, btanks)
(flare-engine, chessx, barrage, cgoban, passage)[home-page]: Likewise.
* gnu/packages/geo.scm (python-geopandas, saga)[home-page]: Likewise.
* gnu/packages/gl.scm (freeglut, gl2ps)[home-page]: Likewise.
* gnu/packages/gnome.scm (cogl, clutter-gtk, clutter-gst, bluefish)
(workrave)[home-page]: Likewise.
* gnu/packages/gnustep.scm (wmnd, wmfire, wmfire)[home-page]: Likewise.
* gnu/packages/graph.scm (mscgen)[home-page]: Likewise.
* gnu/packages/graphics.scm (assimp, alembic, ctl, agg)
(opencsg)[home-page]: Likewise.
* gnu/packages/graphviz.scm (gts)[home-page]: Likewise.
* gnu/packages/gtk.scm (gtkspell3)[home-page]: Likewise.
* gnu/packages/guile-xyz.scm (guile-irregex)[home-page]: Likewise.
* gnu/packages/haskell-apps.scm (cpphs)[home-page]: Likewise.
* gnu/packages/haskell-check.scm (ghc-hunit)[home-page]: Likewise.
* gnu/packages/haskell-web.scm (ghc-http-client-restricted)
(ghc-blaze-html, ghc-happstack-server, ghc-sourcemap)[home-page]:
Likewise.
* gnu/packages/haskell-xyz.scm (ghc-assoc, ghc-cairo, ghc-cborg)
(ghc-csv, ghc-glob, ghc-gtk2hs-buildtools, ghc-hmatrix-gsl-stats)
(ghc-intervalmap, ghc-lens-family-core, ghc-managed, ghc-mountpoints)
(ghc-network-multicast, ghc-optional-args, ghc-regex, ghc-spoon)
(ghc-transformers, ghc-turtle, ghc-utf8-light, ghc-wizards)
(ghc-template-haskell, ghc-boot-th, ghc-binary-orphans)
(ghc-postgresql-simple)[home-page]: Likewise.
* gnu/packages/hexedit.scm (ht, bvi)[home-page]: Likewise.
* gnu/packages/hunspell.scm (hunspell-dict-hu)[home-page]: Likewise.
* gnu/packages/image-processing.scm (mia)[home-page]: Likewise.
* gnu/packages/image-viewers.scm (geeqie, gpicview, luminance-hdr)
(qiv)[home-page]: Likewise.
* gnu/packages/image.scm (libuemf, devil, steghide, optipng, niftilib)
(sng, mtpaint)[home-page]: Likewise.
* gnu/packages/java-xml.scm (java-simple-xml, java-jaxp)
(java-apache-xml-commons-resolver)[home-page]: Likewise.
* gnu/packages/java.scm (java-cisd-base, java-cisd-args4j)
(java-hamcrest-core, java-jsr305, java-eclipse-osgi)
(java-eclipse-equinox-common, java-eclipse-core-jobs)
(java-eclipse-equinox-registry, java-eclipse-equinox-app)
(java-eclipse-equinox-preferences, java-eclipse-core-contenttype)
(java-eclipse-text, java-treelayout, java-aopalliance, java-jeromq)
(java-cdi-api)[home-page]: Likewise.
* gnu/packages/jemalloc.scm (jemalloc-4.5.0)[home-page]: Likewise.
* gnu/packages/julia-xyz.scm (julia-recipespipeline)[home-page]:
Likewise.
* gnu/packages/kde-internet.scm (kget)[home-page]: Likewise.
* gnu/packages/kde-systemtools.scm (dolphin-plugins)
(konsole)[home-page]: Likewise.
* gnu/packages/kodi.scm (fstrcmp)[home-page]: Likewise.
* gnu/packages/language.scm (hime, libchewing)[home-page]: Likewise.
* gnu/packages/lego.scm (nqc)[home-page]: Likewise.
* gnu/packages/lesstif.scm (lesstif)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[home-page]: Likewise.
* gnu/packages/libdaemon.scm (libdaemon)[home-page]: Likewise.
* gnu/packages/libffi.scm (libffi)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (libwpd, libwpg, libwps)[home-page]:
Likewise.
* gnu/packages/libusb.scm (libmtp, gmtp)[home-page]: Likewise.
* gnu/packages/linux.scm (e2fsprogs, extundelete, lsscsi, net-tools)
(kbd, sysfsutils, cpuid, libpfm4)[home-page]: Likewise.
* gnu/packages/lisp-check.scm (sbcl-ptester, sbcl-xlunit)[home-page]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-html-encode, sbcl-py-configparser)
(sbcl-cl-utilities, sbcl-series, sbcl-uffi, sbcl-clsql, sbcl-sycamore)
(sbcl-osicat, sbcl-hu.dwim.common, sbcl-caveman, sbcl-trivial-shell)
(sbcl-trivial-benchmark, sbcl-screamer, sbcl-smug)[home-page]: Likewise.
* gnu/packages/lisp.scm (lush2)[home-page]: Likewise.
* gnu/packages/logging.scm (log4cpp)[home-page]: Likewise.
* gnu/packages/lua.scm (lua-ldoc)[home-page]: Likewise.
* gnu/packages/machine-learning.scm (mcl, openfst, rxcpp)[home-page]:
Likewise.
* gnu/packages/mail.scm (muchsync, procmail, sendmail)
(opensmtpd-filter-dkimsign, crm114)[home-page]: Likewise.
* gnu/packages/man.scm (libpipeline, man-db)[home-page]: Likewise.
* gnu/packages/maths.scm (lapack, scalapack, hdf-eos5, itpp, gmsh)
(metamath, p4est, armadillo, suitesparse, atlas, lpsolve, wcalc, why3)
(frama-c)[home-page]: Likewise.
* gnu/packages/mcrypt.scm (mcrypt, libmcrypt, libmhash)[home-page]:
Likewise.
* gnu/packages/minetest.scm (minetest-advtrains)[home-page]: Likewise.
* gnu/packages/monitoring.scm (python-whisper, python-carbon)
(hostscope)[home-page]: Likewise.
* gnu/packages/mp3.scm (id3lib, libmp3splt, mp3splt, mpg321)
(lame)[home-page]: Likewise.
* gnu/packages/multiprecision.scm (mpc)[home-page]: Likewise.
* gnu/packages/music.scm (aria-maestosa, lingot, setbfree, bristol)
(portmidi, python-pyportmidi, zynaddsubfx, yoshimi, aj-snapshot)
(schismtracker, midicsv, midicsv, qmidiarp, qmidiroute, dssi, tap-lv2)
(shiru-lv2)[home-page]: Likewise.
* gnu/packages/ncurses.scm (stfl)[home-page]: Likewise.
* gnu/packages/networking.scm (lksctp-tools, mbuffer, ifstatus, bird)
(tunctl, traceroute)[home-page]: Likewise.
* gnu/packages/node-xyz.scm (node-mersenne)[home-page]: Likewise.
* gnu/packages/ntp.scm (openntpd)[home-page]: Likewise.
* gnu/packages/ocaml.scm (opam, hevea, ocaml-menhir, ocaml-piqilib)
(ocaml-graph, cubicle)[home-page]: Likewise.
* gnu/packages/opencl.scm (python-pyopencl)[home-page]: Likewise.
* gnu/packages/package-management.scm (xstow, modules)[home-page]:
Likewise.
* gnu/packages/parallel.scm (xjobs)[home-page]: Likewise.
* gnu/packages/pdf.scm (podofo, qpdf, xournal, impressive)[home-page]:
Likewise.
* gnu/packages/perl.scm (perl-math-vecstat, perltidy)[home-page]:
Likewise.
* gnu/packages/photo.scm (libpano13, enblend-enfuse, hugin)[home-page]:
Likewise.
* gnu/packages/plan9.scm (drawterm)[home-page]: Likewise.
* gnu/packages/plotutils.scm (guile-charting, ploticus)[home-page]:
Likewise.
* gnu/packages/popt.scm (argtable, popt)[home-page]: Likewise.
* gnu/packages/profiling.scm (otf2)[home-page]: Likewise.
* gnu/packages/pulseaudio.scm (pulseaudio)[home-page]: Likewise.
* gnu/packages/python-check.scm (python-mypy)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-cssutils)
(python-translationstring)[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-diskcache, python-doxyqml)
(python-docutils, python-pexpect, python-importlib-resources)
(python-simplegeneric, python-urwid, python-xlrd, python-xlwt)
(python-pyasn1, python-pythondialog, python-tftpy, python-random2)
(python-arcp, python-pyopengl, python-sortedcollections)
(python-sortedcontainers, python-yapsy, python-pydispatcher)
(python-posix-ipc)[home-page]: Likewise.
* gnu/packages/qt.scm (qwt, libqglviewer, signond)[home-page]: Likewise.
* gnu/packages/radio.scm (unixcw, gnuais)[home-page]: Likewise.
* gnu/packages/raspberry-pi.scm (bcm2835)[home-page]: Likewise.
* gnu/packages/rdf.scm (clucene, rasqal, redland)[home-page]: Likewise.
* gnu/packages/regex.scm (tre)[home-page]: Likewise.
* gnu/packages/rsync.scm (librsync)[home-page]: Likewise.
* gnu/packages/ruby.scm (ruby-packnga, ruby-nokogiri, ruby-oj, ruby-ox)
(ruby-sinatra, ruby-citrus, ruby-cbor, ruby-roda)[home-page]: Likewise.
* gnu/packages/scheme.scm (scheme48, tinyscheme)[home-page]: Likewise.
* gnu/packages/screen.scm (dtach)[home-page]: Likewise.
* gnu/packages/scsi.scm (sg3-utils)[home-page]: Likewise.
* gnu/packages/sdl.scm (libmikmod, sdl-pango)[home-page]: Likewise.
* gnu/packages/shellutils.scm (hstr, rig)[home-page]: Likewise.
* gnu/packages/simulation.scm (python-dolfin-adjoint)[home-page]:
Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[home-page]: Likewise.
* gnu/packages/speech.scm (espeak)[home-page]: Likewise.
* gnu/packages/stalonetray.scm (stalonetray)[home-page]: Likewise.
* gnu/packages/statistics.scm (jags, r-mass, r-class, r-lattice)
(r-matrix, r-nnet, r-spatial, r-bit, r-bit64, r-digest, r-xtable)
(python-statsmodels, r-ade4, r-latticeextra, r-rcurl, r-xml, r-mvtnorm)
(r-robustbase, r-minqa, r-fdrtool, java-jdistlib, xlispstat)[home-page]:
Likewise.
* gnu/packages/swig.scm (swig)[home-page]: Likewise.
* gnu/packages/task-management.scm (wtime)[home-page]: Likewise.
* gnu/packages/tcl.scm (itcl, tclxml, tclx)[home-page]: Likewise.
* gnu/packages/terminals.scm (libtermkey, mlterm, libvterm)
(libvterm)[home-page]: Likewise.
* gnu/packages/tex.scm (texlive-lm, texlive-lm-math, texlive-cs)
(texlive-csplain, biber, texmaker)[home-page]: Likewise.
* gnu/packages/text-editors.scm (joe)[home-page]: Likewise.
* gnu/packages/textutils.scm (drm-tools, docx2txt)[home-page]: Likewise.
* gnu/packages/tv.scm (tvtime)[home-page]: Likewise.
* gnu/packages/unicode.scm (libunibreak)[home-page]: Likewise.
* gnu/packages/upnp.scm (libupnp)[home-page]: Likewise.
* gnu/packages/version-control.scm (cvs)[home-page]: Likewise.
* gnu/packages/video.scm (transcode, libquicktime, mjpegtools, aalib)
(liba52, libmpeg2, x265, libdv, dvdauthor, aegisub, pitivi, gavl)
(dvdbackup, guvcview, video-contact-sheet)[home-page]: Likewise.
* gnu/packages/virtualization.scm (bochs)[home-page]: Likewise.
* gnu/packages/w3m.scm (w3m)[home-page]: Likewise.
* gnu/packages/web.scm (qjson, libquvi-scripts, libquvi, quvi)
(tidy-html, htmlcxx)[home-page]: Likewise.
* gnu/packages/wm.scm (evilwm, menumaker)[home-page]: Likewise.
* gnu/packages/wv.scm (wv)[home-page]: Likewise.
* gnu/packages/wxwidgets.scm (wxsvg)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (mtdev, xsel)[home-page]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Likewise.
* gnu/packages/xml.scm (openjade, python-pyxb, xmlstarlet, xmlrpc-c)
(opensp)[home-page]: Likewise.
* gnu/packages/xorg.scm (xf86-video-qxl)[home-page]: Likewise.
2023-02-12 00:00:00 +00:00
|
|
|
|
(home-page "https://libwpg.sourceforge.net/")
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(synopsis "Library and tools for the WordPerfect Graphics format")
|
|
|
|
|
(description "The libwpg project provides a library and tools for
|
|
|
|
|
working with graphics in the WPG (WordPerfect Graphics) format.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual-licensed
|
2015-05-06 19:18:32 +00:00
|
|
|
|
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(define-public libcmis
|
|
|
|
|
(package
|
|
|
|
|
(name "libcmis")
|
2022-08-10 20:38:05 +00:00
|
|
|
|
;; Note: Use an unreleased version because libreoffice requires it and
|
|
|
|
|
;; is the only user (see <https://github.com/tdf/libcmis/pull/43>).
|
2024-03-25 16:54:36 +00:00
|
|
|
|
(version "0.6.2")
|
2022-08-10 20:38:05 +00:00
|
|
|
|
(home-page "https://github.com/tdf/libcmis")
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
2022-08-10 20:38:05 +00:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference (url home-page)
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2024-03-25 16:54:36 +00:00
|
|
|
|
"0g0wr31gfhxcdfvr0l36zallz349rrxd2d8n03b0b5ffm10b4y0x"))))
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2022-08-10 20:38:05 +00:00
|
|
|
|
(list autoconf automake libtool cppunit pkg-config))
|
|
|
|
|
(propagated-inputs ;in Requires field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list curl libxml2))
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost cyrus-sasl openssl))
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(arguments
|
2022-08-10 20:38:05 +00:00
|
|
|
|
(list
|
|
|
|
|
#:configure-flags
|
|
|
|
|
#~(list
|
|
|
|
|
;; FIXME: Man pages generation requires docbook-to-man; reenable
|
|
|
|
|
;; it once this is available.
|
|
|
|
|
"--without-man"
|
|
|
|
|
;; XXX: A configure test fails with GCC7 when including Boost headers.
|
2024-03-25 16:54:36 +00:00
|
|
|
|
"--disable-werror")
|
2022-08-10 20:38:05 +00:00
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(replace 'bootstrap
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Override the bootstrap phase as the ancient autogen.sh
|
|
|
|
|
;; script exits with a non-zero code when NOCONFIGURE=1.
|
|
|
|
|
(invoke "autoreconf" "-vif"))))))
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(synopsis "CMIS client library")
|
|
|
|
|
(description "LibCMIS is a C++ client library for the CMIS interface. It
|
|
|
|
|
allows C++ applications to connect to any ECM behaving as a CMIS server such
|
|
|
|
|
as Alfresco or Nuxeo.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license
|
|
|
|
|
(list license:mpl1.1 license:gpl2+ license:lgpl2.1+)))) ; triple license
|
2015-05-14 15:24:03 +00:00
|
|
|
|
|
2015-05-06 19:18:32 +00:00
|
|
|
|
(define-public libabw
|
|
|
|
|
(package
|
|
|
|
|
(name "libabw")
|
2019-09-04 18:28:21 +00:00
|
|
|
|
(version "0.1.3")
|
2015-05-06 19:18:32 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-08-21 19:55:08 +00:00
|
|
|
|
(uri (string-append "https://dev-www.libreoffice.org/src/libabw/"
|
|
|
|
|
"libabw-" version ".tar.xz"))
|
2015-05-06 19:18:32 +00:00
|
|
|
|
(sha256 (base32
|
2019-09-04 18:28:21 +00:00
|
|
|
|
"1vbfrmnvib3cym0yyyabnd8xpx4f7wp20vnn09s6dln347fajqz7"))))
|
2015-05-06 19:18:32 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list doxygen gperf perl pkg-config))
|
2015-05-16 19:50:00 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list librevenge libxml2))
|
2015-05-16 19:50:00 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost))
|
2015-05-06 19:18:32 +00:00
|
|
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libabw")
|
|
|
|
|
(synopsis "Library for parsing the AbiWord format")
|
|
|
|
|
(description "Libabw is a library that parses the file format of
|
|
|
|
|
AbiWord documents.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 19:34:49 +00:00
|
|
|
|
|
|
|
|
|
(define-public libcdr
|
|
|
|
|
(package
|
|
|
|
|
(name "libcdr")
|
2021-05-15 13:42:10 +00:00
|
|
|
|
(version "0.1.7")
|
2015-05-06 19:34:49 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-01-02 22:11:36 +00:00
|
|
|
|
(uri (string-append "https://dev-www.libreoffice.org/src/" name "/"
|
2015-05-06 19:34:49 +00:00
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2021-05-15 13:42:10 +00:00
|
|
|
|
"1m6dirmyhqwnrpv80z97x5k5hdh4kh8a8zlq3smbjrilc6fj8rjn"))))
|
2015-05-06 19:34:49 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list cppunit doxygen pkg-config))
|
2015-05-16 19:54:02 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list icu4c lcms librevenge zlib))
|
2015-05-16 19:54:02 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost))
|
2015-05-06 19:34:49 +00:00
|
|
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libcdr")
|
|
|
|
|
(synopsis "Library for parsing the CorelDRAW format")
|
|
|
|
|
(description "Libcdr is a library that parses the file format of
|
|
|
|
|
CorelDRAW documents of all versions.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 19:42:51 +00:00
|
|
|
|
|
|
|
|
|
(define-public libetonyek
|
|
|
|
|
(package
|
|
|
|
|
(name "libetonyek")
|
2021-05-23 13:04:52 +00:00
|
|
|
|
(version "0.1.10")
|
2015-05-06 19:42:51 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
|
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2021-05-23 13:04:52 +00:00
|
|
|
|
"16hy60ws29pb4pz3z5l4920yn9hnk2vlij0xfs5qi1w4drd46c5l"))))
|
2015-05-06 19:42:51 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2017-03-27 18:16:32 +00:00
|
|
|
|
(arguments
|
2022-08-10 19:39:25 +00:00
|
|
|
|
(list #:configure-flags
|
|
|
|
|
#~(list (string-append "--with-mdds="
|
|
|
|
|
#$(version-major+minor
|
|
|
|
|
(package-version
|
|
|
|
|
(this-package-input "mdds")))))))
|
2015-05-06 19:42:51 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list cppunit doxygen gperf pkg-config))
|
2015-05-16 19:57:18 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list liblangtag librevenge libxml2 zlib))
|
2015-05-16 19:57:18 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost glm mdds))
|
2015-05-06 19:42:51 +00:00
|
|
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libetonyek")
|
|
|
|
|
(synopsis "Library for parsing the Apple Keynote format")
|
|
|
|
|
(description "Libetonyek is a library that parses the file format of
|
|
|
|
|
Apple Keynote documents. It currently supports Keynote versions 2 to 5.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 19:47:45 +00:00
|
|
|
|
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(define-public liblangtag
|
|
|
|
|
(package
|
|
|
|
|
(name "liblangtag")
|
2022-11-20 00:00:01 +00:00
|
|
|
|
(version "0.6.4")
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://bitbucket.org/tagoh/liblangtag/downloads/"
|
2020-02-17 04:54:58 +00:00
|
|
|
|
"liblangtag-" version ".tar.bz2"))
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(sha256
|
2022-11-20 00:00:01 +00:00
|
|
|
|
(base32 "0r55r30ih8dgq1hwbpl834igilj7bpxcnmlrlkd3vryk2wn0c0ap"))))
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list libtool pkg-config))
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list libxml2))
|
2017-12-26 01:08:30 +00:00
|
|
|
|
(home-page "https://bitbucket.org/tagoh/liblangtag")
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(synopsis "Library to access tags for identifying languages")
|
|
|
|
|
(description "Liblangtag implements an interface to work with tags
|
|
|
|
|
for identifying languages as described in RFC 5646. It supports the
|
|
|
|
|
extensions described in RFC6067 and RFC6497, and Extension T for
|
|
|
|
|
language/locale identifiers as described in the Unicode CLDR
|
|
|
|
|
standard 21.0.2.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:lgpl3+ license:mpl2.0)))) ; dual license
|
2016-03-07 10:42:02 +00:00
|
|
|
|
|
2015-05-06 19:47:45 +00:00
|
|
|
|
(define-public libexttextcat
|
|
|
|
|
(package
|
|
|
|
|
(name "libexttextcat")
|
2017-10-08 15:27:12 +00:00
|
|
|
|
(version "3.4.5")
|
2015-05-06 19:47:45 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
|
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2017-10-08 15:27:12 +00:00
|
|
|
|
"1j6sjwkyhqvsgyw938bxxfwkzzi1mahk66g5342lv6j89jfvrz8k"))))
|
2015-05-06 19:47:45 +00:00
|
|
|
|
(build-system gnu-build-system)
|
gnu: Use HTTPS for supported freedesktop.org home pages.
* gnu/packages/fontutils.scm (fontconfig)[home-page]: Use HTTPS.
* gnu/packages/freedesktop.scm (python-pyxdg, accountsservice)
(modem-manager, telepathy-mission-control, telepathy-mission-control)
(colord-gtk, desktop-file-utils)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (libspectre)[home-page]: Likewise.
* gnu/packages/glib.scm (dbus, dbus-glib, telepathy-glib)[home-page]:
Likewise.
* gnu/packages/gnome.scm (shared-mime-info, hicolor-icon-theme)
(libxklavier, colord, upower)[home-page]: Likewise.
* gnu/packages/gstreamer.scm (orc, python-gst)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (sound-theme-freedesktop)[home-page]:
Likewise.
* gnu/packages/libreoffice.scm (libexttextcat)[home-page]: Likewise.
* gnu/packages/polkit.scm (polkit-gnome, polkit-gnome)[home-page]:
Likewise.
* gnu/packages/pulseaudio.scm (pavucontrol)[home-page]: Likewise.
* gnu/packages/python.scm (python-dbus)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (startup-notification)[home-page]: Likewise.
2018-02-24 12:44:26 +00:00
|
|
|
|
(home-page "https://www.freedesktop.org/wiki/Software/libexttextcat/")
|
2015-05-06 19:47:45 +00:00
|
|
|
|
(synopsis "Text Categorization library")
|
|
|
|
|
(description "Libexttextcat is an N-Gram-Based Text Categorization
|
|
|
|
|
library primarily intended for language guessing.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (license:non-copyleft "file://LICENSE"
|
|
|
|
|
"See LICENSE in the distribution."))))
|
2015-05-06 19:57:42 +00:00
|
|
|
|
|
|
|
|
|
(define-public libfreehand
|
|
|
|
|
(package
|
|
|
|
|
(name "libfreehand")
|
2017-10-08 15:28:19 +00:00
|
|
|
|
(version "0.1.2")
|
2015-05-06 19:57:42 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
|
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2017-10-08 15:28:19 +00:00
|
|
|
|
"1b1lvqh68rwij1yvmxy02hsmh7i74ma5767mk8mg5nx6chajshhf"))))
|
2015-05-06 19:57:42 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2019-12-06 18:13:27 +00:00
|
|
|
|
(arguments
|
2021-08-08 11:43:34 +00:00
|
|
|
|
'(#:configure-flags '("--disable-werror")
|
|
|
|
|
#:phases (modify-phases %standard-phases
|
2019-12-06 18:13:27 +00:00
|
|
|
|
(add-before 'build 'adjust-for-ICU-65
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Fix build with ICU 65 and later. Taken from this
|
|
|
|
|
;; upstream commit, remove for libfreehand > 0.1.2:
|
|
|
|
|
;; https://gerrit.libreoffice.org/#/c/80224/
|
|
|
|
|
(substitute* "src/lib/libfreehand_utils.cpp"
|
|
|
|
|
(("U16_NEXT.*" all)
|
|
|
|
|
(string-append all ";\n")))
|
|
|
|
|
#t)))))
|
2015-05-06 19:57:42 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list cppunit doxygen gperf perl pkg-config))
|
2017-10-08 15:28:19 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list icu4c lcms))
|
2015-05-16 19:59:46 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list librevenge zlib))
|
2015-05-06 19:57:42 +00:00
|
|
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libfreehand")
|
|
|
|
|
(synopsis "Library for parsing the FreeHand format")
|
|
|
|
|
(description "Libfreehand is a library that parses the file format of
|
|
|
|
|
Aldus/Macromedia/Adobe FreeHand documents.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 20:06:36 +00:00
|
|
|
|
|
|
|
|
|
(define-public libmspub
|
|
|
|
|
(package
|
|
|
|
|
(name "libmspub")
|
2018-02-28 19:38:37 +00:00
|
|
|
|
(version "0.1.4")
|
2015-05-06 20:06:36 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2018-02-28 19:38:37 +00:00
|
|
|
|
(uri (string-append "https://dev-www.libreoffice.org/src/" name "/"
|
2015-05-06 20:06:36 +00:00
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2021-08-08 11:51:38 +00:00
|
|
|
|
"1fhkn013gzg59f4z7rldpbi0nj7lgdqzxanspsqa6axvmahw2dpg"))
|
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
|
|
|
|
;; This can be removed with the next release.
|
|
|
|
|
;; https://gerrit.libreoffice.org/c/libmspub/+/73814
|
|
|
|
|
(substitute* "src/lib/MSPUBMetaData.h"
|
|
|
|
|
(("include <vector>" all)
|
|
|
|
|
(string-append all "\n#include <cstdint>")))))))
|
2015-05-06 20:06:36 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list doxygen pkg-config))
|
2015-05-16 20:01:25 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list icu4c librevenge zlib))
|
2015-05-16 20:01:25 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost))
|
2015-05-06 20:06:36 +00:00
|
|
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libmspub")
|
|
|
|
|
(synopsis "Library for parsing the Microsoft Publisher format")
|
|
|
|
|
(description "Libmspub is a library that parses the file format of
|
|
|
|
|
Microsoft Publisher documents of all versions.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
|
2018-09-11 05:58:36 +00:00
|
|
|
|
(define-public libnumbertext
|
|
|
|
|
(package
|
|
|
|
|
(name "libnumbertext")
|
2021-03-03 18:30:40 +00:00
|
|
|
|
(version "1.0.7")
|
2018-09-11 05:58:36 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-03-16 17:46:42 +00:00
|
|
|
|
(uri (string-append "https://github.com/Numbertext/libnumbertext/"
|
|
|
|
|
"releases/download/" version
|
|
|
|
|
"/libnumbertext-" version ".tar.xz"))
|
2018-09-11 05:58:36 +00:00
|
|
|
|
(sha256
|
2021-03-03 18:30:40 +00:00
|
|
|
|
(base32 "1z31idnmd9iv6ra5dcsn7q70wv32clk2sqc5bbhimqcsp2f29f0p"))))
|
2018-09-11 05:58:36 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("--disable-static")))
|
|
|
|
|
(home-page "https://github.com/Numbertext/libnumbertext")
|
|
|
|
|
(synopsis "Language-neutral @code{NUMBERTEXT} and @code{MONEYTEXT} functions")
|
|
|
|
|
(description
|
|
|
|
|
"The libnumbertext library provides language-neutral @code{NUMBERTEXT}
|
|
|
|
|
and @code{MONEYTEXT} functions for LibreOffice Calc, available for C++ and
|
|
|
|
|
Java.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:lgpl3+ license:bsd-3))))
|
2018-09-11 05:58:36 +00:00
|
|
|
|
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(define-public libpagemaker
|
|
|
|
|
(package
|
|
|
|
|
(name "libpagemaker")
|
2018-02-28 19:39:17 +00:00
|
|
|
|
(version "0.0.4")
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-04-23 12:11:24 +00:00
|
|
|
|
(uri (string-append "https://dev-www.libreoffice.org/src/libpagemaker/"
|
|
|
|
|
"libpagemaker-" version ".tar.xz"))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(sha256 (base32
|
2018-02-28 19:39:17 +00:00
|
|
|
|
"17ai8ajffr0ixxmmcv3k5vgjlcsix38ldb4fw2arild70pbsrbb6"))))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2019-02-11 13:17:08 +00:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("--disable-werror")))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list doxygen pkg-config))
|
2015-05-17 09:01:25 +00:00
|
|
|
|
(propagated-inputs ; in Requires field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list librevenge))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost zlib))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker")
|
|
|
|
|
(synopsis "Library for parsing the PageMaker format")
|
|
|
|
|
(description "Libpagemaker is a library that parses the file format of
|
|
|
|
|
Aldus/Adobe PageMaker documents. Currently it only understands documents
|
|
|
|
|
created by PageMaker version 6.x and 7.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 20:25:21 +00:00
|
|
|
|
|
|
|
|
|
(define-public libvisio
|
|
|
|
|
(package
|
|
|
|
|
(name "libvisio")
|
2019-09-04 18:28:42 +00:00
|
|
|
|
(version "0.1.7")
|
2015-05-06 20:25:21 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-04-23 12:11:31 +00:00
|
|
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/libvisio/"
|
|
|
|
|
"libvisio-" version ".tar.xz"))
|
2015-05-06 20:25:21 +00:00
|
|
|
|
(sha256 (base32
|
2019-09-04 18:28:42 +00:00
|
|
|
|
"0k7adcbbf27l7n453cca1m6s9yj6qvb5j6bsg2db09ybf3w8vbwg"))))
|
2015-05-06 20:25:21 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list cppunit doxygen gperf perl pkg-config))
|
2015-05-16 20:06:22 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list icu4c librevenge libxml2))
|
2015-05-16 20:06:22 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost))
|
2015-05-06 20:25:21 +00:00
|
|
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libvisio")
|
|
|
|
|
(synopsis "Library for parsing the Microsoft Visio format")
|
|
|
|
|
(description "Libvisio is a library that parses the file format of
|
|
|
|
|
Microsoft Visio documents of all versions.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-07 20:35:13 +00:00
|
|
|
|
|
|
|
|
|
(define-public libodfgen
|
|
|
|
|
(package
|
|
|
|
|
(name "libodfgen")
|
2021-03-03 18:30:32 +00:00
|
|
|
|
(version "0.1.8")
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-04-23 12:11:37 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/libwpd/libodfgen/"
|
|
|
|
|
"libodfgen-" version "/libodfgen-" version ".tar.xz"))
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(sha256 (base32
|
2021-03-03 18:30:32 +00:00
|
|
|
|
"0986c5gw4vdfz7bcmpdfz07inba5wxsx4f6xvndknqj6zlkh082m"))))
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list doxygen pkg-config))
|
2015-05-16 20:08:32 +00:00
|
|
|
|
(propagated-inputs ; in Requires field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list librevenge))
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost libxml2 zlib))
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(arguments
|
2021-03-03 18:30:32 +00:00
|
|
|
|
;; Avoid triggering configure errors by simple inclusion of Boost headers.
|
2015-05-07 20:35:13 +00:00
|
|
|
|
`(#:configure-flags '("--disable-werror")))
|
gnu: Use HTTPS for all sourceforge.net home pages.
* gnu/packages/admin.scm (mingetty, clusterssh)[home-page]: Use HTTPS.
* gnu/packages/audio.scm (libbs2b, soxr)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (bless)[home-page]: Likewise.
* gnu/packages/display-managers.scm (slim)[home-page]: Likewise.
* gnu/packages/games.scm (extremetuxracer)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (gs-fonts)[home-page]: Likewise.
* gnu/packages/haskell.scm (ghc-regex-base, ghc-regex-posix,
ghc-regex-compat)[home-page]: Likewise.
* gnu/packages/image.scm (imlib2)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (librevenge, libcmis, libodfgen, libmwaw)
[home-page]: Likewise.
* gnu/packages/linux.scm (hdparm, acpid, libavc1394, rng-tools)
[home-page]: Likewise.
* gnu/packages/mail.scm (esmtp)[home-page]: Likewise.
* gnu/packages/mp3.scm (ripperx)[home-page]: Likewise.
* gnu/packages/onc-rpc.scm (libtirpc)[home-page]: Likewise.
* gnu/packages/perl.scm (perl-czplib)[home-page]: Likewise.
* gnu/packages/python.scm (python-pyasn1-modules)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (xosd)[home-page]: Likewise.
2017-01-04 00:30:46 +00:00
|
|
|
|
(home-page "https://sourceforge.net/p/libwpd/wiki/libodfgen/")
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(synopsis "ODF (Open Document Format) library")
|
|
|
|
|
(description "Libodfgen is a library for generating documents in the
|
|
|
|
|
Open Document Format (ODF). It provides generator implementations for all
|
|
|
|
|
document interfaces supported by librevenge:
|
|
|
|
|
text documents, vector drawings, presentations and spreadsheets.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual license
|
2015-05-07 20:48:46 +00:00
|
|
|
|
|
|
|
|
|
(define-public libmwaw
|
|
|
|
|
(package
|
|
|
|
|
(name "libmwaw")
|
2022-11-27 07:35:27 +00:00
|
|
|
|
(version "0.3.21")
|
2015-05-07 20:48:46 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-04-23 12:11:42 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/libmwaw/libmwaw/libmwaw-"
|
|
|
|
|
version "/libmwaw-" version ".tar.xz"))
|
2020-10-03 13:34:47 +00:00
|
|
|
|
(sha256
|
2022-11-27 07:35:27 +00:00
|
|
|
|
(base32 "07629xwvlkqj08j13aj9lsq0pwm7r0v7g2zprr1vjqcdlwih2xg8"))))
|
2015-05-07 20:48:46 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list doxygen pkg-config))
|
2020-11-29 22:14:06 +00:00
|
|
|
|
(propagated-inputs ; in Requires field of .pc file
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list librevenge))
|
2015-05-07 20:48:46 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost zlib))
|
gnu: Use HTTPS for all sourceforge.net home pages.
* gnu/packages/admin.scm (mingetty, clusterssh)[home-page]: Use HTTPS.
* gnu/packages/audio.scm (libbs2b, soxr)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (bless)[home-page]: Likewise.
* gnu/packages/display-managers.scm (slim)[home-page]: Likewise.
* gnu/packages/games.scm (extremetuxracer)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (gs-fonts)[home-page]: Likewise.
* gnu/packages/haskell.scm (ghc-regex-base, ghc-regex-posix,
ghc-regex-compat)[home-page]: Likewise.
* gnu/packages/image.scm (imlib2)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (librevenge, libcmis, libodfgen, libmwaw)
[home-page]: Likewise.
* gnu/packages/linux.scm (hdparm, acpid, libavc1394, rng-tools)
[home-page]: Likewise.
* gnu/packages/mail.scm (esmtp)[home-page]: Likewise.
* gnu/packages/mp3.scm (ripperx)[home-page]: Likewise.
* gnu/packages/onc-rpc.scm (libtirpc)[home-page]: Likewise.
* gnu/packages/perl.scm (perl-czplib)[home-page]: Likewise.
* gnu/packages/python.scm (python-pyasn1-modules)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (xosd)[home-page]: Likewise.
2017-01-04 00:30:46 +00:00
|
|
|
|
(home-page "https://sourceforge.net/p/libmwaw/wiki/Home/")
|
2015-05-07 20:48:46 +00:00
|
|
|
|
(synopsis "Import library for some old Macintosh text documents")
|
|
|
|
|
(description "Libmwaw contains some import filters for old Macintosh
|
|
|
|
|
text documents (MacWrite, ClarisWorks, ... ) and for some graphics and
|
|
|
|
|
spreadsheet documents.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual license
|
2017-03-27 18:16:19 +00:00
|
|
|
|
|
|
|
|
|
(define-public libstaroffice
|
|
|
|
|
(package
|
|
|
|
|
(name "libstaroffice")
|
2020-10-03 13:34:54 +00:00
|
|
|
|
(version "0.0.7")
|
2017-03-27 18:16:19 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/fosnola/libstaroffice/releases/download/"
|
|
|
|
|
version "/libstaroffice-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2020-10-03 13:34:54 +00:00
|
|
|
|
"1ny8411273k2bq7mnpmcvri3rd46b2j67wfypqkp3y8nhanv0kzr"))))
|
2017-03-27 18:16:19 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list librevenge zlib))
|
2017-03-27 18:16:19 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list pkg-config))
|
2017-03-27 18:16:19 +00:00
|
|
|
|
(home-page "https://github.com/fosnola/libstaroffice")
|
|
|
|
|
(synopsis "Provides LibreOffice support for old StarOffice documents")
|
|
|
|
|
(description "@code{libstaroffice} is an import filter for the document formats
|
|
|
|
|
from the old StarOffice (.sdc, .sdw, ...).")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual license
|
2015-05-07 21:11:01 +00:00
|
|
|
|
|
|
|
|
|
(define-public libwps
|
|
|
|
|
(package
|
|
|
|
|
(name "libwps")
|
2022-11-20 00:00:01 +00:00
|
|
|
|
(version "0.4.13")
|
2015-05-07 21:11:01 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/" name "/" name "/"
|
2016-07-21 06:35:30 +00:00
|
|
|
|
name "-" version "/" name "-" version ".tar.xz"))
|
2015-05-07 21:11:01 +00:00
|
|
|
|
(sha256 (base32
|
2022-11-20 00:00:01 +00:00
|
|
|
|
"03y4aslp5lfqc14agn0hgkifwrknh8s4hfjll9wrfs1hq3kaz5ff"))))
|
2015-05-07 21:11:01 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list doxygen pkg-config))
|
2018-09-15 00:38:15 +00:00
|
|
|
|
(propagated-inputs ; in Requires field of .pkg
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list librevenge))
|
2015-05-07 21:11:01 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost zlib))
|
gnu: Use HTTPS package home pages wherever possible.
* gnu/packages/accessibility.scm (florence)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (netcat, nmon)[home-page]: Likewise.
* gnu/packages/algebra.scm (mpfrcx, cm, flint, fftw, r-dtt)[home-page]:
Likewise.
* gnu/packages/apr.scm (apr, apr-util)[home-page]: Likewise.
* gnu/packages/aspell.scm (aspell-dict-it)[home-page]: Likewise.
* gnu/packages/astronomy.scm (casacore, sextractor, libnova)
(xplanet)[home-page]: Likewise.
* gnu/packages/audio.scm (libtimidity, alsa-modular-synth, azr3, tao)
(freepats, rakarrack, liblo, libshout-idjc, timidity++, libsbsms)
(libmodplug, libxmp, xmp, sox, drc, gsm, gnaural)
(streamripper)[home-page]: Likewise.
* gnu/packages/authentication.scm (pamtester)[home-page]: Likewise.
* gnu/packages/backup.scm (grsync)[home-page]: Likewise.
* gnu/packages/bioconductor.scm (r-nmf, r-edger, r-limma)
(r-plgem)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (python-biom-format, bowtie, bowtie1)
(bwa, crossmap, java-htsjdk, java-htsjdk-latest, java-picard)
(java-picard-2.10.3, kaiju, proteinortho, rsem, rseqc, seek, samtools)
(snap-aligner, subread, stringtie, r-centipede, prinseq, emboss, phylip)
(libsbml)[home-page]: Likewise.
* gnu/packages/build-tools.scm (tup)[home-page]: Likewise.
* gnu/packages/cdrom.scm (libcddb, cdrdao, cdrtools)
(cd-discid)[home-page]: Likewise.
* gnu/packages/check.scm (cunit, python-nose)
(python-pyhamcrest)[home-page]: Likewise.
* gnu/packages/chemistry.scm (gromacs)[home-page]: Likewise.
* gnu/packages/chez.scm (chez-fmt)[home-page]: Likewise.
* gnu/packages/code.scm (lcov, uncrustify, cscope)[home-page]: Likewise.
* gnu/packages/compression.scm (p7zip)[home-page]: Likewise.
* gnu/packages/cran.scm (r-emdist, r-proj4, r-zoo, r-ggalluvial)
(r-orgmassspecr, r-polychrome, r-partykit, r-rcpp, r-ff, r-emdbook)
(r-fitdistrplus, r-linprog, r-geometry, r-dtw, r-fst, r-rjags)
(r-intergraph, r-qualv, r-labelled, r-survey, r-coin, r-fmsb, r-tm)
(r-corpcor, r-rmpfr, r-spatialextremes, r-longitudinal, r-genenet)
(r-bayesm, r-seqinr, r-mpm, r-text2vec, r-rgdal, r-seewave, r-hdrcde)
(r-shapes, r-anytime, r-stm, r-d3network, r-tam, r-directlabels)
(r-spatstat-utils, r-spatstat-sparse, r-spatstat-data, r-spatstat-geom)
(r-spatstat-core, r-spatstat-linnet, r-spatstat-random, r-spatstat)
(r-rcpptoml, r-mlecens, r-seurat, r-mlearning, r-zooimage)[home-page]:
Likewise.
* gnu/packages/crates-io.scm (rust-nickel-0.11, rust-thrift-0.13)
(rust-trust-dns-https-0.20, rust-trust-dns-native-tls-0.20)
(rust-trust-dns-openssl-0.20, rust-trust-dns-proto-0.20)
(rust-trust-dns-resolver-0.20, rust-trust-dns-rustls-0.20)
(rust-uint-0.9, rust-yaml-rust-0.4)[home-page]: Likewise.
* gnu/packages/crypto.scm (libdecaf, ccrypt)[home-page]: Likewise.
* gnu/packages/curl.scm (curlpp)[home-page]: Likewise.
* gnu/packages/databases.scm (python-pylibmc, unixodbc, wiredtiger)
(libpqxx, mdbtools, virtuoso-ose, libdbi, libdbi-drivers)
(soci)[home-page]: Likewise.
* gnu/packages/debian.scm (apt-mirror)[home-page]: Likewise.
* gnu/packages/debug.scm (remake)[home-page]: Likewise.
* gnu/packages/disk.scm (sdparm, idle3-tools, duc)[home-page]: Likewise.
* gnu/packages/django.scm (python-django-haystack)[home-page]: Likewise.
* gnu/packages/djvu.scm (djvulibre, djview)[home-page]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[home-page]: Likewise.
* gnu/packages/docbook.scm (dblatex, docbook2x)[home-page]: Likewise.
* gnu/packages/documentation.scm (scrollkeeper)[home-page]: Likewise.
* gnu/packages/ebook.scm (liblinebreak)[home-page]: Likewise.
* gnu/packages/electronics.scm (xoscope)[home-page]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-bbdb, emacs-caps-lock, emacs-djvu)
(emacs-pabbrev, emacs-twittering-mode, emacs-filladapt, emacs-rudel)
(emacs-stream, emacspeak, emacs-cc-mode, emacs-eldoc, emacs-jsonrpc)
(emacs-gtk-look, emacs-xclip, emacs-slime-volleyball, emacs-minimap)
(emacs-auto-dictionary-mode, emacs-persist, emacs-shell-command+)
(emacs-map, emacs-xref, emacs-dictionary)[home-page]: Likewise.
* gnu/packages/embedded.scm (sdcc)[home-page]: Likewise.
* gnu/packages/engineering.scm (asco, libngspice, libspnav)
(openctm)[home-page]: Likewise.
* gnu/packages/erlang.scm (erlang-erlware-commons)[home-page]: Likewise.
* gnu/packages/file-systems.scm (jfsutils, curlftpfs)[home-page]:
Likewise.
* gnu/packages/finance.scm (gbonds)[home-page]: Likewise.
* gnu/packages/flashing-tools.scm (dfu-util, srecord)[home-page]:
Likewise.
* gnu/packages/fltk.scm (ntk)[home-page]: Likewise.
* gnu/packages/fonts.scm (font-terminus, font-tex-gyre)
(font-comic-neue)[home-page]: Likewise.
* gnu/packages/fontutils.scm (ttf2pt1, potrace, libspiro)[home-page]:
Likewise.
* gnu/packages/fpga.scm (icestorm, gtkwave, gtkwave)
(python-myhdl)[home-page]: Likewise.
* gnu/packages/freedesktop.scm (libatasmart)[home-page]: Likewise.
* gnu/packages/ftp.scm (weex)[home-page]: Likewise.
* gnu/packages/game-development.scm (dds, python-tmx, sfxr, quesoglc)
(eureka, plib)[home-page]: Likewise.
* gnu/packages/games.scm (abe, alex4, armagetronad, barony)
(foobillard++, golly, ltris, pipewalker, prboom-plus, trigger-rally)
(cmatrix, pinball, pioneers, tennix, chromium-bsu, freeciv, kiki)
(quakespasm, frotz, frotz-dumb-terminal, frotz-sdl, btanks)
(flare-engine, chessx, barrage, cgoban, passage)[home-page]: Likewise.
* gnu/packages/geo.scm (python-geopandas, saga)[home-page]: Likewise.
* gnu/packages/gl.scm (freeglut, gl2ps)[home-page]: Likewise.
* gnu/packages/gnome.scm (cogl, clutter-gtk, clutter-gst, bluefish)
(workrave)[home-page]: Likewise.
* gnu/packages/gnustep.scm (wmnd, wmfire, wmfire)[home-page]: Likewise.
* gnu/packages/graph.scm (mscgen)[home-page]: Likewise.
* gnu/packages/graphics.scm (assimp, alembic, ctl, agg)
(opencsg)[home-page]: Likewise.
* gnu/packages/graphviz.scm (gts)[home-page]: Likewise.
* gnu/packages/gtk.scm (gtkspell3)[home-page]: Likewise.
* gnu/packages/guile-xyz.scm (guile-irregex)[home-page]: Likewise.
* gnu/packages/haskell-apps.scm (cpphs)[home-page]: Likewise.
* gnu/packages/haskell-check.scm (ghc-hunit)[home-page]: Likewise.
* gnu/packages/haskell-web.scm (ghc-http-client-restricted)
(ghc-blaze-html, ghc-happstack-server, ghc-sourcemap)[home-page]:
Likewise.
* gnu/packages/haskell-xyz.scm (ghc-assoc, ghc-cairo, ghc-cborg)
(ghc-csv, ghc-glob, ghc-gtk2hs-buildtools, ghc-hmatrix-gsl-stats)
(ghc-intervalmap, ghc-lens-family-core, ghc-managed, ghc-mountpoints)
(ghc-network-multicast, ghc-optional-args, ghc-regex, ghc-spoon)
(ghc-transformers, ghc-turtle, ghc-utf8-light, ghc-wizards)
(ghc-template-haskell, ghc-boot-th, ghc-binary-orphans)
(ghc-postgresql-simple)[home-page]: Likewise.
* gnu/packages/hexedit.scm (ht, bvi)[home-page]: Likewise.
* gnu/packages/hunspell.scm (hunspell-dict-hu)[home-page]: Likewise.
* gnu/packages/image-processing.scm (mia)[home-page]: Likewise.
* gnu/packages/image-viewers.scm (geeqie, gpicview, luminance-hdr)
(qiv)[home-page]: Likewise.
* gnu/packages/image.scm (libuemf, devil, steghide, optipng, niftilib)
(sng, mtpaint)[home-page]: Likewise.
* gnu/packages/java-xml.scm (java-simple-xml, java-jaxp)
(java-apache-xml-commons-resolver)[home-page]: Likewise.
* gnu/packages/java.scm (java-cisd-base, java-cisd-args4j)
(java-hamcrest-core, java-jsr305, java-eclipse-osgi)
(java-eclipse-equinox-common, java-eclipse-core-jobs)
(java-eclipse-equinox-registry, java-eclipse-equinox-app)
(java-eclipse-equinox-preferences, java-eclipse-core-contenttype)
(java-eclipse-text, java-treelayout, java-aopalliance, java-jeromq)
(java-cdi-api)[home-page]: Likewise.
* gnu/packages/jemalloc.scm (jemalloc-4.5.0)[home-page]: Likewise.
* gnu/packages/julia-xyz.scm (julia-recipespipeline)[home-page]:
Likewise.
* gnu/packages/kde-internet.scm (kget)[home-page]: Likewise.
* gnu/packages/kde-systemtools.scm (dolphin-plugins)
(konsole)[home-page]: Likewise.
* gnu/packages/kodi.scm (fstrcmp)[home-page]: Likewise.
* gnu/packages/language.scm (hime, libchewing)[home-page]: Likewise.
* gnu/packages/lego.scm (nqc)[home-page]: Likewise.
* gnu/packages/lesstif.scm (lesstif)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[home-page]: Likewise.
* gnu/packages/libdaemon.scm (libdaemon)[home-page]: Likewise.
* gnu/packages/libffi.scm (libffi)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (libwpd, libwpg, libwps)[home-page]:
Likewise.
* gnu/packages/libusb.scm (libmtp, gmtp)[home-page]: Likewise.
* gnu/packages/linux.scm (e2fsprogs, extundelete, lsscsi, net-tools)
(kbd, sysfsutils, cpuid, libpfm4)[home-page]: Likewise.
* gnu/packages/lisp-check.scm (sbcl-ptester, sbcl-xlunit)[home-page]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-html-encode, sbcl-py-configparser)
(sbcl-cl-utilities, sbcl-series, sbcl-uffi, sbcl-clsql, sbcl-sycamore)
(sbcl-osicat, sbcl-hu.dwim.common, sbcl-caveman, sbcl-trivial-shell)
(sbcl-trivial-benchmark, sbcl-screamer, sbcl-smug)[home-page]: Likewise.
* gnu/packages/lisp.scm (lush2)[home-page]: Likewise.
* gnu/packages/logging.scm (log4cpp)[home-page]: Likewise.
* gnu/packages/lua.scm (lua-ldoc)[home-page]: Likewise.
* gnu/packages/machine-learning.scm (mcl, openfst, rxcpp)[home-page]:
Likewise.
* gnu/packages/mail.scm (muchsync, procmail, sendmail)
(opensmtpd-filter-dkimsign, crm114)[home-page]: Likewise.
* gnu/packages/man.scm (libpipeline, man-db)[home-page]: Likewise.
* gnu/packages/maths.scm (lapack, scalapack, hdf-eos5, itpp, gmsh)
(metamath, p4est, armadillo, suitesparse, atlas, lpsolve, wcalc, why3)
(frama-c)[home-page]: Likewise.
* gnu/packages/mcrypt.scm (mcrypt, libmcrypt, libmhash)[home-page]:
Likewise.
* gnu/packages/minetest.scm (minetest-advtrains)[home-page]: Likewise.
* gnu/packages/monitoring.scm (python-whisper, python-carbon)
(hostscope)[home-page]: Likewise.
* gnu/packages/mp3.scm (id3lib, libmp3splt, mp3splt, mpg321)
(lame)[home-page]: Likewise.
* gnu/packages/multiprecision.scm (mpc)[home-page]: Likewise.
* gnu/packages/music.scm (aria-maestosa, lingot, setbfree, bristol)
(portmidi, python-pyportmidi, zynaddsubfx, yoshimi, aj-snapshot)
(schismtracker, midicsv, midicsv, qmidiarp, qmidiroute, dssi, tap-lv2)
(shiru-lv2)[home-page]: Likewise.
* gnu/packages/ncurses.scm (stfl)[home-page]: Likewise.
* gnu/packages/networking.scm (lksctp-tools, mbuffer, ifstatus, bird)
(tunctl, traceroute)[home-page]: Likewise.
* gnu/packages/node-xyz.scm (node-mersenne)[home-page]: Likewise.
* gnu/packages/ntp.scm (openntpd)[home-page]: Likewise.
* gnu/packages/ocaml.scm (opam, hevea, ocaml-menhir, ocaml-piqilib)
(ocaml-graph, cubicle)[home-page]: Likewise.
* gnu/packages/opencl.scm (python-pyopencl)[home-page]: Likewise.
* gnu/packages/package-management.scm (xstow, modules)[home-page]:
Likewise.
* gnu/packages/parallel.scm (xjobs)[home-page]: Likewise.
* gnu/packages/pdf.scm (podofo, qpdf, xournal, impressive)[home-page]:
Likewise.
* gnu/packages/perl.scm (perl-math-vecstat, perltidy)[home-page]:
Likewise.
* gnu/packages/photo.scm (libpano13, enblend-enfuse, hugin)[home-page]:
Likewise.
* gnu/packages/plan9.scm (drawterm)[home-page]: Likewise.
* gnu/packages/plotutils.scm (guile-charting, ploticus)[home-page]:
Likewise.
* gnu/packages/popt.scm (argtable, popt)[home-page]: Likewise.
* gnu/packages/profiling.scm (otf2)[home-page]: Likewise.
* gnu/packages/pulseaudio.scm (pulseaudio)[home-page]: Likewise.
* gnu/packages/python-check.scm (python-mypy)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-cssutils)
(python-translationstring)[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-diskcache, python-doxyqml)
(python-docutils, python-pexpect, python-importlib-resources)
(python-simplegeneric, python-urwid, python-xlrd, python-xlwt)
(python-pyasn1, python-pythondialog, python-tftpy, python-random2)
(python-arcp, python-pyopengl, python-sortedcollections)
(python-sortedcontainers, python-yapsy, python-pydispatcher)
(python-posix-ipc)[home-page]: Likewise.
* gnu/packages/qt.scm (qwt, libqglviewer, signond)[home-page]: Likewise.
* gnu/packages/radio.scm (unixcw, gnuais)[home-page]: Likewise.
* gnu/packages/raspberry-pi.scm (bcm2835)[home-page]: Likewise.
* gnu/packages/rdf.scm (clucene, rasqal, redland)[home-page]: Likewise.
* gnu/packages/regex.scm (tre)[home-page]: Likewise.
* gnu/packages/rsync.scm (librsync)[home-page]: Likewise.
* gnu/packages/ruby.scm (ruby-packnga, ruby-nokogiri, ruby-oj, ruby-ox)
(ruby-sinatra, ruby-citrus, ruby-cbor, ruby-roda)[home-page]: Likewise.
* gnu/packages/scheme.scm (scheme48, tinyscheme)[home-page]: Likewise.
* gnu/packages/screen.scm (dtach)[home-page]: Likewise.
* gnu/packages/scsi.scm (sg3-utils)[home-page]: Likewise.
* gnu/packages/sdl.scm (libmikmod, sdl-pango)[home-page]: Likewise.
* gnu/packages/shellutils.scm (hstr, rig)[home-page]: Likewise.
* gnu/packages/simulation.scm (python-dolfin-adjoint)[home-page]:
Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[home-page]: Likewise.
* gnu/packages/speech.scm (espeak)[home-page]: Likewise.
* gnu/packages/stalonetray.scm (stalonetray)[home-page]: Likewise.
* gnu/packages/statistics.scm (jags, r-mass, r-class, r-lattice)
(r-matrix, r-nnet, r-spatial, r-bit, r-bit64, r-digest, r-xtable)
(python-statsmodels, r-ade4, r-latticeextra, r-rcurl, r-xml, r-mvtnorm)
(r-robustbase, r-minqa, r-fdrtool, java-jdistlib, xlispstat)[home-page]:
Likewise.
* gnu/packages/swig.scm (swig)[home-page]: Likewise.
* gnu/packages/task-management.scm (wtime)[home-page]: Likewise.
* gnu/packages/tcl.scm (itcl, tclxml, tclx)[home-page]: Likewise.
* gnu/packages/terminals.scm (libtermkey, mlterm, libvterm)
(libvterm)[home-page]: Likewise.
* gnu/packages/tex.scm (texlive-lm, texlive-lm-math, texlive-cs)
(texlive-csplain, biber, texmaker)[home-page]: Likewise.
* gnu/packages/text-editors.scm (joe)[home-page]: Likewise.
* gnu/packages/textutils.scm (drm-tools, docx2txt)[home-page]: Likewise.
* gnu/packages/tv.scm (tvtime)[home-page]: Likewise.
* gnu/packages/unicode.scm (libunibreak)[home-page]: Likewise.
* gnu/packages/upnp.scm (libupnp)[home-page]: Likewise.
* gnu/packages/version-control.scm (cvs)[home-page]: Likewise.
* gnu/packages/video.scm (transcode, libquicktime, mjpegtools, aalib)
(liba52, libmpeg2, x265, libdv, dvdauthor, aegisub, pitivi, gavl)
(dvdbackup, guvcview, video-contact-sheet)[home-page]: Likewise.
* gnu/packages/virtualization.scm (bochs)[home-page]: Likewise.
* gnu/packages/w3m.scm (w3m)[home-page]: Likewise.
* gnu/packages/web.scm (qjson, libquvi-scripts, libquvi, quvi)
(tidy-html, htmlcxx)[home-page]: Likewise.
* gnu/packages/wm.scm (evilwm, menumaker)[home-page]: Likewise.
* gnu/packages/wv.scm (wv)[home-page]: Likewise.
* gnu/packages/wxwidgets.scm (wxsvg)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (mtdev, xsel)[home-page]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Likewise.
* gnu/packages/xml.scm (openjade, python-pyxb, xmlstarlet, xmlrpc-c)
(opensp)[home-page]: Likewise.
* gnu/packages/xorg.scm (xf86-video-qxl)[home-page]: Likewise.
2023-02-12 00:00:00 +00:00
|
|
|
|
(home-page "https://libwps.sourceforge.net/")
|
2015-05-07 21:11:01 +00:00
|
|
|
|
(synopsis "Import library for Microsoft Works text documents")
|
|
|
|
|
(description "Libwps is a library for importing files in the Microsoft
|
|
|
|
|
Works word processor file format.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual license
|
2015-05-11 20:14:36 +00:00
|
|
|
|
|
2017-03-27 18:15:04 +00:00
|
|
|
|
(define-public libzmf
|
|
|
|
|
(package
|
|
|
|
|
(name "libzmf")
|
2017-10-08 16:17:58 +00:00
|
|
|
|
(version "0.0.2")
|
2017-03-27 18:15:04 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/libzmf/libzmf-"
|
|
|
|
|
version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2017-10-08 16:17:58 +00:00
|
|
|
|
"08mg5kmkjrmqrd8j5rkzw9vdqlvibhb1ynp6bmfxnzq5rcq1l197"))))
|
2017-03-27 18:15:04 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2018-10-27 10:50:19 +00:00
|
|
|
|
(arguments
|
|
|
|
|
;; A harmless 'sign-compare' error pops up on i686 so disable '-Werror'.
|
|
|
|
|
'(#:configure-flags '("--disable-werror")))
|
2017-03-27 18:15:04 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost icu4c libpng librevenge zlib))
|
2017-03-27 18:15:04 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list cppunit doxygen pkg-config))
|
2017-03-27 18:15:04 +00:00
|
|
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libzmf")
|
|
|
|
|
(synopsis "Parses file format of Zoner Callisto/Draw documents")
|
|
|
|
|
(description "Libzmf is a library that parses the file format of Zoner
|
|
|
|
|
Callisto/Draw documents. Currently it only understands documents created by
|
|
|
|
|
Zoner Draw version 4 and 5.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2017-03-27 18:15:04 +00:00
|
|
|
|
|
2015-05-11 20:37:21 +00:00
|
|
|
|
(define-public hyphen
|
|
|
|
|
(package
|
|
|
|
|
(name "hyphen")
|
|
|
|
|
(version "2.8.8")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2016-07-21 06:35:30 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/hunspell/Hyphen/"
|
|
|
|
|
(version-major+minor version) "/"
|
2015-05-11 20:37:21 +00:00
|
|
|
|
name "-" version ".tar.gz"))
|
|
|
|
|
(sha256 (base32
|
|
|
|
|
"01ap9pr6zzzbp4ky0vy7i1983fwyqy27pl0ld55s30fdxka3ciih"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list perl))
|
2022-11-20 00:00:07 +00:00
|
|
|
|
(home-page "https://hunspell.github.io/")
|
2015-05-11 20:37:21 +00:00
|
|
|
|
(synopsis "Hyphenation library")
|
|
|
|
|
(description "Hyphen is a hyphenation library using TeX hyphenation
|
|
|
|
|
patterns, which are pre-processed by a perl script.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
;; Triple license, including "mpl1.1 or later".
|
|
|
|
|
(license
|
|
|
|
|
(list license:mpl1.1 license:mpl2.0 license:gpl2+ license:lgpl2.1+))))
|
2015-05-11 20:53:47 +00:00
|
|
|
|
|
|
|
|
|
(define-public mythes
|
|
|
|
|
(package
|
|
|
|
|
(name "mythes")
|
2022-11-20 00:00:09 +00:00
|
|
|
|
(version "1.2.5")
|
2015-05-11 20:53:47 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2022-11-20 00:00:09 +00:00
|
|
|
|
(uri (string-append "https://github.com/hunspell/mythes/releases/"
|
|
|
|
|
"download/v" version "/mythes-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "07ajdyyif19k445dqffkm32c1kl8z0cw6bczc7x5zgkvf1q9y9qr"))))
|
2015-05-11 20:53:47 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list pkg-config))
|
2015-05-11 20:53:47 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list hunspell perl))
|
2022-11-20 00:00:07 +00:00
|
|
|
|
(home-page "https://hunspell.github.io/")
|
2015-05-11 20:53:47 +00:00
|
|
|
|
(synopsis "Thesaurus")
|
|
|
|
|
(description "MyThes is a simple thesaurus that uses a structured text
|
|
|
|
|
data file and an index file with binary search to look up words and phrases
|
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 12:16:07 +00:00
|
|
|
|
and to return information on pronunciations, meanings and synonyms.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (license:non-copyleft "file://COPYING"
|
|
|
|
|
"See COPYING in the distribution."))))
|
2015-05-29 21:49:19 +00:00
|
|
|
|
|
2018-06-07 07:36:48 +00:00
|
|
|
|
(define-public libqxp
|
|
|
|
|
(package
|
|
|
|
|
(name "libqxp")
|
2019-03-16 18:00:32 +00:00
|
|
|
|
(version "0.0.2")
|
2018-06-07 07:36:48 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://dev-www.libreoffice.org/src/libqxp/"
|
|
|
|
|
"libqxp-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-03-16 18:00:32 +00:00
|
|
|
|
"0p4lb84m05wqd8qr8ni9sp80ivlm83ffn0nxiv4m42hj22qvcdz1"))))
|
2018-06-07 07:36:48 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list boost icu4c zlib))
|
2018-06-07 07:36:48 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list cppunit pkg-config))
|
2018-06-07 07:36:48 +00:00
|
|
|
|
(propagated-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list librevenge)) ; mentioned in Requires field
|
2018-06-07 07:36:48 +00:00
|
|
|
|
(home-page "https://www.libreoffice.org")
|
|
|
|
|
(synopsis "Library and tools for the QuarkXPress file format")
|
|
|
|
|
(description "libqxp is a library and a set of tools for reading and
|
|
|
|
|
converting QuarkXPress file format. It supports versions 3.1 to 4.1.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2018-06-07 07:36:48 +00:00
|
|
|
|
|
2022-11-27 07:37:32 +00:00
|
|
|
|
(define-public dragonbox
|
|
|
|
|
(package
|
|
|
|
|
(name "dragonbox")
|
|
|
|
|
(version "1.1.3")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/jk-jeon/dragonbox")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0qxx94s2kfgnlnyl1gwmbxkksr3dipvb99zdyi5skw3z2bq563sa"))))
|
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments (list #:tests? #false)) ;no test target
|
|
|
|
|
(home-page "https://github.com/jk-jeon/dragonbox")
|
|
|
|
|
(synopsis "Float-to-string conversion algorithm")
|
|
|
|
|
(description "Dragonbox generates a pair of integers from a floating-point
|
|
|
|
|
number: the decimal significand and the decimal exponent of the input
|
|
|
|
|
floating-point number. These integers can then be used for string generation
|
|
|
|
|
of decimal representation of the input floating-point number, the procedure
|
|
|
|
|
commonly called @code{ftoa} or @code{dtoa}.")
|
|
|
|
|
(license license:asl2.0)))
|
|
|
|
|
|
2022-08-10 20:54:31 +00:00
|
|
|
|
(define dtoa
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri "https://dev-www.libreoffice.org/src/dtoa-20180411.tgz")
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1d0iwy0q5sjznv23d3nbwmy0r7m1mdzlnv5pc4izddkx9xld10h0"))))
|
|
|
|
|
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(define-public libreoffice
|
|
|
|
|
(package
|
|
|
|
|
(name "libreoffice")
|
2024-05-25 17:59:40 +00:00
|
|
|
|
(version "7.6.7.2") ;keep in sync with hunspell dictionaries
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
2018-09-11 05:59:11 +00:00
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(string-append
|
2018-09-11 05:59:11 +00:00
|
|
|
|
"https://download.documentfoundation.org/libreoffice/src/"
|
|
|
|
|
(version-prefix version 3) "/libreoffice-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
2024-05-25 17:59:40 +00:00
|
|
|
|
(base32 "159vbv4zhibfd4xjdamcqs4h0p3h5y79kcjwrmshvjhs23p55l3m"))))
|
2018-09-29 03:30:55 +00:00
|
|
|
|
(build-system glib-or-gtk-build-system)
|
2022-10-10 15:48:55 +00:00
|
|
|
|
(arguments
|
|
|
|
|
(list
|
2023-03-31 10:09:01 +00:00
|
|
|
|
#:imported-modules `((guix build python-build-system)
|
|
|
|
|
,@%glib-or-gtk-build-system-modules)
|
|
|
|
|
#:modules `(((guix build python-build-system) #:select (python-version))
|
|
|
|
|
(ice-9 textual-ports)
|
|
|
|
|
,@%glib-or-gtk-build-system-modules)
|
2022-10-10 15:48:55 +00:00
|
|
|
|
#:tests? #f ; Building the tests already fails.
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'insert-external-tarballs
|
|
|
|
|
(lambda _
|
|
|
|
|
(mkdir-p "external/tarballs")
|
|
|
|
|
(copy-file #$dtoa "external/tarballs/dtoa-20180411.tgz")))
|
2023-02-18 18:21:59 +00:00
|
|
|
|
(add-after 'unpack 'augment-LD_LIBRARY_PATH
|
|
|
|
|
;; Without this, the nsscrypto_initialize procedure in
|
|
|
|
|
;; nssinitializer.cxx silently fails to load libnssckbi.so, which
|
|
|
|
|
;; causes password encryption to also silently fail (see:
|
|
|
|
|
;; https://bugs.documentfoundation.org/show_bug.cgi?id=153714).
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* "desktop/scripts/soffice.sh"
|
|
|
|
|
(("^exec .*oosplash.*" anchor)
|
|
|
|
|
(string-append "export LD_LIBRARY_PATH="
|
|
|
|
|
(search-input-directory inputs "lib/nss")
|
|
|
|
|
"${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\n"
|
|
|
|
|
anchor)))))
|
2022-10-10 15:48:55 +00:00
|
|
|
|
(add-before 'configure 'prepare-src
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute*
|
|
|
|
|
(list "sysui/CustomTarget_share.mk"
|
|
|
|
|
"solenv/gbuild/gbuild.mk"
|
|
|
|
|
"solenv/gbuild/platform/unxgcc.mk")
|
|
|
|
|
(("/bin/sh") (which "sh")))
|
|
|
|
|
|
|
|
|
|
;; Use store references for strictly necessary commands,
|
|
|
|
|
;; but not for optional tools like ‘gdb’ and ‘valgrind’.
|
|
|
|
|
(for-each (lambda (command)
|
|
|
|
|
(substitute* "desktop/scripts/soffice.sh"
|
|
|
|
|
(((format #f "~a " command))
|
|
|
|
|
(format #f "~a " (which command)))))
|
|
|
|
|
(list "dirname" "grep" "uname"))
|
|
|
|
|
|
|
|
|
|
;; GPGME++ headers are installed in a gpgme++ subdirectory, but
|
|
|
|
|
;; configure is hardcoded to use FHS directories.
|
|
|
|
|
(substitute* "configure"
|
|
|
|
|
(("GPGMEPP_CFLAGS=-I/usr/include/gpgme\\+\\+")
|
|
|
|
|
(string-append "GPGMEPP_CFLAGS=-I"
|
|
|
|
|
(search-input-directory inputs
|
2022-11-27 16:39:52 +00:00
|
|
|
|
"include/gpgme++")))
|
2023-03-08 08:14:13 +00:00
|
|
|
|
(("DRAGONBOX_CFLAGS=-I/usr/include/dragonbox-1\\.1\\.3")
|
2022-11-27 16:39:52 +00:00
|
|
|
|
(string-append "DRAGONBOX_CFLAGS=-I"
|
|
|
|
|
(search-input-directory inputs
|
2023-03-08 08:14:13 +00:00
|
|
|
|
"include/dragonbox-1.1.3"))))
|
2022-10-10 15:48:55 +00:00
|
|
|
|
|
|
|
|
|
;; /usr/bin/xdg-open doesn't exist on Guix System.
|
|
|
|
|
(substitute* '("shell/source/unix/exec/shellexec.cxx"
|
|
|
|
|
"shell/source/unix/misc/senddoc.sh")
|
|
|
|
|
(("/usr/bin/xdg-open")
|
2022-11-27 16:39:52 +00:00
|
|
|
|
(search-input-file inputs "/bin/xdg-open")))
|
|
|
|
|
(setenv "CPPFLAGS" "-std=c++17")))
|
2022-10-10 15:48:55 +00:00
|
|
|
|
(add-after 'install 'reset-zip-timestamps
|
|
|
|
|
(lambda _
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(invoke "ziptime" file))
|
|
|
|
|
;; So many different extensions for .zip files.
|
2022-11-25 22:39:45 +00:00
|
|
|
|
(find-files #$output "\\.(bau|dat|otg|otp|ott|zip)$"))))
|
2022-10-10 15:48:55 +00:00
|
|
|
|
(add-after 'install 'bin-and-desktop-install
|
|
|
|
|
;; Create 'soffice' and 'libreoffice' symlinks to the executable
|
|
|
|
|
;; script.
|
|
|
|
|
(lambda _
|
2023-03-31 10:09:01 +00:00
|
|
|
|
(let* ((out #$output)
|
|
|
|
|
(python-libdir
|
|
|
|
|
(string-append out "/lib/python"
|
|
|
|
|
(python-version
|
|
|
|
|
#$(this-package-input "python"))
|
|
|
|
|
"/site-packages/")))
|
2022-10-10 15:48:55 +00:00
|
|
|
|
(define (symlink-output src dst)
|
|
|
|
|
(mkdir-p (dirname (string-append out dst)))
|
|
|
|
|
(symlink (string-append out src) (string-append out dst)))
|
|
|
|
|
(define (install src dst)
|
|
|
|
|
(let ((dst (string-append out dst)))
|
|
|
|
|
(mkdir-p (dirname dst))
|
|
|
|
|
(copy-file src dst)))
|
|
|
|
|
(define (install-desktop-file app)
|
|
|
|
|
(let ((src (string-append "/lib/libreoffice/share/xdg/"
|
|
|
|
|
app ".desktop"))
|
|
|
|
|
(dst (string-append "/share/applications/libreoffice-"
|
|
|
|
|
app ".desktop")))
|
|
|
|
|
(substitute* (string-append out src)
|
|
|
|
|
(("Exec=libreoffice[0-9]+\\.[0-9]+ ")
|
|
|
|
|
(string-append "Exec=" out "/bin/libreoffice "))
|
|
|
|
|
(("Icon=libreoffice.*")
|
|
|
|
|
(string-append "Icon=" app "\n"))
|
|
|
|
|
(("LibreOffice [0-9]+\\.[0-9]+")
|
|
|
|
|
"LibreOffice"))
|
|
|
|
|
(symlink-output src dst)))
|
|
|
|
|
(define (install-appdata app)
|
|
|
|
|
(install-file (string-append
|
|
|
|
|
"sysui/desktop/appstream-appdata/"
|
|
|
|
|
"libreoffice-" app ".appdata.xml")
|
|
|
|
|
(string-append out "/share/appdata")))
|
2023-03-31 10:09:01 +00:00
|
|
|
|
(define (install-python-script name)
|
|
|
|
|
(with-input-from-file
|
|
|
|
|
(string-append out "/lib/libreoffice/program/" name ".py")
|
|
|
|
|
(lambda _
|
|
|
|
|
(let ((file (get-string-all (current-input-port))))
|
|
|
|
|
(with-output-to-file
|
|
|
|
|
(string-append python-libdir name ".py")
|
|
|
|
|
(lambda _
|
|
|
|
|
(format (current-output-port) "~a"
|
|
|
|
|
(string-append
|
|
|
|
|
"import sys, os\n"
|
|
|
|
|
"sys.path.append('"
|
|
|
|
|
out "/lib/libreoffice/program" "')\n"
|
|
|
|
|
"os.putenv('URE_BOOTSTRAP', 'vnd.sun.star.pathname:"
|
|
|
|
|
out "/lib/libreoffice/program/fundamentalrc')\n\n"
|
|
|
|
|
file)))))))
|
|
|
|
|
(delete-file
|
|
|
|
|
(string-append out "/lib/libreoffice/program/" name ".py")))
|
2022-10-10 15:48:55 +00:00
|
|
|
|
(symlink-output "/lib/libreoffice/program/soffice"
|
|
|
|
|
"/bin/soffice")
|
|
|
|
|
(symlink-output "/lib/libreoffice/program/soffice"
|
|
|
|
|
"/bin/libreoffice")
|
|
|
|
|
(install
|
|
|
|
|
"workdir/CustomTarget/sysui/share/libreoffice/openoffice.org.xml"
|
|
|
|
|
"/share/mime/packages/libreoffice.xml")
|
|
|
|
|
(for-each install-desktop-file
|
|
|
|
|
'("base" "calc" "draw" "impress" "writer"
|
|
|
|
|
"math" "startcenter"))
|
|
|
|
|
(for-each install-appdata
|
|
|
|
|
'("base" "calc" "draw" "impress" "writer"))
|
|
|
|
|
(mkdir-p (string-append out "/share/icons/hicolor"))
|
|
|
|
|
(copy-recursively "sysui/desktop/icons/hicolor"
|
2023-03-31 10:09:01 +00:00
|
|
|
|
(string-append out "/share/icons/hicolor"))
|
|
|
|
|
(mkdir-p python-libdir)
|
|
|
|
|
(for-each install-python-script
|
|
|
|
|
'("access2base" "mailmerge" "msgbox" "officehelper"
|
|
|
|
|
"pythonloader" "pythonscript" "scriptforge"
|
|
|
|
|
"unohelper" "uno"))))))
|
2022-10-10 15:48:55 +00:00
|
|
|
|
#:configure-flags
|
|
|
|
|
#~(list
|
|
|
|
|
"--enable-release-build"
|
|
|
|
|
"--with-vendor=GNU Guix"
|
2023-02-18 03:36:00 +00:00
|
|
|
|
;; Without the SAL logging system enabled, LibreOffice is utterly
|
|
|
|
|
;; silent. Setting the environment variable 'SAL_INFO=+INFO' can be
|
|
|
|
|
;; useful to debug problems.
|
|
|
|
|
"--enable-sal-log"
|
2022-10-10 15:48:55 +00:00
|
|
|
|
;; Avoid using all cpu cores by default
|
|
|
|
|
(format #f "--with-parallelism=~d" (parallel-job-count))
|
|
|
|
|
"--disable-fetch-external" ; disable downloads
|
|
|
|
|
"--with-system-libs" ; enable all --with-system-* flags
|
|
|
|
|
(string-append "--with-boost-libdir="
|
|
|
|
|
(dirname
|
|
|
|
|
(search-input-file %build-inputs
|
|
|
|
|
"lib/libboost_system.so")))
|
|
|
|
|
;; The fonts require an external tarball (crosextrafonts).
|
|
|
|
|
;; They should not be needed when system fonts are available.
|
|
|
|
|
"--without-fonts"
|
|
|
|
|
;; With java, the build fails since sac.jar is missing.
|
|
|
|
|
"--without-java"
|
|
|
|
|
;; FIXME: Enable once the corresponding inputs are packaged.
|
|
|
|
|
"--disable-coinmp"
|
|
|
|
|
"--disable-skia"
|
|
|
|
|
;; This could (Debian does this) be a separate output containing only
|
|
|
|
|
;; program/libfirebird_sdbclo.so, if there's a way to point to it.
|
|
|
|
|
"--enable-firebird-sdbc"
|
|
|
|
|
;; XXX: PDFium support requires fetching an external tarball and
|
|
|
|
|
;; patching the build scripts to work with GCC5. Try enabling this
|
|
|
|
|
;; when our default compiler is >=GCC 6.
|
|
|
|
|
"--disable-pdfium"
|
|
|
|
|
"--without-doxygen"
|
2022-11-26 02:02:25 +00:00
|
|
|
|
;; Avoid linker errors about non-virtual thunks on i686-linux.
|
|
|
|
|
"--enable-lto"
|
|
|
|
|
;; Avoid errors rebuilding the Gtk icon cache, at least on i686-linux.
|
|
|
|
|
"--without-galleries"
|
2022-10-10 15:48:55 +00:00
|
|
|
|
"--enable-build-opensymbol")))
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(native-inputs
|
2022-08-10 20:54:31 +00:00
|
|
|
|
(list bison
|
|
|
|
|
cppunit
|
|
|
|
|
flex
|
2023-11-08 02:30:18 +00:00
|
|
|
|
frozen ;header-only library
|
2022-08-10 20:54:31 +00:00
|
|
|
|
pkg-config
|
|
|
|
|
python-wrapper
|
|
|
|
|
which
|
|
|
|
|
ziptime))
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(inputs
|
2022-08-10 20:54:31 +00:00
|
|
|
|
(list bluez
|
|
|
|
|
boost
|
|
|
|
|
box2d
|
|
|
|
|
clucene
|
|
|
|
|
cups
|
|
|
|
|
dbus-glib
|
2023-03-08 08:14:13 +00:00
|
|
|
|
dragonbox
|
2022-08-10 20:54:31 +00:00
|
|
|
|
firebird
|
|
|
|
|
fontconfig
|
|
|
|
|
fontforge
|
|
|
|
|
gconf
|
|
|
|
|
glew
|
|
|
|
|
glm
|
|
|
|
|
gnupg
|
|
|
|
|
gobject-introspection
|
|
|
|
|
gperf
|
|
|
|
|
gpgme
|
|
|
|
|
graphite2
|
|
|
|
|
gst-plugins-base
|
|
|
|
|
gtk+
|
2023-07-17 08:05:03 +00:00
|
|
|
|
harfbuzz
|
2022-08-10 20:54:31 +00:00
|
|
|
|
hunspell
|
|
|
|
|
hyphen
|
|
|
|
|
libabw
|
|
|
|
|
libcdr
|
|
|
|
|
libcmis
|
|
|
|
|
libcuckoo
|
2022-11-27 16:39:52 +00:00
|
|
|
|
libfixmath
|
2022-08-10 20:54:31 +00:00
|
|
|
|
libjpeg-turbo
|
|
|
|
|
libe-book
|
|
|
|
|
libepubgen
|
|
|
|
|
libetonyek
|
|
|
|
|
libexttextcat
|
|
|
|
|
libfreehand
|
|
|
|
|
liblangtag
|
|
|
|
|
;; XXX: Perhaps this should be propagated from xmlsec.
|
|
|
|
|
libltdl
|
|
|
|
|
libmspub
|
|
|
|
|
libmwaw
|
|
|
|
|
libnumbertext
|
|
|
|
|
libodfgen
|
|
|
|
|
libpagemaker
|
|
|
|
|
libqxp
|
|
|
|
|
libstaroffice
|
2022-11-27 16:39:52 +00:00
|
|
|
|
libtiff
|
2022-08-10 20:54:31 +00:00
|
|
|
|
libvisio
|
2022-11-27 16:39:52 +00:00
|
|
|
|
libwebp
|
2022-08-10 20:54:31 +00:00
|
|
|
|
libwpg
|
|
|
|
|
libwps
|
|
|
|
|
libxrandr
|
|
|
|
|
libxrender
|
|
|
|
|
libxslt
|
|
|
|
|
libxt
|
|
|
|
|
libzmf
|
|
|
|
|
lpsolve
|
|
|
|
|
`(,mariadb "dev")
|
|
|
|
|
mdds
|
|
|
|
|
mythes
|
|
|
|
|
neon
|
|
|
|
|
nspr
|
|
|
|
|
nss
|
|
|
|
|
openldap
|
|
|
|
|
openssl
|
|
|
|
|
orcus
|
|
|
|
|
perl
|
|
|
|
|
perl-archive-zip
|
|
|
|
|
poppler
|
|
|
|
|
postgresql
|
|
|
|
|
python
|
|
|
|
|
python-lxml
|
|
|
|
|
qrcodegen-cpp
|
|
|
|
|
redland
|
|
|
|
|
sane-backends
|
|
|
|
|
unixodbc
|
|
|
|
|
unzip
|
|
|
|
|
vigra
|
|
|
|
|
xdg-utils
|
|
|
|
|
xmlsec-nss
|
|
|
|
|
zip
|
|
|
|
|
zxing-cpp))
|
2022-10-10 15:48:55 +00:00
|
|
|
|
(home-page "https://www.libreoffice.org/")
|
|
|
|
|
(synopsis "Office suite")
|
|
|
|
|
(description "LibreOffice is a comprehensive office suite. It contains
|
2015-05-29 21:49:19 +00:00
|
|
|
|
a number of components: Writer, a word processor; Calc, a spreadsheet
|
|
|
|
|
application; Impress, a presentation engine; Draw, a drawing and
|
|
|
|
|
flowcharting application; Base, a database and database frontend;
|
|
|
|
|
Math for editing mathematics.")
|
2022-10-10 15:48:55 +00:00
|
|
|
|
(properties
|
|
|
|
|
'((release-monitoring-url
|
|
|
|
|
. "https://www.libreoffice.org/download/download-libreoffice/")))
|
|
|
|
|
(license license:mpl2.0)))
|