bsduck lxqt-config-input is missing! ... It definitely should be there,
If you look into the package Makefile you will find the following section,
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} != "Linux"
CMAKE_ARGS+= -DWITH_INPUT=OFF
.endif
This is because, if you read lxqt-config/lxqt-config-input/CMakeLists.txt
, you will find, pkg_check_modules(XORG_LIBINPUT REQUIRED xorg-libinput)
. We don't have libinput
.
But, now that I'm writing this, I've realized my mistake. This has been there all the time and has slipped through several reviews and user reports, until now.
I should have used CMAKE_ARGS+= -DWITH_TOUCHPAD=OFF
instead of CMAKE_ARGS+= -DWITH_INPUT=OFF
. This should be enough to remove the dependency on libinput
without switching off the whole input module.
I'm in the process of updating LXQt to the newly released 1.0.0 and should be able to finish it today. I'll try to build and test with the correct switch off.
If you're running current, it should be there by the end of the week or, by early next week. If you're on the Q-release of pkgsrc it will take about 3 months to get it.
I could, if you want, send you instructions on how to build it locally before it is actually merged.
Let me know if you want to test it and sorry for the inconvenience.