blob: 55b0549a2342d6f614dc714b179e109445687b52 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Created by: Mina R Waheeb <syncer@gmail.com>
# $FreeBSD$
PORTNAME= qtscriptgenerator
PORTVERSION= 0.2.0
PORTREVISION= 4
CATEGORIES= devel
MAINTAINER= syncer@gmail.com
COMMENT= Tool that generates Qt bindings for Qt Script
BROKEN_armv6= fails to build: qtscript_QEasingCurve.cpp:332:32: cannot initialize a parameter of type 'QEasingCurve::EasingFunction' with an lvalue of type 'float'
BROKEN_armv7= fails to build: qtscript_QEasingCurve.cpp:332:32: cannot initialize a parameter of type 'QEasingCurve::EasingFunction' with an lvalue of type 'float'
USE_GITHUB= YES
GH_ACCOUNT= qt-labs
GH_TAGNAME= a6ce388
OPTIONS_DEFINE= PHONON
PHONON_DESC= Build Phonon support
OPTIONS_DEFAULT= PHONON
USES= gmake qmake
USE_QT4= corelib declarative designer doc help help-tools gui \
iconengines imageformats inputmethods linguist network \
opengl pixeltool porting qdbusviewer \
qt3support qtestlib qvfb script scripttools \
sql svg webkit xml xmlpatterns xmlpatterns-tool \
moc_build rcc_build uic_build
USE_LDCONFIG= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPHONON}
USE_QT4+= phonon
PLIST_SUB+= PHONON=""
.else
EXTRA_PATCHES= ${FILESDIR}/extra-patch-no_phonon
PLIST_SUB+= PHONON="@comment "
.endif
do-configure:
@cd ${WRKSRC}/generator && \
${SETENV} ${CONFIGURE_ENV} ${QMAKE} ${QMAKE_ARGS}
do-build:
@echo "---> Building generator"
@cd ${WRKSRC}/generator && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${_MAKE_JOBS} && \
${SETENV} ${CONFIGURE_ENV} ./generator \
--include-paths=${PREFIX}/include/:${PREFIX}/include/qt4/
@echo "---> Configuring generated files"
@cd ${WRKSRC}/qtbindings && \
${SETENV} ${CONFIGURE_ENV} ${QMAKE} ${QMAKE_ARGS} \
INCLUDEPATH+=${PREFIX}/include/qt4/phonon \
LIBS+=-L${PREFIX}/lib
@echo "---> Building generated files"
@cd ${WRKSRC}/qtbindings && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${_MAKE_JOBS}
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/${QT_PLUGINDIR_REL}/script
cd ${WRKSRC}/plugins/script && \
${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/${QT_PLUGINDIR_REL}/script
.include <bsd.port.mk>
|