9db5474187
to a lot of the recent clang6 fixes, but doesn't show up on amd64: ../../../../src/3rdparty/clucene/src/CLucene/queryParser/Lexer.cpp:120:23: error: non-constant -expression cannot be narrowed from type 'int' to 'wchar_t' in initializer list [-Wc++11-narrowing] This only becomes visible now that Qt4 atomics are fixed on aarch64 and the build gets to this point. Bump PORTREVISION to be on the safe side: it's a code change, after all. Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13991
53 lines
1.6 KiB
Makefile
53 lines
1.6 KiB
Makefile
# Created by: danny@ricin.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= clucene
|
|
DISTVERSION= ${QT4_VERSION}
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc
|
|
PKGNAMEPREFIX= qt4-
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt bindings for the CLucene full-text search library
|
|
|
|
USE_QT4= qmake_build corelib
|
|
QT_DIST= yes
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
|
|
|
|
ALL_TARGET= first
|
|
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
|
|
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
|
|
PATH=${WRKSRC}/bin:$$PATH
|
|
|
|
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
|
|
src/activeqt src/dbus src/gui src/multimedia src/network \
|
|
src/opengl src/openvg src/phonon src/qt3support \
|
|
src/s60installs src/s60main src/script src/scripttools \
|
|
src/sql src/svg src/testlib src/tools src/winmain src/xml \
|
|
src/xmlpatterns src/3rdparty/freetype src/3rdparty/libjpeg \
|
|
src/3rdparty/libmng src/3rdparty/libpng src/3rdparty/libtiff \
|
|
src/3rdparty/phonon src/3rdparty/webkit
|
|
.for dne in ${DO_NOT_EXTRACT}
|
|
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
|
|
.endfor
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/tools/assistant/lib/fulltextsearch
|
|
INSTALL_WRKSRC= ${BUILD_WRKSRC}
|
|
|
|
pre-configure:
|
|
${MKDIR} ${WRKSRC}/mkspecs
|
|
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
|
|
|
|
post-configure:
|
|
${REINPLACE_CMD} \
|
|
-e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
|
|
-e 's|.*$$(QMAKE).*||g' \
|
|
-e 's|-fno-exceptions ||g' \
|
|
${BUILD_WRKSRC}/Makefile
|
|
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
|
|
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
|
|
${WRKSRC}/lib/pkgconfig/QtCLucene.pc
|
|
|
|
.include <bsd.port.mk>
|