lxqt-qtplugin-0.15.1 / 2020-05-31 ================================= * Fixed Fusion's window color with Qt 5.15. * Made the window color configurable. lxqt-qtplugin-0.15.0 / 2020-04-22 ================================= * Bumped version to 0.15.0. * Made libfm-qt a dependency and loaded versioned libfm-qt (for versioned ".so" handling). * C++11 code updates. * Use return braced init list. * Removed (duplicated) string casts definitions. * Removed deprecated QImage method "byteCount()" and used "sizeInBytes()" instead. * Fixed "#include" for libdbusmenu-qt. * Added support for flatpak to StatusNotifierItem. * Added Category property to StatusNotifierItem to fix working on some DEs. * Added support for working without context menu to StatusNotifierItem.
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.3 2020/06/01 11:34:19 pin Exp $
|
|
|
|
VERSION= 0.15.1
|
|
DISTNAME= lxqt-qtplugin-${VERSION}
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=lxqt/lxqt-qtplugin/releases/download/${VERSION}/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/lxqt/lxqt-qtplugin/
|
|
COMMENT= LXQt platform integration plugin for Qt5
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_CMAKE= yes
|
|
USE_TOOLS+= pkg-config
|
|
USE_LANGUAGES= c c++
|
|
|
|
CONFIGURE_DIRS= build
|
|
CMAKE_ARG_PATH= ..
|
|
|
|
SUBST_CLASSES+= prefix
|
|
SUBST_MESSAGE.prefix= Fixing paths.
|
|
SUBST_STAGE.prefix= pre-configure
|
|
SUBST_FILES.prefix= src/lxqtplatformtheme.cpp
|
|
SUBST_SED.prefix= -e 's,/usr/local/share,${PREFIX}/share/examples/lxqt/xdg,g'
|
|
SUBST_SED.prefix+= -e 's,/usr/share,${PREFIX}/share,g'
|
|
|
|
pre-configure:
|
|
${MKDIR} -p ${WRKSRC}/build
|
|
|
|
TOOL_DEPENDS+= lxqt-build-tools-[0-9]*:../../devel/lxqt-build-tools
|
|
TOOL_DEPENDS+= qt5-qttools-[0-9]*:../../x11/qt5-qttools
|
|
|
|
.include "../../x11/qt5-qtbase/buildlink3.mk"
|
|
.include "../../devel/libdbusmenu-qt5/buildlink3.mk"
|
|
.include "../../x11/qt5-qtx11extras/buildlink3.mk"
|
|
.include "../../x11/libqtxdg/buildlink3.mk"
|
|
.include "../../x11/libfm-qt/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|