41 lines
973 B
Makefile
41 lines
973 B
Makefile
# Created by: Golyashov Sergei <svvord@mail.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kdevplatform
|
|
PORTVERSION= ${KDEVELOP_VERSION:S/4./1./}
|
|
CATEGORIES= devel kde
|
|
MASTER_SITES= ${MASTER_SITE_KDE}
|
|
MASTER_SITE_SUBDIR= ${KDEVELOP_BRANCH}/kdevelop/${KDEVELOP_VERSION}/src
|
|
DIST_SUBDIR= KDE
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Set of libraries for KDE IDE-like programs
|
|
|
|
LIB_DEPENDS= svn_client-1:${PORTSDIR}/devel/subversion \
|
|
boost_thread:${PORTSDIR}/devel/boost-libs \
|
|
qjson:${PORTSDIR}/devel/qjson \
|
|
grantlee_gui:${PORTSDIR}/devel/grantlee
|
|
|
|
USE_KDE4= kate_run kdehier kdelibs kdeprefix automoc4
|
|
USE_QT4= qmake_build moc_build uic_build rcc_build \
|
|
corelib designer_build gui webkit
|
|
USE_BZIP2= yes
|
|
USES= cmake
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_SUB+= SHLIB_VER=7.0.0 \
|
|
SHLIB_SHVER=7
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CMAKE_ARGS+= -DBUILD_po:BOOL=Off
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|