forked from Lainports/freebsd-ports
The 3.x series is based on KDE Frameworks 5, and some programs have been split into separate ports: - Sheets, Words & co are in editors/calligra. - Krita is in graphics/krita. - Kexi is in databases/kexi. - The calligra-l10n* ports are now part of editors/calligra itself. Okular support in editors/calligra and Marble support in textproc/kreport have been disabled for now because they need the KF5 version of those ports. Thanks to everyone who's tested it and worked on it in our area51 repository. Submitted by: Adrian de Groot <groot@kde.org>, tcberner, rakuco Reviewed by: rakuco, mat (earlier versions) Differential Revision: https://reviews.freebsd.org/D10167
31 lines
835 B
Makefile
31 lines
835 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= kdb
|
|
PORTVERSION= 3.0.0
|
|
CATEGORIES= databases kde
|
|
MASTER_SITES= KDE/stable/${PORTNAME}/src
|
|
DIST_SUBDIR= KDE/${PORTNAME}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Database connectivity and creation framework
|
|
|
|
LIB_DEPENDS= libicuuc.so:devel/icu
|
|
|
|
USES= cmake:outsource gettext kde:5 python:2 tar:xz
|
|
USE_KDE= coreaddons ecm i18n
|
|
USE_QT5= core gui network widgets xml \
|
|
buildtools_build qmake_build
|
|
|
|
# In the future, these options will be moved into slave ports
|
|
OPTIONS_DEFINE= SQLITE MYSQL PGSQL
|
|
OPTIONS_SUB= YES
|
|
OPTIONS_DEFAULT= ${OPTIONS_DEFINE}
|
|
|
|
SQLITE_USES= sqlite
|
|
SQLITE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Sqlite
|
|
MYSQL_USES= mysql
|
|
MYSQL_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_MySQL
|
|
PGSQL_USES= pgsql
|
|
PGSQL_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_PostgreSQL
|
|
|
|
.include <bsd.port.mk>
|