Created attachment 182575 [details] patch to install profiles Due to a linux-only command in the Makefiles (find -printf), libwacom port is not correctly finding and installing the profiles and tablets. This defeats its main purpose: supplying metadata about Wacome tablets. This patch fixes this. The attached patch replaces find ... -printf "%P\n" with find ... -print0 | xargs -0 basename which works on FreeBSD. pkg-plist is updated to include the newly installed profiles.
Created attachment 182576 [details] fix the replacement command
Thank you for submitting this correction.
A commit references this bug: Author: zeising Date: Sun May 20 14:41:44 UTC 2018 New revision: 470461 URL: https://svnweb.freebsd.org/changeset/ports/470461 Log: x11/libwacom: install the profiles of tablets Due to a linux only command in the makefile libwacom isn't finding and installing tablet profiles. Fix the command to work on FreeBSD and thus install tablet profiles. PR: 219264 Submitted by: Henry Hu Changes: head/x11/libwacom/Makefile head/x11/libwacom/pkg-plist
Fixed, thanks for the report!