From owner-svn-ports-head@freebsd.org Mon Dec 26 10:00:12 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 140C7C8FED7; Mon, 26 Dec 2016 10:00:12 +0000 (UTC) (envelope-from rakuco@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 CAB601B28; Mon, 26 Dec 2016 10:00:11 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBQA0AHC027680; Mon, 26 Dec 2016 10:00:10 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBQA0A6s027675; Mon, 26 Dec 2016 10:00:10 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201612261000.uBQA0A6s027675@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Mon, 26 Dec 2016 10:00:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429488 - in head: devel/dbus-qt5 devel/qt5-buildtools net/qt5-network print/qt5-printsupport 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: Mon, 26 Dec 2016 10:00:12 -0000 Author: rakuco Date: Mon Dec 26 10:00:10 2016 New Revision: 429488 URL: https://svnweb.freebsd.org/changeset/ports/429488 Log: Drop post-configure target from several Qt5 ports. Qt's configure script already creates all the necessary Makefiles for the directories we need to build, so there is no need to run qmake again in post-configure. Reviewed by: tcberner, Adriaan de Groot Differential Revision: https://reviews.freebsd.org/D8899 Modified: head/devel/dbus-qt5/Makefile head/devel/qt5-buildtools/Makefile head/net/qt5-network/Makefile head/print/qt5-printsupport/Makefile Modified: head/devel/dbus-qt5/Makefile ============================================================================== --- head/devel/dbus-qt5/Makefile Mon Dec 26 09:48:26 2016 (r429487) +++ head/devel/dbus-qt5/Makefile Mon Dec 26 10:00:10 2016 (r429488) @@ -24,12 +24,6 @@ TOOLS= qdbuscpp2xml qdbusxml2cpp QT_DEFINES= DBUS QT_CONFIG= dbus -post-configure: -.for t in ${TOOLS} - @cd ${WRKSRC}/src/tools/${t} && \ - ${SETENV} ${QMAKE_ENV} ${WRKSRC}/bin/qmake ${QMAKE_ARGS} -.endfor - post-build: .for t in ${TOOLS} @cd ${WRKSRC}/src/tools/${t} && \ Modified: head/devel/qt5-buildtools/Makefile ============================================================================== --- head/devel/qt5-buildtools/Makefile Mon Dec 26 09:48:26 2016 (r429487) +++ head/devel/qt5-buildtools/Makefile Mon Dec 26 10:00:10 2016 (r429488) @@ -21,12 +21,6 @@ INSTALL_WRKSRC= ${BUILD_WRKSRC} MORE_WRKSRCS= src/tools/moc \ src/tools/rcc -post-configure: -.for d in ${MORE_WRKSRCS} - @cd ${WRKSRC}/${d} && \ - ${SETENV} ${QMAKE_ENV} ${WRKSRC}/bin/qmake ${QMAKE_ARGS} -.endfor - post-build: .for d in ${MORE_WRKSRCS} @cd ${WRKSRC}/${d} && \ Modified: head/net/qt5-network/Makefile ============================================================================== --- head/net/qt5-network/Makefile Mon Dec 26 09:48:26 2016 (r429487) +++ head/net/qt5-network/Makefile Mon Dec 26 10:00:10 2016 (r429488) @@ -29,10 +29,6 @@ post-patch: ${BUILD_WRKSRC}/ssl/qsslsocket_openssl.cpp \ ${BUILD_WRKSRC}/ssl/qsslsocket_openssl_symbols.cpp -post-configure: - @cd ${WRKSRC}/src/plugins/bearer/generic && \ - ${SETENV} ${QMAKE_ENV} ${WRKSRC}/bin/qmake ${QMAKE_ARGS} - post-build: @cd ${WRKSRC}/src/plugins/bearer/generic && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ Modified: head/print/qt5-printsupport/Makefile ============================================================================== --- head/print/qt5-printsupport/Makefile Mon Dec 26 09:48:26 2016 (r429487) +++ head/print/qt5-printsupport/Makefile Mon Dec 26 10:00:10 2016 (r429488) @@ -34,12 +34,6 @@ QT_DEFINES+= -CUPS QT_CONFIG+= -cups .endif -post-configure: -.if ${PORT_OPTIONS:MCUPS} - @cd ${WRKSRC}/src/plugins/${PORTNAME}/cups && \ - ${SETENV} ${QMAKE_ENV} ${WRKSRC}/bin/qmake ${QMAKE_ARGS} -.endif - post-build: .if ${PORT_OPTIONS:MCUPS} @cd ${WRKSRC}/src/plugins/${PORTNAME}/cups && \