From owner-svn-ports-head@freebsd.org Sun Oct 9 08:31:07 2016 Return-Path: Delivered-To: svn-ports-head@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 024A5C07800; Sun, 9 Oct 2016 08:31:07 +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 mx1.freebsd.org (Postfix) with ESMTPS id AC676A03; Sun, 9 Oct 2016 08:31:06 +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 u998V5H2021694; Sun, 9 Oct 2016 08:31:05 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u998V5F0021693; Sun, 9 Oct 2016 08:31:05 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201610090831.u998V5F0021693@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 9 Oct 2016 08:31:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423571 - head/multimedia/qt5-phonon4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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, 09 Oct 2016 08:31:07 -0000 Author: tcberner Date: Sun Oct 9 08:31:05 2016 New Revision: 423571 URL: https://svnweb.freebsd.org/changeset/ports/423571 Log: Remove the dependency on 'declarative' from multimedia/qt5-phonon4 USE_QT5=declarative aka Qt Quick1 has been put to rest upstream [1], and is no longer shipped with Qt5 [that's why it has been kept at 5.5.1 while the rest of Qt has been updated to 5.6.1]. Similar to arch [2] and debian [3] also get rid of it as a dependency for qt5-phonon4. [1] http://permalink.gmane.org/gmane.comp.lib.qt.releasing/1973 [2] https://git.archlinux.org/svntogit/packages.git/commit/trunk?h=packages/phonon&id=1e16901aa3991d10e94906316258759be8e6b3d7 [3] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=824957 Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D8163 Modified: head/multimedia/qt5-phonon4/Makefile Modified: head/multimedia/qt5-phonon4/Makefile ============================================================================== --- head/multimedia/qt5-phonon4/Makefile Sun Oct 9 08:27:32 2016 (r423570) +++ head/multimedia/qt5-phonon4/Makefile Sun Oct 9 08:31:05 2016 (r423571) @@ -2,6 +2,7 @@ PORTNAME= phonon PORTVERSION= 4.9.0 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= qt5- @@ -16,11 +17,12 @@ LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake:devel/extra-cmake-modules USES= cmake:outsource pathfix tar:xz -USE_QT5= core dbus declarative gui opengl widgets \ +USE_QT5= core dbus gui opengl widgets \ buildtools_build qmake_build CMAKE_ARGS= -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT:BOOL=TRUE \ -DPHONON_NO_PLATFORMPLUGIN:BOOL=TRUE \ -DPHONON_BUILD_DESIGNER_PLUGIN:BOOL=OFF \ + -DPHONON_BUILD_DECLARATIVE_PLUGIN:BOOL=OFF \ -DPHONON_BUILD_PHONON4QT5=ON USE_LDCONFIG= yes