blob: 6033bd649e23847cf558a7c23baa3c7c7b356f65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $FreeBSD$
PORTNAME= qev
DISTVERSION= ${QT5_VERSION}
PORTREVISION= 1
CATEGORIES= x11
PKGNAMEPREFIX= qt5-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt QWidget events introspection tool
USES= compiler:c++11-lang qmake qt-dist:5,tools
USE_QT= core widgets
WRKSRC_SUBDIR= src/${PORTNAME}
# qev is not connected to qttool's build system, so we cannot just run qmake qt-dist:5,tools
# and set {BUILD,INSTALL}_WRKSRC.
# Instead, we run qmake qt-dist:5,tools from src/${PORTNAME} but need to copy .qmake qt-dist:5,tools.conf to
# it for all required variables to be set (MODULE_VERSION etc).
post-patch:
${CP} ${WRKSRC}/../../.qmake.conf ${WRKSRC}
.include <bsd.port.mk>
|