blob: 36b624e8a2376efc0d793d0beef03c4ac6e5faed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=qt5-qtwebkit
_pkgname=qtwebkit-opensource-src
pkgver=5.9.1
pkgrel=4
pkgdesc="Qt 5 - WebKit components"
url="https://www.qt.io/"
arch="all"
options="!check"
license="LGPL-2.0 with exceptions OR GPL-3.0 with exceptions"
depends=""
depends_dev="qt5-qtdeclarative-dev gstreamer-dev gst-plugins-base-dev
libxslt-dev mesa-dev icu-dev libxext-dev glib-dev libxcomposite-dev
libxrender-dev
"
makedepends="$depends_dev bison flex fontconfig-dev gperf libjpeg-turbo-dev
libpng-dev libwebp-dev pcre-dev qt5-qtbase-dev ruby sqlite-dev zlib-dev"
subpackages="$pkgname-dev"
source="https://download.qt.io/official_releases/qt/${pkgver%.*}/$pkgver/submodules/$_pkgname-$pkgver.tar.xz
pic.patch
fix-rpath.patch
fix-execinfo.patch
0001-Add-ARM-64-support.patch
"
builddir="$srcdir"/$_pkgname-$pkgver
prepare() {
default_prepare
# remove some bundled
mkdir Source/ThirdParty/orig
mv Source/ThirdParty/gtest/ \
Source/ThirdParty/qunit/ \
Source/ThirdParty/orig/
syncqt.pl -version $pkgver Source/sync.profile
}
build() {
local _maybe_smaller=""
cd "$builddir"
# On 32-bit x86, ld.bfd will run out of memory if debugging information
# is built. See https://sourceware.org/bugzilla/show_bug.cgi?id=23470
# for more information.
case "$CARCH" in
pmmx) _maybe_smaller="QMAKE_CXXFLAGS_DEBUG+=-g0"
esac
qmake $_maybe_smaller
# /usr/include/fortify/stdlib.h:20:25: fatal error: stdlib.h: No such file or directory
# see: http://stackoverflow.com/questions/37218953/isystem-on-a-system-include-directory-causes-errors
# see: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71090
# see: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70129
qmake Source/JavaScriptCore/LLIntOffsetsExtractor.pro -o \
Source/JavaScriptCore/Makefile.LLIntOffsetsExtractor
sed -i 's:-isystem /usr/include ::' \
Source/JavaScriptCore/Makefile.LLIntOffsetsExtractor
make
}
package() {
cd "$builddir"
make install INSTALL_ROOT="$pkgdir"
sed -i -e 's:-L/home[^ ]\+::g' "$pkgdir"/usr/lib/pkgconfig/*.pc
}
sha512sums="79316ab746a230fdb290e28629d7cec5fca75119ba8868060742c682ab86490de9ffd8e517569aa7412f35fd709568dbb5f7d2d467bdb4461e192f8b05d6f1e5 qtwebkit-opensource-src-5.9.1.tar.xz
9a62a5e7af91c44311b517608262f88b5bc607e75dc5878dd08b0a0872ec03fb7a566df0a41413f7e60beb1b9880e24f084b90c38ed50d4219ec2ad6af9bd62f pic.patch
00d59c0cdb58ae8e7cf6bc3d03f133697e74c267ccebe12238bcdc274d4c90210b82c2d8bdf0e949cd43da13a4fd8a4c35fb54a00ed5102a4ac4d23aa002d0fe fix-rpath.patch
f17c2f4b90090c8f12e4ba1f2cbd7a9f496c8de024ba6e0d55b98e5b89ab89298aff84f39e81905e0491fe6bd11544633a8b191403a866e16ed654d44cf8dc6f fix-execinfo.patch
af5097d44f73de156ca31a5423136301dfc12ae693e20c4702bf3f1c6e16395f3912e9268582480ba3177021f37d4cae3b84d4b23eeb063fdc40f2444d3b34c8 0001-Add-ARM-64-support.patch"
|