svn commit: r429488 - in head: devel/dbus-qt5 devel/qt5-buildtools net/qt5-network print/qt5-printsupport

Raphael Kubo da Costa rakuco at FreeBSD.org
Mon Dec 26 10:00:12 UTC 2016


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 <groot at kde.org>
  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 && \


More information about the svn-ports-all mailing list