mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
88360e4c12
This also fixes SET_LATE_CONFIGURE_ARGS with custom CONFIGURE_CMD. PR: 208294 Exp-run by: antoine Approved by: portmgr (antoine), perl (mat) Differential Revision: https://reviews.freebsd.org/D4158
65 lines
2.1 KiB
Makefile
65 lines
2.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= qmake
|
|
DISTVERSION= ${QT5_VERSION}
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= qt5-
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt Makefile generator
|
|
|
|
USE_QT5= # empty
|
|
USES= pkgconfig shebangfix
|
|
SHEBANG_FILES= mkspecs/macx-ios-clang/rename_main.sh
|
|
QT_DIST= base
|
|
REINPLACE_ARGS= -i ""
|
|
HAS_CONFIGURE= yes
|
|
# Disable everything to install minimal qconfig.pri.
|
|
CONFIGURE_ARGS= -no-accessibility -no-openssl -no-gui -no-cups \
|
|
-no-iconv -no-icu -no-dbus -no-xcb -no-opengl \
|
|
-no-glib -no-audio-backend -no-fontconfig \
|
|
-no-gtkstyle -no-xinput2 -no-xrender \
|
|
-no-evdev -no-xkbcommon -no-alsa \
|
|
-no-freetype -no-gif -no-harfbuzz -no-libjpeg \
|
|
-no-libpng -no-pulseaudio -no-widgets
|
|
# Features yet to be removed from qconfig.pri.
|
|
TBR_CONFIG= concurrent|inotify|xlib
|
|
QMAKESPEC= ${WRKSRC}/mkspecs/freebsd-${QMAKE_COMPILER}
|
|
INSTALL_TARGET= install_qmake install_mkspecs
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/${PORTNAME}
|
|
|
|
post-patch:
|
|
# Prevent qconfig.pri from being module dependent.
|
|
@${REINPLACE_CMD} -E -e '/"\$$QT_CONFIG +(${TBR_CONFIG})"/ d' \
|
|
${WRKSRC}/configure
|
|
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
|
|
${WRKSRC}/mkspecs/common/freebsd.conf
|
|
@${REINPLACE_CMD} -e 's|unix.conf|freebsd.conf|' \
|
|
${WRKSRC}/mkspecs/freebsd-icc/qmake.conf
|
|
|
|
# Add mkspec for Clang. For now, this means adjusting the existing
|
|
# unsupported/freebsd-clang mkspec while we get it into shape upstream.
|
|
@${MV} ${WRKSRC}/mkspecs/unsupported/freebsd-clang \
|
|
${WRKSRC}/mkspecs/freebsd-clang
|
|
@${REINPLACE_CMD} -e 's|(../|(|g' \
|
|
${WRKSRC}/mkspecs/freebsd-clang/qmake.conf
|
|
@${REINPLACE_CMD} -e 's|"../|"|g' \
|
|
${WRKSRC}/mkspecs/freebsd-clang/qplatformdefs.h
|
|
|
|
@${RM} ${WRKSRC}/mkspecs/*/*.orig
|
|
@${RM} -Rf ${WRKSRC}/mkspecs/freebsd-g++46
|
|
|
|
post-build:
|
|
# Complete configure stage to generate *.pri files.
|
|
@cd ${WRKSRC} && \
|
|
${SETENV} CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" \
|
|
CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" \
|
|
${CONFIGURE_ENV} ${CONFIGURE_CMD} ${CONFIGURE_ARGS}
|
|
# Cleanup qmodule.pri to make it module agnostic.
|
|
@${REINPLACE_CMD} -En -e '/^(CONFIG|QT_BUILD_PARTS|.*_DIR) / p' \
|
|
${WRKSRC}/mkspecs/qmodule.pri
|
|
|
|
.include <bsd.port.mk>
|