blob: d60e153214e55e30be340a5133951fc43f763780 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
PORTNAME= qt6
DISTVERSION= ${QT6_VERSION}
CATEGORIES= devel
MAINTAINER= kde@FreeBSD.org
COMMENT= Cross-platform application and UI framework (metaport)
WWW= https://www.qt.io/
USES= metaport qt:6
USE_QT= ${_USE_QT_ALL:S/$/:run/}
# Generate distinfo for all Qt components
makesum:
@for component in $$(${MAKE} -V_USE_QT_ALL); do \
port=$$(${MAKE} -Vqt-$${component}_PORT | ${SED} -e 's|@.*$$||'); \
${MAKE} -C ${.CURDIR:H:H}/$${port} makesum; \
done
.include <bsd.port.mk>
|