freebsd-ports/databases/kdb/Makefile
Felix Palmen ddae4e92d8 Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.

Document in CHANGES.

PR:			266034
Exp-run by:		antoine
Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D36349
2022-09-11 12:20:14 +02:00

35 lines
1,011 B
Makefile

PORTNAME= kdb
DISTVERSION= 3.2.0
PORTREVISION= 11
CATEGORIES= databases kde
MASTER_SITES= KDE/stable/${PORTNAME}/src
DIST_SUBDIR= KDE/${PORTNAME}
PATCH_SITES= https://invent.kde.org/libraries/kdb/-/commit/
PATCHFILES= b36d74f13a1421437a725fb74502c993c359392a.diff:-p1
MAINTAINER= kde@FreeBSD.org
COMMENT= Database connectivity and creation framework
WWW= https://community.kde.org/KDb
LIB_DEPENDS= libicuuc.so:devel/icu
USES= cmake compiler:c++11-lang kde:5 \
python qt:5 tar:xz
USE_KDE= coreaddons ecm i18n
USE_QT= 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>