With commits from avilla@, makc@, rakuco@ and Schaich Alonso. The upstream announcement can be found in [1]. [1] http://www.kde.org/announcements/announce-4.10.4.php clang support should be more stable now, with clang being recognized by kdelibs4 and being passed the correct flags to build other ports. Additionally, all ports being committed have been verified to build with -CURRENT's clang 3.3 on an amd64 tinderbox (special thanks go to swills@ for providing it). Work on the newly-released 4.10.5 will begin shortly.
38 lines
1 KiB
Makefile
38 lines
1 KiB
Makefile
# Created by: Raphael Kubo da Costa <rakuco@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nepomuk-core
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
CATEGORIES= sysutils kde
|
|
MASTER_SITES= ${MASTER_SITE_KDE}
|
|
MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src
|
|
DIST_SUBDIR= KDE/${PORTVERSION}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Core Nepomuk system libraries and services for KDE
|
|
|
|
LIB_DEPENDS= poppler-qt4:${PORTSDIR}/graphics/poppler-qt4 \
|
|
tag.1:${PORTSDIR}/audio/taglib \
|
|
exiv2.12:${PORTSDIR}/graphics/exiv2 \
|
|
swscale${FFMPEG_SUFFIX}:${PORTSDIR}/multimedia/ffmpeg${FFMPEG_SUFFIX}
|
|
|
|
CONFLICTS_INSTALL= kde-runtime-4.[7-8].*
|
|
|
|
USE_XZ= yes
|
|
USE_KDE4= kdeprefix kdehier automoc4 kdelibs ontologies soprano
|
|
USES= cmake:outsource
|
|
USE_QT4= corelib dbus gui qmake_build moc_build rcc_build uic_build
|
|
USE_LDCONFIG= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
MAKE_ENV= XDG_CONFIG_HOME=/dev/null
|
|
|
|
SUB_FILES= nepomuk-env.sh
|
|
|
|
# supported versions: ffmpeg1, ffmpeg-devel
|
|
FFMPEG_SUFFIX?= 1
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/env
|
|
${INSTALL_SCRIPT} ${WRKDIR}/nepomuk-env.sh ${PREFIX}/env
|
|
|
|
.include <bsd.port.mk>
|