diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2013-07-30 11:48:02 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2013-07-30 11:48:02 +0000 |
commit | e912b09c856e2c660991974b1a94ecc627890bf1 (patch) | |
tree | 8e78d0b9b89ae1f6994848853c8a56aa403dadac | |
parent | Stable for amd64, wrt bug #478688 (diff) | |
download | gentoo-2-e912b09c856e2c660991974b1a94ecc627890bf1.tar.gz gentoo-2-e912b09c856e2c660991974b1a94ecc627890bf1.tar.bz2 gentoo-2-e912b09c856e2c660991974b1a94ecc627890bf1.zip |
Add missing README.gentoo, bug #478796.
(Portage version: 2.1.12.2/cvs/Linux x86_64, unsigned Manifest commit)
-rw-r--r-- | dev-libs/weston/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/weston/files/README.gentoo | 9 |
2 files changed, 14 insertions, 1 deletions
diff --git a/dev-libs/weston/ChangeLog b/dev-libs/weston/ChangeLog index dd465dd1a75c..4b0927fa2d6f 100644 --- a/dev-libs/weston/ChangeLog +++ b/dev-libs/weston/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/weston # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/weston/ChangeLog,v 1.3 2013/07/29 14:35:47 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/weston/ChangeLog,v 1.4 2013/07/30 11:48:02 chithanh Exp $ + + 30 Jul 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + +files/README.gentoo: + Add missing README.gentoo, bug #478796. *weston-1.2.0-r1 (29 Jul 2013) diff --git a/dev-libs/weston/files/README.gentoo b/dev-libs/weston/files/README.gentoo new file mode 100644 index 000000000000..ed8c5c3bae40 --- /dev/null +++ b/dev-libs/weston/files/README.gentoo @@ -0,0 +1,9 @@ +For running Weston you need to have $XDG_RUNTIME_DIR in your environment, +directory must exist and have correct permissions. If you are not using systemd, +it will not be created automatically, you can create it using your shell, +add these lines to ~/.bash_profile: + +# wayland +export XDG_RUNTIME_DIR=/tmp/.runtime-${USER} +mkdir -p "${XDG_RUNTIME_DIR}" +chmod 0700 "${XDG_RUNTIME_DIR}" |