Package Details: catdvi 0.14-8

Git Clone URL: https://aur.archlinux.org/catdvi.git (read-only, click to copy)
Package Base: catdvi
Description: A DVI to plain text translator
Upstream URL: http://catdvi.sourceforge.net
Licenses: GPL
Submitter: xyproto
Maintainer: Rhinoceros
Last Packager: Rhinoceros
Votes: 2
Popularity: 0.001644
First Submitted: 2019-03-27 09:19 (UTC)
Last Updated: 2024-03-19 03:08 (UTC)

Latest Comments

Rhinoceros commented on 2024-02-27 05:31 (UTC) (edited on 2024-03-19 03:09 (UTC) by Rhinoceros)

Thanks @mattalxndr. I tested in a clean chroot, and I also needed to install texlive-latexextra and texlive-langeuropean before I could build this package. I think maybe some dependencies changed, because I don't have texlive-langeuropean installed on my system now, and this package won't build without it.

Do you know if these would be normal dependencies, or just build dependencies?

EDIT: no reply, so I've just added these to makedepends. Please let me know if this doesn't work for anyone, and I can add these to the normal depends.

mattalxndr commented on 2024-02-27 04:59 (UTC)

In order to successfully build this package, I had to install the following packages first:

  • texlive-langeuropean
  • texlive-latexextra

They should either be added as dependencies, or maybe the build command should be reconfigured.

Rhinoceros commented on 2023-06-13 22:30 (UTC)

@darosio I think that is correct. If you like, you could open a task in the official repos so that the recoll maintainer adds this.

darosio commented on 2023-06-13 13:49 (UTC)

This seems to be an optional deps for recoll (recollindex).

Rhinoceros commented on 2022-04-23 00:30 (UTC)

Thank you @bart. Fixed!

bart commented on 2022-04-22 10:14 (UTC)

This does not compile any more with recent gcc. Adding the following patch fixes the issue:

--- catdvi-0.14-orig/bytesex.c
+++ catdvi-0.14/bytesex.c
@@ -36,7 +36,7 @@
                 } else {
                         panic("%s\n", strerror(errno));
                 }
-                panic(errmsg);
+                panic("%s", errmsg);
         }
 }