mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
d56984b056
Note: With this update several ports specific problems have been fixed. Qt4 headers and libraries have been moved to include/qt4 and lib/qt4. bsd.qt.mk defines QT_INCDIR and QT_LIBDIR now, which could be used in qt4-dependent ports if required. Thanks to: Max Brazhnikov Danny Pansters
63 lines
1.8 KiB
Makefile
63 lines
1.8 KiB
Makefile
# -*-mode: makefile-*-
|
|
# New ports collection makefile for: qt4-clucene
|
|
# Date created: Fri May 9 15:30:23 CEST 2008
|
|
# Whom: danny@ricin.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= clucene
|
|
PORTVERSION= ${QT4_VERSION}
|
|
PORTREVISION= 0
|
|
CATEGORIES?= textproc
|
|
MASTER_SITES= ${MASTER_SITE_QT}
|
|
PKGNAMEPREFIX= qt4-
|
|
DISTNAME= qt-x11-opensource-src-${PORTVERSION}
|
|
DIST_SUBDIR= KDE
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= QtCLucene full text search library wrapper
|
|
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= qmake_build corelib
|
|
QT_NONSTANDARD= yes
|
|
QT_DIST= yes
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_LDCONFIG= ${PREFIX}/lib/qt4
|
|
|
|
ALL_TARGET= first
|
|
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
|
|
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \
|
|
PATH=${WRKSRC}/bin:$$PATH
|
|
|
|
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
|
|
src/dbus src/gui src/network src/opengl src/phonon \
|
|
src/qt3support src/script src/sql src/svg src/testlib \
|
|
src/tools src/xml src/xmlpatterns \
|
|
src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit
|
|
EXTRACT_AFTER_ARGS= | ${TAR} -xf -
|
|
.for dne in ${DO_NOT_EXTRACT}
|
|
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
|
|
.endfor
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/tools/assistant/lib/fulltextsearch
|
|
CONFIGURE_WRKSRC=${WRKSRC}/../../../../
|
|
|
|
pre-configure:
|
|
${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC}
|
|
${MKDIR} ${WRKSRC}/../../../../mkspecs
|
|
${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake
|
|
|
|
post-configure:
|
|
${REINPLACE_CMD} \
|
|
-e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
|
|
-e 's|.*$$(QMAKE).*||g' \
|
|
-e 's|-fno-exceptions ||g' \
|
|
${WRKSRC}/Makefile
|
|
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
|
|
-E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \
|
|
${WRKSRC}/../../../../lib/pkgconfig/QtCLucene.pc
|
|
|
|
.include <bsd.port.mk>
|