mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-02 02:42:56 +02:00
xorg-server: add a post-install message mentioning required user groups.
This commit is contained in:
parent
25d8484ee6
commit
7197fc2b41
2 changed files with 18 additions and 1 deletions
17
srcpkgs/xorg-server/INSTALL
Normal file
17
srcpkgs/xorg-server/INSTALL
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
case "$ACTION" in
|
||||||
|
post)
|
||||||
|
cat <<_EOF
|
||||||
|
=======================================================================
|
||||||
|
|
||||||
|
${PKGNAME}-${VERSION} 1.16 now requires your user to be a member of
|
||||||
|
the *input* and *video* groups to be able to run X without root
|
||||||
|
permissions. Make sure to add your user to these groups:
|
||||||
|
|
||||||
|
# sudo usermod -a -G input,video <user>
|
||||||
|
|
||||||
|
and the re-login to make it effective.
|
||||||
|
|
||||||
|
=======================================================================
|
||||||
|
_EOF
|
||||||
|
;;
|
||||||
|
esac
|
|
@ -1,7 +1,7 @@
|
||||||
# Template build file for 'xorg-server'.
|
# Template build file for 'xorg-server'.
|
||||||
pkgname=xorg-server
|
pkgname=xorg-server
|
||||||
version=1.16.0
|
version=1.16.0
|
||||||
revision=3
|
revision=4
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--enable-ipv6 --enable-xcsecurity --enable-record
|
configure_args="--enable-ipv6 --enable-xcsecurity --enable-record
|
||||||
--enable-xnest --enable-xephyr --enable-composite --enable-xvfb
|
--enable-xnest --enable-xephyr --enable-composite --enable-xvfb
|
||||||
|
|
Loading…
Add table
Reference in a new issue