maintainer-feedback requested: [Bug 219264] x11/libwacom: install the profiles of tablets

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sat May 13 21:39:16 UTC 2017


Henry Hu <henry.hu.sh at gmail.com> has reassigned Bugzilla Automation
<bugzilla at FreeBSD.org>'s request for maintainer-feedback to x11 at FreeBSD.org:
Bug 219264: x11/libwacom: install the profiles of tablets
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=219264



--- Description ---
Created attachment 182575
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=182575&action=edit
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.


More information about the freebsd-x11 mailing list