Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/x2goserver/
Date: Sun, 26 Sep 2021 19:36:32
Message-Id: 1632684970.e470cc11949eb87469e0265f646ea20f884edab8.conikost@gentoo
1 commit: e470cc11949eb87469e0265f646ea20f884edab8
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 26 19:33:04 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 26 19:36:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e470cc11
7
8 net-misc/x2goserver: fix tmpfiles
9
10 Closes: https://bugs.gentoo.org/809332
11 Package-Manager: Portage-3.0.22, Repoman-3.0.3
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild | 6 +++++-
15 1 file changed, 5 insertions(+), 1 deletion(-)
16
17 diff --git a/net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild b/net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild
18 index c702e328a82..78bc8c8e9fb 100644
19 --- a/net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild
20 +++ b/net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild
21 @@ -2,7 +2,8 @@
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=7
25 -inherit systemd toolchain-funcs xdg
26 +
27 +inherit systemd tmpfiles toolchain-funcs xdg
28
29 DESCRIPTION="The X2Go server"
30 HOMEPAGE="http://www.x2go.org"
31 @@ -78,7 +79,9 @@ src_install() {
32 }
33
34 pkg_postinst() {
35 + tmpfiles_process x2goserver.conf
36 xdg_pkg_postinst
37 +
38 if use sqlite ; then
39 if [[ -f "${EROOT}"/var/lib/x2go/x2go_sessions ]] ; then
40 elog "To use sqlite and update your existing database, run:"
41 @@ -89,6 +92,7 @@ pkg_postinst() {
42 fi
43
44 fi
45 +
46 if use postgres ; then
47 elog "To use a PostgreSQL database, more information is availabe here:"
48 elog "http://www.x2go.org/doku.php/wiki:advanced:multi-node:x2goserver-pgsql"