11278b64ad
clang 3.4 is pickier and refuses to work when passed flags it does not understand, such as -fno-check-new in this case. PR: ports/186873
70 lines
2.2 KiB
Makefile
70 lines
2.2 KiB
Makefile
# Created by: miwi
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= akonadi
|
|
PORTVERSION= 1.11.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases kde
|
|
MASTER_SITES= KDE/stable/${PORTNAME}/src
|
|
DIST_SUBDIR= KDE
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Storage server for KDE-Pim
|
|
|
|
LICENSE= LGPL21
|
|
|
|
LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs
|
|
# Let process generate meaningful backtrace on core dump.
|
|
LIB_DEPENDS+= libexecinfo.so:${PORTSDIR}/devel/libexecinfo
|
|
BUILD_DEPENDS= xsltproc:${PORTSDIR}/textproc/libxslt
|
|
|
|
USE_KDE4= kdehier kdeprefix automoc4 soprano
|
|
USES= cmake:outsource shared-mime-info compiler:c++11-lang
|
|
USE_QT4= corelib dbus gui network qtestlib_build sql xml \
|
|
moc_build qmake_build rcc_build uic_build
|
|
USE_BZIP2= yes
|
|
CMAKE_ARGS+= -DAKONADI_BUILD_TESTS:BOOL=FALSE \
|
|
-DINSTALL_QSQLITE_IN_QT_PREFIX:BOOL=TRUE \
|
|
-DCMAKE_REQUIRED_INCLUDES:STRING="${LOCALBASE}/include"
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_MULTI= DB
|
|
OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE
|
|
OPTIONS_SUB= yes # SQLITE
|
|
|
|
MYSQL_DESC= Install MySQL Qt plugin and server
|
|
MYSQL_USE= MYSQL=server
|
|
MYSQL_USE= QT4=sql-mysql_run
|
|
|
|
PGSQL_DESC= Install PostgreSQL Qt plugin
|
|
# Do not add a dependency on PostgreSQL server as someone preferring
|
|
# it over MySQL might like to use some advanced configuration, like a
|
|
# remote server.
|
|
#PGSQL_USE= PGSQL=server
|
|
PGSQL_USE= QT4=sql-pgsql_run
|
|
|
|
SQLITE_DESC= Enable SQLite backend
|
|
SQLITE_USE= SQLITE=3
|
|
SQLITE_CMAKE_OFF= -DAKONADI_BUILD_QSQLITE=off
|
|
|
|
OPTIONS_DEFAULT= MYSQL
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/akonadi.pc/ s|pkgconfig|../libdata/pkgconfig|' \
|
|
${PATCH_WRKSRC}/CMakeLists.txt
|
|
${REINPLACE_CMD} -e '/find_program/ s|mysqld|mysqld_safe ${LOCALBASE}/bin|g' \
|
|
${PATCH_WRKSRC}/server/CMakeLists.txt
|
|
${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \
|
|
${PATCH_WRKSRC}/server/src/storage/dbconfigmysql.cpp
|
|
# To avoid overflow, MySQL settings need to be lower than
|
|
# INT_MAX / kern.hz. This setting assumes kern.hz=2000, and
|
|
# it's nothing but a temporary hack.
|
|
${REINPLACE_CMD} -e '/wait_timeout/ s|31536000|1073741|' \
|
|
${PATCH_WRKSRC}/server/src/storage/*.conf
|
|
# Prevent updating MIME during build.
|
|
${REINPLACE_CMD} -e '/^update_xdg_mimetypes/ d' \
|
|
-e '/find_package(SharedMimeInfo/ d' \
|
|
${PATCH_WRKSRC}/CMakeLists.txt
|
|
|
|
.include <bsd.port.mk>
|