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!
69 lines
1.9 KiB
Makefile
69 lines
1.9 KiB
Makefile
# $OpenBSD: Makefile,v 1.17 2020/03/23 18:01:13 rsadowski Exp $
|
|
|
|
COMMENT = IRC client for KDE
|
|
|
|
V = 1.7.5
|
|
DISTNAME = konversation-$V
|
|
REVISION = 0
|
|
|
|
MAINTAINER = KDE porting team <openbsd-kde@googlegroups.com>
|
|
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = https://konversation.kde.org/
|
|
|
|
MASTER_SITES = ${MASTER_SITE_KDE:=stable/konversation/$V/src/}
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} KF5Archive KF5Auth KF5AuthCore KF5Bookmarks
|
|
WANTLIB += KF5Codecs KF5Completion KF5ConfigCore KF5ConfigGui
|
|
WANTLIB += KF5ConfigWidgets KF5CoreAddons KF5Crash KF5DBusAddons
|
|
WANTLIB += KF5Emoticons KF5GlobalAccel KF5I18n KF5IconThemes KF5IdleTime
|
|
WANTLIB += KF5ItemViews KF5JobWidgets KF5KIOCore KF5KIOFileWidgets
|
|
WANTLIB += KF5KIOWidgets KF5Notifications KF5NotifyConfig KF5Parts
|
|
WANTLIB += KF5Service KF5Solid KF5SonnetUi KF5TextWidgets KF5Wallet
|
|
WANTLIB += KF5WidgetsAddons KF5WindowSystem KF5XmlGui Qt5Concurrent
|
|
WANTLIB += Qt5Core Qt5DBus Qt5Gui Qt5Network Qt5Widgets Qt5Xml
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = devel/kf5 \
|
|
multimedia/phonon \
|
|
lang/python
|
|
|
|
BUILD_DEPENDS += devel/kf5/kdoctools \
|
|
devel/kf5/kitemmodels \
|
|
devel/gettext,-tools
|
|
|
|
RUN_DEPENDS += devel/desktop-file-utils \
|
|
devel/gettext,-runtime \
|
|
x11/gtk+3,-guic
|
|
|
|
LIB_DEPENDS += security/qca-qt5 \
|
|
devel/kf5/karchive \
|
|
devel/kf5/kbookmarks \
|
|
devel/kf5/kconfigwidgets \
|
|
devel/kf5/kcoreaddons \
|
|
devel/kf5/kcrash \
|
|
devel/kf5/kemoticons \
|
|
devel/kf5/ki18n \
|
|
devel/kf5/kidletime \
|
|
devel/kf5/knotifyconfig \
|
|
devel/kf5/kio \
|
|
devel/kf5/kparts \
|
|
devel/kf5/solid \
|
|
devel/kf5/kwallet \
|
|
devel/kf5/kwidgetsaddons \
|
|
devel/kf5/kglobalaccel \
|
|
devel/kf5/kdbusaddons \
|
|
devel/kf5/knotifications \
|
|
devel/kf5/kwindowsystem \
|
|
devel/kf5/kiconthemes \
|
|
devel/kf5/kitemviews
|
|
|
|
post-install:
|
|
${MODPY_BIN} ${MODPY_LIBDIR}/compileall.py \
|
|
${PREFIX}/share/konversation/scripting_support/python/konversation
|
|
|
|
.include <bsd.port.mk>
|