From owner-svn-ports-all@freebsd.org Wed Jan 17 13:51:57 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23973E71B1A; Wed, 17 Jan 2018 13:51:57 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F1F4670724; Wed, 17 Jan 2018 13:51:56 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 50BFB10492; Wed, 17 Jan 2018 13:51:56 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0HDpukx098830; Wed, 17 Jan 2018 13:51:56 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0HDpuVq098828; Wed, 17 Jan 2018 13:51:56 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201801171351.w0HDpuVq098828@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Wed, 17 Jan 2018 13:51:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459255 - in head/sysutils/knutclient-kde4: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/sysutils/knutclient-kde4: . files X-SVN-Commit-Revision: 459255 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jan 2018 13:51:57 -0000 Author: tcberner Date: Wed Jan 17 13:51:55 2018 New Revision: 459255 URL: https://svnweb.freebsd.org/changeset/ports/459255 Log: sysutils/knutclient-kde4, add debian patch to fix build with clang6 PR: 224669 Added: head/sysutils/knutclient-kde4/files/ head/sysutils/knutclient-kde4/files/patch-debian_git-6337fa (contents, props changed) Modified: head/sysutils/knutclient-kde4/Makefile Modified: head/sysutils/knutclient-kde4/Makefile ============================================================================== --- head/sysutils/knutclient-kde4/Makefile Wed Jan 17 13:44:16 2018 (r459254) +++ head/sysutils/knutclient-kde4/Makefile Wed Jan 17 13:51:55 2018 (r459255) @@ -3,7 +3,7 @@ PORTNAME= knutclient PORTVERSION= 1.0.4 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= sysutils kde MASTER_SITES= ftp://ftp.buzuluk.cz/pub/alo/knutclient/stable/ \ http://www.ringofsaturn.com/distfiles/ \ Added: head/sysutils/knutclient-kde4/files/patch-debian_git-6337fa ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/knutclient-kde4/files/patch-debian_git-6337fa Wed Jan 17 13:51:55 2018 (r459255) @@ -0,0 +1,25 @@ +From 6337fac6fe3c566ffb61a2b4fe99f7d130915d90 Mon Sep 17 00:00:00 2001 +From: Dmitry Smirnov +Date: Sun, 21 Aug 2016 13:53:44 +1000 +Subject: New patch to fix FTBFS with gcc 6 (Closes: #811882). + + Thanks, Adrian Bunk. + + Description: Fix the build with gcc 6 + Author: Adrian Bunk + Bug-Debian: https://bugs.debian.org/811882 + +--- src/knutprefdlg.cpp ++++ src/knutprefdlg.cpp +@@ -957,9 +957,9 @@ + + QHBoxLayout *setFontLayout = new QHBoxLayout(); + QStringList fontsList; + KFontChooser::getFontList(fontsList, KFontChooser::SmoothScalableFonts); +- m_fontWidget = new KFontChooser(mainPageWidget, false, fontsList); ++ m_fontWidget = new KFontChooser(mainPageWidget, KFontChooser::NoDisplayFlags, fontsList); + setFontLayout->addWidget (m_fontWidget ,0); + topLayout->addLayout(setFontLayout); + + topLayout->addStretch( 20 ); +