public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Bernard Cafarelli" <voyageur@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/x2goserver/
Date: Thu, 29 Jun 2023 20:48:44 +0000 (UTC)	[thread overview]
Message-ID: <1688071663.3599d0885d6ba0bc72830dc2838c166b1c3c27dd.voyageur@gentoo> (raw)

commit:     3599d0885d6ba0bc72830dc2838c166b1c3c27dd
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 29 20:39:24 2023 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Thu Jun 29 20:47:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3599d088

net-misc/x2goserver: add 4.1.0.5

Closes: https://bugs.gentoo.org/908058
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 net-misc/x2goserver/Manifest                  |  1 +
 net-misc/x2goserver/x2goserver-4.1.0.5.ebuild | 96 +++++++++++++++++++++++++++
 2 files changed, 97 insertions(+)

diff --git a/net-misc/x2goserver/Manifest b/net-misc/x2goserver/Manifest
index 9db8eab3f331..34506e3ebf3a 100644
--- a/net-misc/x2goserver/Manifest
+++ b/net-misc/x2goserver/Manifest
@@ -1 +1,2 @@
 DIST x2goserver-4.1.0.3.tar.gz 141581 BLAKE2B 79401a146e8a18451d6521f4b9556b2f22746bd752f39dc45764bacca085f2bb66a92327aaeb292979ce43ffbde24541e492cec814f1f8a535614cbdc2dc3ebd SHA512 9d7257dd454bfedca9e3ef1b07bc38b540cb833fae4535f2225a1f0bfea93c0f04c638d411b57c50e7170106a5ae1d7f41c19f043832129a7a9460dcfd34c56a
+DIST x2goserver-4.1.0.5.tar.gz 178386 BLAKE2B b45e0ea9cbfc81afabf1160ecf4513a3cdacda40b02c692cc04a0012f37441edd4c7074e467809aa2b0ad3eae24cae1982413b5e90d1657a0b6e6e6c56224025 SHA512 b0413fe54d1f93031480f954d2e482e4bb93393fbd49516e5c89101d38f33ca6019080ad42622ae986717ebe85fbdca230db2d69e45cc9684a79e62d9f885bd8

