Tuesday, 31 August 2021. Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.22.5. Plasma 5.22 was released in June 2021 with many feature refinements and new modules to complete the desktop experience. This release adds a month's worth of new translations and fixes from KDE's contributors. The bugfixes are typically small but important and include: * KDE GTK Config: Make sure to actually commit GSettings changes. * KSystemStats: Fix handling of IPV6 addresses. Fixes bug #436296 * [applets/digitalclock] Let long timezones list scroll. Fixes bug #439147 Full changelog: https://kde.org/announcements/changelogs/plasma/5/5.22.4-5.22.5/ - while here: reformat & sort the USES/USE_FOO lines consistently
37 lines
1.3 KiB
Makefile
37 lines
1.3 KiB
Makefile
PORTNAME= kinfocenter
|
|
DISTVERSION= ${KDE_PLASMA_VERSION}
|
|
CATEGORIES= sysutils kde kde-plasma
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Plasma5 utility providing system information
|
|
|
|
LIB_DEPENDS= libpci.so:devel/libpci
|
|
|
|
USES= cmake compiler:c++11-lib gettext gl kde:5 pkgconfig qt:5 \
|
|
tar:xz xorg
|
|
USE_GL= egl gl glu
|
|
USE_KDE= auth bookmarks codecs completion config configwidgets \
|
|
coreaddons crash dbusaddons emoticons guiaddons i18n \
|
|
iconthemes init itemmodels itemviews jobwidgets kcmutils \
|
|
kdeclarative kio notifications package parts service solid \
|
|
sonnet textwidgets unitconversion wayland widgetsaddons \
|
|
windowsystem xmlgui \
|
|
doctools_build ecm_build \
|
|
systemsettings_run
|
|
USE_QT= concurrent core dbus declarative gui network printsupport \
|
|
widgets xml \
|
|
buildtools_build qmake_build
|
|
USE_XORG= ice sm x11 xext
|
|
|
|
# TODO -- this should be handled correctly...
|
|
LDFLAGS+=-ldevinfo
|
|
|
|
# install freebsd-logo and distrorc
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}/${DATADIR}/images
|
|
${INSTALL_DATA} ${FILESDIR}/freebsd_logo.svg ${STAGEDIR}/${DATADIR}/images/
|
|
${MKDIR} ${STAGEDIR}/${PREFIX}/etc/xdg
|
|
${INSTALL_DATA} ${FILESDIR}/kcm-about-distrorc ${STAGEDIR}/${PREFIX}/etc/xdg/
|
|
${REINPLACE_CMD} -i "" -e "s#%%DATADIR%%#${DATADIR}#" ${STAGEDIR}/${PREFIX}/etc/xdg/kcm-about-distrorc
|
|
|
|
.include <bsd.port.mk>
|