I needed to apply this patch to have a successful compilation. It looks like the last qt5-webkit moved the QtWebKit/QWebView header to QtWebKitWidgets/QWebView.
Please use and amend this patch at will ;)
(For some reason, urls
are changed to <urls>
in the markup)
commit d4e03ce21870c0ac6d09afeca0653a442414190b (HEAD -> master)
Author: Paul Morelle <madprog@htkc.org>
Date: Sun Dec 16 13:13:03 2018 +0100
qt5-webkit moved QWebKit/QWebView to QWebKitWidgets
diff --git a/PKGBUILD b/PKGBUILD
index [`921e81d`](https://aur.archlinux.org/cgit/aur.git/commit/?h=openboard&id=921e81d)..b576623 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,11 +11,13 @@ source=("<https://github.com/OpenBoard-org/OpenBoard/archive/v>$pkgver.tar.gz"
"<https://github.com/OpenBoard-org/OpenBoard-ThirdParty/archive/master.zip>"
ssl10.patch
qchar.patch
+ qwebkit.patch
openboard.desktop)
md5sums=('a1e517fcf5af4991d72d77165652ee37'
'fa1ff089f0bcc15d2a510bb90cdd3002'
'9dbccb56e4079b75c606dc40c3e77f00'
'bf2c524f3897cfcfb4315bcd92d4206e'
+ 'ce18e13a42c371232d092fd47a1022fc'
'21d1749400802f8fc0669feaf77de683')
prepare() {
@@ -25,6 +27,7 @@ prepare() {
cd $srcdir/OpenBoard-$pkgver
patch -p1 < $srcdir/ssl10.patch
patch -p1 < $srcdir/qchar.patch
+ patch -p1 < $srcdir/qwebkit.patch
}
build() {
diff --git a/qwebkit.patch b/qwebkit.patch
new file mode 100644
index 0000000..0bf6e6a
--- /dev/null
+++ b/qwebkit.patch
@@ -0,0 +1,12 @@
+diff -u -ubr a/resources/forms/trapFlash.ui b/resources/forms/trapFlash.ui
+--- a/resources/forms/trapFlash.ui 2017-05-09 15:59:42.177965830 +0200
++++ b/resources/forms/trapFlash.ui 2017-05-09 16:00:08.547747097 +0200
+@@ -113,7 +113,7 @@
+ <customwidget>
+ <class>QWebView</class>
+ <extends>QWidget</extends>
+- <header>QtWebKit/QWebView</header>
++ <header>QtWebKitWidgets/QWebView</header>
+ </customwidget>
+ </customwidgets>
+ <resources/>
Pinned Comments
bartus commented on 2024-03-12 15:41 (UTC) (edited on 2024-03-13 09:39 (UTC) by bartus)
Since version
v1.7.0
the Qt5 backend is no longer actively maintained and supported.Control environment variable can be used to force build against
qt5
ENABLE_QT5=1
to build againstqt5
(default:off)Usage cases:
makepkg ENABLE_QT5=1
yay -S openboard --mflags="ENABLE_QT5=1"
Yay
users warning:If you want to build against
qt5
, you have to callpacman -S qt5-{base,declarative,multimedia,tools,svg,webchannel,webengine}
beforehand.fsiegert commented on 2023-01-16 12:04 (UTC)
@unphysicalix: That's correct, you have to rebuild after dependency packages are updated. Let me make this post sticky to avoid people running into this again and again.
If OpenBoard stops working and when starting it from the command line you get an error message of the type:
Then you most likely just need to rebuild OpenBoard (either with
makepkg
or with your favourite AUR helper) because a dependency package has been updated.(That's the one disadvantage of AUR packages. I don't know what the threshold is for the package to be migrated into the community repository instead.)