In r428918 the commit to change the way pkgconfig-filepaths are fixed for Qt5 ports did not include a PORTREVISION bump for devel/qmake5. This is however necessary, as a) the package of devel/qmake5 changes by that bit b) if a qt5 port is rebuilt without a "fixed" by r428918 version of qmake5, it will fail to stage. Reported by: rakuco Approved by: rakuco (mentor)
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= qmake
|
|
DISTVERSION= ${QT5_VERSION}
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= qt5-
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt Makefile generator
|
|
|
|
USE_QT5= # empty
|
|
USES= pkgconfig shebangfix
|
|
SHEBANG_FILES= util/harfbuzz/update-harfbuzz \
|
|
util/unicode/x11/makeencodings \
|
|
src/3rdparty/freetype/src/tools/afblue.pl
|
|
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
|
|
@${RM} ${WRKSRC}/mkspecs/*/*.orig
|
|
|
|
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>
|