Index: head/www/qupzilla-qt5/Makefile =================================================================== --- head/www/qupzilla-qt5/Makefile (revision 470011) +++ head/www/qupzilla-qt5/Makefile (revision 470012) @@ -1,61 +1,61 @@ # $FreeBSD$ PORTNAME= qupzilla PORTVERSION= 1.8.9 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= https://github.com/QupZilla/${PORTNAME}/releases/download/v${PORTVERSION}/ PKGNAMESUFFIX= -qt5 DISTNAME= QupZilla-${PORTVERSION} MAINTAINER= rezny@FreeBSD.org COMMENT= Web browser based on WebKit engine and Qt Framework LICENSE= GPLv3 LIB_DEPENDS= libhunspell-1.6.so:textproc/hunspell CONFLICTS_INSTALL= ${PORTNAME}-qt4* USES= desktop-file-utils pkgconfig qmake ssl tar:xz USE_QT5= core concurrent gui network printsupport script sql webkit \ widgets x11extras xml imageformats_run sql-sqlite3_run \ buildtools_build linguisttools_build USE_XORG= x11 USE_GL= gl CONFIGURE_ENV= QUPZILLA_PREFIX=${PREFIX}/ USE_LDCONFIG= yes INSTALLS_ICONS= yes PLIST_SUB= VERSION=${PORTVERSION} OPTIONS_DEFINE= DBUS DEBUG GNOMEKEYRING KWALLET OPTIONS_DEFAULT=DBUS OPTIONS_SUB= yes DBUS_USE= QT5=dbus DBUS_CONFIGURE_ENV_OFF= DISABLE_DBUS="true" GNOMEKEYRING_LIB_DEPENDS= libgnome-keyring.so:security/libgnome-keyring GNOMEKEYRING_CONFIGURE_ENV= GNOME_INTEGRATION="true" KWALLET_USES= kde:5 KWALLET_USE= KDE=wallet KWALLET_CONFIGURE_ENV= KDE_INTEGRATION="true" .include # work around for build failure in test plugin (single source file target) .if ${PORT_OPTIONS:MDEBUG} MAKE_JOBS_UNSAFE= yes .endif post-patch: @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ ${WRKSRC}/tests/autotests/qztoolstest.cpp \ ${WRKSRC}/src/lib/plugins/qtwebkit/spellcheck/speller.cpp @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' \ ${WRKSRC}/src/install.pri \ ${WRKSRC}/src/defines.pri \ ${WRKSRC}/src/lib/plugins/plugins.cpp .include Index: head/www/qupzilla-qt5/files/patch-git_ca2b5f22b =================================================================== --- head/www/qupzilla-qt5/files/patch-git_ca2b5f22b (nonexistent) +++ head/www/qupzilla-qt5/files/patch-git_ca2b5f22b (revision 470012) @@ -0,0 +1,44 @@ +commit ca2b5f22bedec6dbfa85863e8611ac6c40f1174c +Author: David Rosca +Date: Sun Dec 3 10:13:10 2017 +0100 + + SearchToolbar: Don't set shortcuts from UI file + + Fixes build with Qt 5.10 + + Closes #2515 + +--- src/lib/webtab/searchtoolbar.cpp.orig 2015-11-11 15:13:24 UTC ++++ src/lib/webtab/searchtoolbar.cpp +@@ -35,7 +35,9 @@ SearchToolBar::SearchToolBar(WebView* view, QWidget* p + + ui->closeButton->setIcon(IconProvider::standardIcon(QStyle::SP_DialogCloseButton)); + ui->next->setIcon(IconProvider::standardIcon(QStyle::SP_ArrowDown)); ++ ui->next->setShortcut(QKeySequence("Ctrl+G")); + ui->previous->setIcon(IconProvider::standardIcon(QStyle::SP_ArrowUp)); ++ ui->previous->setShortcut(QKeySequence("Ctrl+Shift+G")); + + connect(ui->closeButton, SIGNAL(clicked()), this, SLOT(hide())); + connect(ui->lineEdit, SIGNAL(textChanged(QString)), this, SLOT(findNext())); +--- src/lib/webtab/searchtoolbar.ui.orig 2015-11-11 15:13:24 UTC ++++ src/lib/webtab/searchtoolbar.ui +@@ -64,9 +64,6 @@ + 0 + + +- +- Ctrl+Shift+G +- + + true + +@@ -79,9 +76,6 @@ + 0 + 0 + +- +- +- Ctrl+G + + + true Property changes on: head/www/qupzilla-qt5/files/patch-git_ca2b5f22b ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property