This commit includes 218 port updates and 16 tweak updates after KDE framework changes. Most of this 16 changes caused by: - KF5Auth split into KF5Auth and KF5AuthCore, which ends in a lot of new WANTLIBs - Upstream changed some xdg paths from share/examples/***/xdg/ to share/qlogging-categories5/, which ends in a lot of PLIST chages. List of notable changes: - Bump all kf5 shared libs. - Use ">=${MODKF5_VERSION}" in all kf5 ports that all kf5 use the latest version an update together. (Idea from Qt5). - s/=+/=/ for LIB_*,RUN_* and BUILD_* in x11/kde-applications, hint by jca@. - Update okteta to 0.26.3 - Update spectacle only to 19.04.3, latest version without hard wayland dependency. - Remove python2 support in cantor, python3 only! - devel/kf5/kfilemetadata: switch to python 3 (TDEP only), by kn@ - devel/kf5/ki18n: switch to python 3, by kn@ - devel/kf5/kservice: switch to python 3, by kn@ - devel/kf5/kconfigwidgets: remove python module usage, by kn@ - devel/kf5/ktextigwidgets: remove python module usage, by kn@ Tweaks and feedback from landry@, amd64 bulk build and error reports by naddy@ Thanks a lot!
46 lines
999 B
Makefile
46 lines
999 B
Makefile
# $OpenBSD: Makefile,v 1.8 2020/03/23 18:01:02 rsadowski Exp $
|
|
|
|
COMMENT = database connectivity and creation framework
|
|
|
|
VERSION = 3.2.0
|
|
DISTNAME = kdb-${VERSION}
|
|
REVISION = 1
|
|
|
|
SHARED_LIBS += KDb3 1.1 # 3.0
|
|
|
|
CATEGORIES = databases
|
|
|
|
HOMEPAGE = http://www.kexi-project.org/
|
|
|
|
MAINTAINER = Rafael Sadowski <rsadowski@openbsd.org>
|
|
|
|
# GPLv2+, LGPLv2+ and GNU FDLv1.2
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} KF5CoreAddons Qt5Core Qt5Gui Qt5Network
|
|
WANTLIB += Qt5Widgets Qt5Xml c icui18n icuuc m mariadb pq sqlite3
|
|
|
|
MASTER_SITES = ${MASTER_SITE_KDE:=stable/kdb/src/}}
|
|
EXTRACT_SUFX = .tar.xz
|
|
|
|
MODULES = devel/cmake \
|
|
lang/python \
|
|
devel/kf5
|
|
|
|
MODPY_RUNDEP = No
|
|
|
|
BUILD_DEPENDS = shells/bash \
|
|
devel/gettext,-tools \
|
|
databases/postgresql,-server
|
|
|
|
LIB_DEPENDS = devel/kf5/kcoreaddons \
|
|
databases/mariadb \
|
|
databases/postgresql \
|
|
databases/sqlite3 \
|
|
textproc/icu4c
|
|
|
|
CONFIGURE_ARGS += -DBUILD_TESTING=On \
|
|
-DBUILD_EXAMPLES=On
|
|
|
|
.include <bsd.port.mk>
|