Instead of changing PORTVERSION, keep it set to KDE_FRAMEWORKS_VERSION, and actually change the latter to 5.38.1. The port's plist has references to %%KDE_FRAMEWORKS_VERSION%% that got broken when we didn't update it. As a bonus, the distinfo entry also makes more sense now. Pointy-hat to me for not catching this when reviewing the code, and kudos to tcberner for noticing that earlier. Reported by: VVD on #kde-freebsd
24 lines
675 B
Makefile
24 lines
675 B
Makefile
# Created by: tcberner
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kglobalaccel
|
|
PORTVERSION= ${KDE_FRAMEWORKS_VERSION}
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11 kde kde-frameworks
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= KF5 library to add support for global workspace shortcuts
|
|
|
|
LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms
|
|
|
|
# There was a hotfix release for kglobalaccel to fix a regression in 5.38.0.
|
|
KDE_FRAMEWORKS_VERSION= 5.38.1
|
|
|
|
USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz
|
|
USE_KDE= ecm config coreaddons crash dbusaddons i18n service \
|
|
windowsystem
|
|
USE_QT5= buildtools_build core dbus gui linguisttools qmake_build \
|
|
testlib widgets x11extras
|
|
USE_XORG= xcb
|
|
|
|
.include <bsd.port.mk>
|