New comment by kruceter on void-packages repository https://github.com/void-linux/void-packages/pull/40347#issuecomment-1382643933 Comment: There is no way to disable GUI using build arguments, their old manual misled me. Rebase and apply this patch (and change version in the commit message too): [0001-fixup-grass-update-to-7.8.7-rebuild-for-proj-9.1.txt](https://github.com/void-linux/void-packages/files/10416401/0001-fixup-grass-update-to-7.8.7-rebuild-for-proj-9.1.txt) There is nothing we can do about broken gui at present time, so leave it be. If GUI does not work, grass falls back to the text mode. We can live with it at least until wxPython is updated. If you are interested in enforcing the text mode, add the following block to the template: ```sh post_install() { # This package is broken with wxPython4 (<=4.0.7), # hence the GUI is compulsorily disabled. vsed -i "${DESTDIR}/usr/bin/grass" -e "s/\(default_gui =\).*/\1 \"text\"/" } ``` Aside from grass I think this pull request can be merged.