mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
6806658cdf
This updates the KDE Plasma parts to release 5.21.3. There is one new port, plasma5-systemmonitor, which is the upcoming replacement for KDE sysguard. It is not installed by default. Release notes are at https://kde.org/announcements/plasma/5/5.21.3/ Previous commits tidying up DOCS options left some non- applications consumers without the necessary kdoctools dependency, so (re)introduce that now.
36 lines
1.3 KiB
Makefile
36 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 cpe 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 doctools ecm emoticons guiaddons \
|
|
i18n iconthemes jobwidgets kcmutils kdeclarative \
|
|
kdelibs4support kio notifications package parts init \
|
|
itemmodels itemviews service solid sonnet textwidgets \
|
|
unitconversion wayland wayland widgetsaddons windowsystem xmlgui \
|
|
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>
|