diff options
author | Matt Turner <mattst88@gentoo.org> | 2019-03-02 21:44:12 -0800 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2019-03-02 21:45:23 -0800 |
commit | 78925d7a2cdac37e74219558419b862d81e6a9c5 (patch) | |
tree | 675ac71b24e44f580f39b47025e12e4a24831442 /x11-apps/xinit | |
parent | net-mail/courier-imap: amd64 stable wrt bug #676732 (diff) | |
download | gentoo-78925d7a2cdac37e74219558419b862d81e6a9c5.tar.gz gentoo-78925d7a2cdac37e74219558419b862d81e6a9c5.tar.bz2 gentoo-78925d7a2cdac37e74219558419b862d81e6a9c5.zip |
x11-apps/xinit: Only print postinst messages first time
Closes: https://bugs.gentoo.org/440454
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-apps/xinit')
-rw-r--r-- | x11-apps/xinit/xinit-1.4.0-r1.ebuild | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/x11-apps/xinit/xinit-1.4.0-r1.ebuild b/x11-apps/xinit/xinit-1.4.0-r1.ebuild index a8b0150bc16d..f8dedbb1ce77 100644 --- a/x11-apps/xinit/xinit-1.4.0-r1.ebuild +++ b/x11-apps/xinit/xinit-1.4.0-r1.ebuild @@ -56,12 +56,15 @@ src_install() { pkg_postinst() { xorg-2_pkg_postinst - ewarn "If you use startx to start X instead of a login manager like gdm/kdm," - ewarn "you can set the XSESSION variable to anything in /etc/X11/Sessions/ or" - ewarn "any executable. When you run startx, it will run this as the login session." - ewarn "You can set this in a file in /etc/env.d/ for the entire system," - ewarn "or set it per-user in ~/.bash_profile (or similar for other shells)." - ewarn "Here's an example of setting it for the whole system:" - ewarn " echo XSESSION=\"Gnome\" > /etc/env.d/90xsession" - ewarn " env-update && source /etc/profile" + + if ! has_version 'x11-apps/xinit'; then + ewarn "If you use startx to start X instead of a login manager like gdm/kdm," + ewarn "you can set the XSESSION variable to anything in /etc/X11/Sessions/ or" + ewarn "any executable. When you run startx, it will run this as the login session." + ewarn "You can set this in a file in /etc/env.d/ for the entire system," + ewarn "or set it per-user in ~/.bash_profile (or similar for other shells)." + ewarn "Here's an example of setting it for the whole system:" + ewarn " echo XSESSION=\"Gnome\" > /etc/env.d/90xsession" + ewarn " env-update && source /etc/profile" + fi } |