mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/rekonq: Updated for version 0.5.0.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
f25c8bcb4a
commit
c296eed454
4 changed files with 28 additions and 9 deletions
16
network/rekonq/rekonq-CVE-2010-2536-fix.patch
Normal file
16
network/rekonq/rekonq-CVE-2010-2536-fix.patch
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
diff --git a/src/webpage.cpp b/src/webpage.cpp
|
||||||
|
index a63940b..ea2add6 100644
|
||||||
|
--- a/src/webpage.cpp
|
||||||
|
+++ b/src/webpage.cpp
|
||||||
|
@@ -577,8 +577,8 @@ QString WebPage::errorPage(QNetworkReply *reply)
|
||||||
|
return QString("Couldn't open the rekonqinfo.html file");
|
||||||
|
}
|
||||||
|
|
||||||
|
- QString title = i18n("Error loading: %1", reply->url().toString());
|
||||||
|
- QString urlString = reply->url().toString(QUrl::RemoveUserInfo | QUrl::RemoveQuery);
|
||||||
|
+ QString title = i18n("There was a problem while loading the page");
|
||||||
|
+ QString urlString = reply->url().toString(QUrl::RemoveUserInfo | QUrl::RemoveQuery | QUrl::RemovePath);
|
||||||
|
|
||||||
|
QString iconPath = QString("file://") + KIconLoader::global()->iconPath("dialog-warning" , KIconLoader::Small);
|
||||||
|
iconPath.replace(QL1S("16"), QL1S("128"));
|
||||||
|
|
|
@ -4,10 +4,10 @@
|
||||||
|
|
||||||
# Written by Branko Grubic <branko.grubic@gmail.com>
|
# Written by Branko Grubic <branko.grubic@gmail.com>
|
||||||
|
|
||||||
PRGNAM=rekonq
|
PRGNAM=rekonq
|
||||||
VERSION=${VERSION:-0.5.0}
|
VERSION=${VERSION:-0.5.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-2}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
if [ -z "$ARCH" ]; then
|
if [ -z "$ARCH" ]; then
|
||||||
case "$( uname -m )" in
|
case "$( uname -m )" in
|
||||||
|
@ -18,9 +18,9 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CWD=$(pwd)
|
CWD=$(pwd)
|
||||||
TMP=${TMP:-/tmp/SBo}
|
TMP=${TMP:-/tmp/SBo}
|
||||||
PKG=$TMP/package-$PRGNAM
|
PKG=$TMP/package-$PRGNAM
|
||||||
OUTPUT=${OUTPUT:-/tmp}
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
if [ "$ARCH" = "i486" ]; then
|
if [ "$ARCH" = "i486" ]; then
|
||||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
@ -36,7 +36,7 @@ else
|
||||||
LIBDIRSUFFIX=""
|
LIBDIRSUFFIX=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
rm -rf $PKG
|
rm -rf $PKG
|
||||||
mkdir -p $TMP $PKG $OUTPUT
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
@ -51,6 +51,9 @@ find . \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
-exec chmod 644 {} \;
|
-exec chmod 644 {} \;
|
||||||
|
|
||||||
|
## patch to fix Multiple cross-site scripting (XSS) vulnerabilities (CVE-2010-2536)
|
||||||
|
patch -p1 <$CWD/rekonq-CVE-2010-2536-fix.patch
|
||||||
|
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
cd build
|
cd build
|
||||||
cmake .. \
|
cmake .. \
|
||||||
|
|
|
@ -7,4 +7,4 @@ DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
MAINTAINER="Branko Grubic"
|
MAINTAINER="Branko Grubic"
|
||||||
EMAIL="branko.grubic@gmail.com"
|
EMAIL="branko.grubic@gmail.com"
|
||||||
APPROVED="rworkman"
|
APPROVED="dsomero"
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
# make exactly 11 lines for the formatting to be correct. It's also
|
# make exactly 11 lines for the formatting to be correct. It's also
|
||||||
# customary to leave one space after the ':'.
|
# customary to leave one space after the ':'.
|
||||||
|
|
||||||
|-----handy-ruler------------------------------------------------------|
|
|-----handy-ruler------------------------------------------------------|
|
||||||
rekonq: rekonq (KDE browser based on Webkit)
|
rekonq: rekonq (KDE browser based on Webkit)
|
||||||
rekonq:
|
rekonq:
|
||||||
rekonq: rekonq is a KDE browser based on Webkit. Its code is based on
|
rekonq: rekonq is a KDE browser based on Webkit. Its code is based on
|
||||||
|
|
Loading…
Reference in a new issue