diff --git a/net-misc/x2goserver/x2goserver-4.1.0.5.ebuild b/net-misc/x2goserver/x2goserver-4.1.0.5.ebuild
new file mode 100644
index 000000000000..9d7bbf319cdd
--- /dev/null
+++ b/net-misc/x2goserver/x2goserver-4.1.0.5.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd tmpfiles toolchain-funcs xdg
+
+DESCRIPTION="The X2Go server"
+HOMEPAGE="http://www.x2go.org"
+SRC_URI="http://code.x2go.org/releases/source/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+fuse postgres +sqlite"
+
+REQUIRED_USE="|| ( postgres sqlite )"
+
+DEPEND="virtual/perl-ExtUtils-MakeMaker"
+RDEPEND="acct-user/x2gouser
+	acct-user/x2goprint
+	dev-lang/perl:=
+	dev-perl/Capture-Tiny
+	dev-perl/Config-Simple
+	dev-perl/File-BaseDir
+	dev-perl/File-ReadBackwards
+	dev-perl/File-Which
+	dev-perl/Switch
+	dev-perl/Try-Tiny
+	media-fonts/font-cursor-misc
+	media-fonts/font-misc-misc[nls]
+	>=net-misc/nx-3.5.99.14
+	>=sys-apps/iproute2-4.3.0
+	virtual/openssh
+	x11-apps/xauth
+	x11-apps/xhost
+	x11-apps/xwininfo
+	fuse? ( net-fs/sshfs )
+	postgres? ( dev-perl/DBD-Pg )
+	sqlite? ( dev-perl/DBD-SQLite )"
+
+src_prepare() {
+	default
+	# Do not compress man pages by default
+	sed '/^[[:space:]]*gzip.*man/d' -i */Makefile || die
+}
+
+src_compile() {
+	emake \
+		CC="$(tc-getCC)" \
+		LIBDIR="/usr/$(get_libdir)/x2go" \
+		PREFIX=/usr
+}
+
+src_install() {
+	emake \
+		DESTDIR="${D}" \
+		LIBDIR="/usr/$(get_libdir)/x2go" \
+		NXLIBDIR="/usr/$(get_libdir)/nx" \
+		PREFIX=/usr \
+		install
+
+	fowners root:x2goprint /usr/bin/x2goprint
+	fperms 2755 /usr/bin/x2goprint
+	fperms 0750 /etc/sudoers.d
+	fperms 0440 /etc/sudoers.d/x2goserver
+	dosym ../../usr/share/applications /etc/x2go/applications
+
+	newinitd "${FILESDIR}"/${PN}.init x2gocleansessions
+	systemd_dounit "${FILESDIR}"/x2gocleansessions.service
+}
+
+pkg_postinst() {
+	tmpfiles_process x2goserver.conf
+	xdg_pkg_postinst
+
+	if use sqlite ; then
+		if [[ -f "${EROOT}"/var/lib/x2go/x2go_sessions ]] ; then
+			elog "To use sqlite and update your existing database, run:"
+			elog " # x2godbadmin --updatedb"
+		else
+			elog "To use sqlite and create the initial database, run:"
+			elog " # x2godbadmin --createdb"
+		fi
+
+	fi
+
+	if use postgres ; then
+		elog "To use a PostgreSQL database, more information is availabe here:"
+		elog "http://www.x2go.org/doku.php/wiki:advanced:multi-node:x2goserver-pgsql"
+	fi
+
+	elog "For password authentication, you need to enable PasswordAuthentication"
+	elog "in /etc/ssh/sshd_config (disabled by default in Gentoo)"
+	elog "An init script was installed for x2gocleansessions"
+}


             reply	other threads:[~2023-06-29 20:48 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-29 20:48 Bernard Cafarelli [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-08-26 22:33 [gentoo-commits] repo/gentoo:master commit in: net-misc/x2goserver/ Bernard Cafarelli
2023-05-11 20:03 Sam James
2021-09-26 19:36 Conrad Kostecki
2021-07-15 22:12 Conrad Kostecki
2021-07-15 21:39 Sam James
2021-07-15 21:33 Sam James
2019-12-22 15:47 Bernard Cafarelli
2019-12-10 21:36 Bernard Cafarelli
2019-11-09  0:08 Andreas K. Hüttel
2018-11-29 12:45 Bernard Cafarelli
2018-11-29 12:45 Bernard Cafarelli
2018-10-27 19:04 Mikle Kolyada
2018-10-26  0:52 Thomas Deutschmann
2018-08-03 14:11 Bernard Cafarelli
2018-07-30  8:19 Bernard Cafarelli
2018-03-12 10:44 Lars Wendler
2018-03-12 10:39 Lars Wendler
2018-03-06 14:39 Lars Wendler
2018-02-22 10:12 Bernard Cafarelli
2018-02-22 10:12 Bernard Cafarelli
2018-02-21 18:48 Jason Zaman
2017-12-16 22:04 Bernard Cafarelli
2017-12-16  8:20 Tobias Klausmann
2017-11-12 19:45 Bernard Cafarelli
2017-11-08 14:51 Bernard Cafarelli
2017-10-26 20:18 Thomas Deutschmann
2016-11-21 16:49 Bernard Cafarelli
2016-09-12  6:04 Patrice Clement
2016-01-28 21:58 Bernard Cafarelli
2015-09-11  9:24 Bernard Cafarelli
2015-09-11  9:24 Bernard Cafarelli

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1688071663.3599d0885d6ba0bc72830dc2838c166b1c3c27dd.voyageur@gentoo \
    --to=voyageur@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox