Search Criteria
Package Details: pdf-over 4.4.7-2
Package Actions
| Git Clone URL: | https://aur.archlinux.org/pdf-over.git (read-only, click to copy) |
|---|---|
| Package Base: | pdf-over |
| Description: | Graphical tool for creating PAdES conforming PDF signatures |
| Upstream URL: | https://technology.a-sit.at/en/pdf-over/ |
| Licenses: | custom:EUPL-1.2 |
| Submitter: | kfrx |
| Maintainer: | kfrx |
| Last Packager: | kfrx |
| Votes: | 2 |
| Popularity: | 0.26 |
| First Submitted: | 2021-07-16 15:27 (UTC) |
| Last Updated: | 2025-12-28 17:22 (UTC) |
Dependencies (3)
- bash (bash-gitAUR, bash-devel-gitAUR)
- jre21-openjdk (openjdk-zulu21-ca-fx-binAUR, zing-21-binAUR, openjdk-liberica21-full-binAUR, jre21-zulu-binAUR, jdk21-openjdk)
- libfido2 (libfido2-fullAUR) (optional) – FIDO2 support
Latest Comments
mkurz commented on 2025-12-11 11:26 (UTC) (edited on 2025-12-11 11:39 (UTC) by mkurz)
This package currently has two problems:
First: Running this package on KDE Plasma on pure Wayland will not show the correct application icon (the one in the title bar).
Second: Besides the app icon, the package does not work correctly when using pure Wayland anyway, the preview of the PDF to place the signature is not shown.
The first problem is because the
*.desktopfile name is wrong. Currently it ispdf-over.desktopbut it should bePDF-Over.desktop. Why? Because wayland is looking for information about the application in it's corresponding desktop file. And to look up the desktop file it uses the applications app-id. You can find that app id by running (under wayland!)So that's why the correct name of the desktop file here is
PDF-Over.desktop. Actually if you install PDF-Over from their download page the name of the desktop file is correct, it will be placec under~/.local/share/applications/PDF-Over.desktop.For the second problem, we need to run the app with
GDK_BACKEND=x11,waylandto force it to use Xwayland when running in a pure Wayland environment. Actually if you install PDF-Over from their download page, their start script does exactly that. See https://github.com/a-sit/PDF-Over/blob/pdf-over-4.4.7/pdf-over-gui/src/main/resources/scripts/pdf-over_linux.sh#L3Here are the corresponding commits:
https://github.com/a-sit/PDF-Over/commit/61176d51b2d825780de5aced27f8f298d17dd251
https://github.com/a-sit/PDF-Over/commit/4f6465b50e61ddbd36a1a113078fbe1247192b46
To make things easy for you I pushed the fixes to a
pdf-over-fixesbranch here: https://github.com/mkurz/aur/commits/pdf-over-fixes/That branch contains two commits on top of the current master branch:
https://github.com/mkurz/aur/commit/bff50da02b2cac67228db5608f1f50fd8c8a7c5c
https://github.com/mkurz/aur/commit/be4a58cfcddf9e06b087e945a28e587375f213f7
You can apply them easily with:
Afterwards to release a new version please do not forget to bump
pkgrelto2.Thanks