mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 19:36:28 -04:00
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@kde.org> Differential Revision: https://reviews.freebsd.org/D8899
40 lines
879 B
Makefile
40 lines
879 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= buildtools
|
|
DISTVERSION= ${QT5_VERSION}
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= qt5-
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt build tools
|
|
|
|
USE_QT5= qmake_build
|
|
QT_DIST= base
|
|
USES= perl5
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= -no-gui -no-xcb
|
|
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/src/tools/bootstrap
|
|
INSTALL_WRKSRC= ${BUILD_WRKSRC}
|
|
|
|
MORE_WRKSRCS= src/tools/moc \
|
|
src/tools/rcc
|
|
|
|
post-build:
|
|
.for d in ${MORE_WRKSRCS}
|
|
@cd ${WRKSRC}/${d} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
|
|
${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}
|
|
.endfor
|
|
|
|
post-install:
|
|
.for d in ${MORE_WRKSRCS}
|
|
@cd ${WRKSRC}/${d} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
|
|
${MAKE_ARGS} ${INSTALL_TARGET}
|
|
.endfor
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/syncqt.pl \
|
|
${STAGEDIR}${PREFIX}/${QT_BINDIR_REL}/syncqt.pl
|
|
|
|
.include <bsd.port.mk>
|