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!
50 lines
1.6 KiB
Makefile
50 lines
1.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.20 2020/03/23 18:01:03 rsadowski Exp $
|
|
|
|
COMMENT-main = KDE file search and metadata handling framework
|
|
COMMENT-icons = icons for baloo
|
|
DISTNAME = baloo-${VERSION}
|
|
PKGNAME-main = kf5-${DISTNAME}
|
|
PKGNAME-icons = kf5-icons-${DISTNAME}
|
|
EPOCH-main = 0
|
|
|
|
SHARED_LIBS = KF5Baloo 3.0
|
|
SHARED_LIBS += KF5BalooXapian 3.0
|
|
SHARED_LIBS += KF5BalooEngine 1.0 # 5.46
|
|
|
|
WANTLIB-icons =
|
|
|
|
WANTLIB-main += ${COMPILER_LIBCXX} KF5ConfigCore KF5CoreAddons KF5FileMetaData
|
|
WANTLIB-main += KF5I18n KF5Solid Qt5Core Qt5DBus Qt5Network Qt5Qml
|
|
WANTLIB-main += lmdb m
|
|
|
|
# split icons off main package to deconflict with KDE4's baloo
|
|
# To avoid bulk build conflicts use it like:
|
|
# BUILD_DEPENDS +=devel/kf5/baloo,-main>=${MODKF5_VERSION}
|
|
# RUN_DEPENDS +=>-devel/kf5/baloo,-icons>=${MODKF5_VERSION}
|
|
MULTI_PACKAGES = -main -icons
|
|
|
|
BUILD_DEPENDS = devel/gettext,-tools \
|
|
devel/kf5/kidletime>=${MODKF5_VERSION} \
|
|
devel/kf5/kio>=${MODKF5_VERSION} \
|
|
devel/kf5/kcrash>=${MODKF5_VERSION}
|
|
|
|
RUN_DEPENDS-main = devel/kf5/kidletime>=${MODKF5_VERSION} \
|
|
devel/kf5/kio>=${MODKF5_VERSION} \
|
|
devel/kf5/kcrash>=${MODKF5_VERSION}
|
|
|
|
RUN_DEPENDS-icons = x11/gtk+3,-guic
|
|
|
|
LIB_DEPENDS-main = databases/lmdb \
|
|
devel/libinotify \
|
|
devel/kf5/kconfig>=${MODKF5_VERSION} \
|
|
devel/kf5/kfilemetadata>=${MODKF5_VERSION} \
|
|
devel/kf5/ki18n>=${MODKF5_VERSION} \
|
|
devel/kf5/solid>=${MODKF5_VERSION} \
|
|
devel/kf5/kcoreaddons>=${MODKF5_VERSION} \
|
|
x11/qt5/qtdeclarative
|
|
|
|
MAKE_ENV = CXXOPTS="-I${LOCALBASE}/include/inotify" \
|
|
LIBS="-L${LOCALBASE}/lib/inotify -linotify -Wl,-rpath,${LOCALBASE}/lib/inotify"
|
|
|
|
.include <bsd.port.mk>
|