From owner-svn-ports-head@FreeBSD.ORG Sun May 24 17:05:51 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02A53419; Sun, 24 May 2015 17:05:51 +0000 (UTC) Received: from mail-wi0-x22e.google.com (mail-wi0-x22e.google.com [IPv6:2a00:1450:400c:c05::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8E8541918; Sun, 24 May 2015 17:05:50 +0000 (UTC) Received: by wicmc15 with SMTP id mc15so24813829wic.1; Sun, 24 May 2015 10:05:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=1aPPy+5isjgYLHka9UT/oOIBEbvC/r71ZLujFB9Tnsk=; b=pJa2fhXmhVujRhLW0+Xbu4CWQNXU2EWJK+NHGxPg9MqzJZjxFjH+fPyEe8WmwQ6Qzw lonKQjxS97SSEoFzXC78tpJqSEylQjHJu7NKvcSkNfAbdTaoaOpi3QFhPn7JuYbxeICK 11FhNhl05AJP3s6BF1gNniSVnU+GaU1z3fEvdlxFAU1DJG9+DVlNqonkiEp9NM6CAInv J4hV/vk7hg3rahUK2i5olZpivRRMnldLMuPV2luRVGyjRJ6TTvkZMstCBM/ARPTUKFvn WNumRvG51wWUIw5zOeGjhBWxEAO3sfTeyT9T0tl2WS+TE0TfBz5CZ5OXEDLz8scWC9e7 ARUA== MIME-Version: 1.0 X-Received: by 10.180.91.40 with SMTP id cb8mr24430055wib.64.1432487148649; Sun, 24 May 2015 10:05:48 -0700 (PDT) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.194.17.130 with HTTP; Sun, 24 May 2015 10:05:48 -0700 (PDT) In-Reply-To: <201505241641.t4OGfHT6092907@svn.freebsd.org> References: <201505241641.t4OGfHT6092907@svn.freebsd.org> Date: Sun, 24 May 2015 17:05:48 +0000 X-Google-Sender-Auth: jQ1xaZYRg1T1ai7Gr-fsSDQ0l5Y Message-ID: Subject: Re: svn commit: r387281 - in head: Mk devel/qt5-core x11-toolkits/qt5-declarative x11-toolkits/qt5-gui From: Antoine Brodin To: Tijl Coosemans Cc: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 May 2015 17:05:51 -0000 On Sun, May 24, 2015 at 4:41 PM, Tijl Coosemans wrote: > Author: tijl > Date: Sun May 24 16:41:16 2015 > New Revision: 387281 > URL: https://svnweb.freebsd.org/changeset/ports/387281 > > Log: > Qt 5.3 removed runtime detection of SSE2 so it needs to be configured > with -no-sse2 at buildtime on i386. > > PR: 198738, 200258 > Reported by: sasamotikomi@gmail.com > Approved by: maintainer timeout (2 weeks) > Hi, This doesn't seem to work with fmake: "/usr/ports/Mk/bsd.qt.mk", line 149: Malformed conditional (${ARCH} == i386 && !(defined(MACHINE_CPU) && ${MACHINE_CPU:Msse2})) Cheers, Antoine > Modified: > head/Mk/bsd.qt.mk > head/devel/qt5-core/Makefile > head/x11-toolkits/qt5-declarative/Makefile > head/x11-toolkits/qt5-gui/Makefile > > Modified: head/Mk/bsd.qt.mk > ============================================================================== > --- head/Mk/bsd.qt.mk Sun May 24 16:27:37 2015 (r387280) > +++ head/Mk/bsd.qt.mk Sun May 24 16:41:16 2015 (r387281) > @@ -146,6 +146,9 @@ CONFIGURE_ARGS+=-nomake examples -nomake > -qmldir ${PREFIX}/${QT_QMLDIR_REL} \ > -examplesdir ${PREFIX}/${QT_EXAMPLEDIR_REL} \ > -testsdir ${PREFIX}/${QT_TESTDIR_REL} > +. if ${ARCH} == i386 && !(defined(MACHINE_CPU) && ${MACHINE_CPU:Msse2}) > +CONFIGURE_ARGS+=-no-sse2 > +. endif > . endif > > . if defined(WANT_QT_DEBUG) || defined(WITH_DEBUG) > > Modified: head/devel/qt5-core/Makefile > ============================================================================== > --- head/devel/qt5-core/Makefile Sun May 24 16:27:37 2015 (r387280) > +++ head/devel/qt5-core/Makefile Sun May 24 16:41:16 2015 (r387281) > @@ -2,7 +2,7 @@ > > PORTNAME= core > DISTVERSION= ${QT5_VERSION} > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= devel > PKGNAMEPREFIX= qt5- > > > Modified: head/x11-toolkits/qt5-declarative/Makefile > ============================================================================== > --- head/x11-toolkits/qt5-declarative/Makefile Sun May 24 16:27:37 2015 (r387280) > +++ head/x11-toolkits/qt5-declarative/Makefile Sun May 24 16:41:16 2015 (r387281) > @@ -2,6 +2,7 @@ > > PORTNAME= declarative > DISTVERSION= ${QT5_VERSION} > +PORTREVISION= 1 > CATEGORIES= x11-toolkits > PKGNAMEPREFIX= qt5- > > > Modified: head/x11-toolkits/qt5-gui/Makefile > ============================================================================== > --- head/x11-toolkits/qt5-gui/Makefile Sun May 24 16:27:37 2015 (r387280) > +++ head/x11-toolkits/qt5-gui/Makefile Sun May 24 16:41:16 2015 (r387281) > @@ -2,7 +2,7 @@ > > PORTNAME= gui > DISTVERSION= ${QT5_VERSION} > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= x11-toolkits graphics > PKGNAMEPREFIX= qt5- > >