/[packages]/updates/8/x2goserver/current/SPECS/x2goserver.spec
ViewVC logotype

Contents of /updates/8/x2goserver/current/SPECS/x2goserver.spec

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1680405 - (show annotations) (download)
Wed Feb 24 21:32:30 2021 UTC (3 years, 1 month ago) by umeabot
File size: 7054 byte(s)
SILENT Branching for Mageia 8
1 # This is work in progress
2 # not finished yet, so please don't complain about strange things
3 # I just wanted to have it in svn, so it's revisioned
4 # obgr_seneca
5
6 %define x2golibdir %{_libdir}/x2go
7
8 Name: x2goserver
9 Version: 4.0.1.20
10 Release: %mkrel 4
11 Summary: The server-side core of X2go
12 License: GPLv2+
13 Group: Networking/Remote access
14 Url: http://wiki.x2go.org/doku.php
15 Source0: http://code.x2go.org/releases/source/%{name}/%{name}-%{version}.tar.gz
16 BuildRequires: gcc
17 BuildRequires: perl
18 BuildRequires: man
19 BuildRequires: man2html
20 Requires: openssh-server
21 Requires: openssh-clients
22 Requires: lsof
23 Requires: perl-Config-Simple
24 Requires: makepasswd
25 Requires: xauth
26 Requires: sshfs-fuse
27 # x2go / nx dependencies
28 Requires: x2goagent
29 Requires: xcomp
30 Requires: xcompext
31 Requires: nxproxy
32 Requires: nxX11
33 Requires(post): rpm-helper >= 0.24.8-1
34 Requires(preun): rpm-helper >= 0.24.8-1
35 Recommends: %{name}-database
36
37 %description
38 x2go is a "server based computing environment" combining the advantages of
39 different existing solutions.
40 The x2goserver package provides the server-side core of X2go.
41
42 %package sqlite
43 Summary: Virtual package for using %{name} with sqlite
44 Group: Networking/Remote access
45 Requires: sqlite3-tools
46 Requires: perl-DBD-SQLite
47 Provides: %{name}-database = %{version}-%{release}
48
49 %description sqlite
50 This is a virtual package that just provides the neccesary packages needed to
51 run x2go with a default sqlite database setup.
52
53 %package postgresql
54 Summary: Virtual package for using %{name} with a postgresql database
55 Group: Networking/Remote access
56 Requires: postgresql-server
57 Requires: perl-DBD-Pg
58 Provides: %{name}-database = %{version}-%{release}
59
60 %description postgresql
61 This is a virtual package that just provides the neccesary packages needed to
62 run x2go with a postgresql setup. Note, you can also run x2go with a remote
63 postgresql setup.
64
65 %prep
66 %setup -q
67
68 # Set path
69 find -type f | xargs sed -i -r -e '/^LIBDIR=/s,/lib/,/%{_lib}/,'
70 sed -i -e 's,/lib/,/%{_lib}/,' x2goserver/bin/x2gopath
71 # Don't try to be root
72 sed -i -e 's/-o root -g root//' */Makefile
73 # Perl pure_install
74 sed -i -e 's/perl install/perl pure_install/' Makefile
75
76 %build
77 %set_build_flags
78 export LC_ALL=C
79 %make_build PREFIX=%{_prefix}
80
81 %install
82 export LC_ALL=C
83 %make_install PREFIX=%{_prefix} \
84 INSTALL_DIR="install -d -m 755" \
85 INSTALL_FILE="install -m 644" \
86 INSTALL_PROGRAM="install -m 755"
87 rm -f %{buildroot}%{_sysconfdir}/x2go/Xsession.d
88
89 mkdir -p %{buildroot}%{_unitdir}
90 install -m0644 x2goserver.service %{buildroot}%{_unitdir}/%{name}.service
91
92 cat > README.install.urpmi << EOF
93
94 DATABASE SETUP
95 -----------------
96
97 You need either an sqlite or a postgresql database for running x2go.
98 If you want to run x2go just on a single server, sqlite is sufficient, for
99 running x2go on a multi server setup, postgresql is required.
100
101 $ x2godbadmin --createdb
102
103
104 DEFAULT: SQLite setup
105 ------------------------
106
107 This variant is the default X2go database setup. The X2go database keeps track
108 of running/suspended/finished X2go sessions, mounted devices, etc. If you use
109 SQLite as DB backend, X2go will run on one single server.
110
111 For multi-X2goServer support use the PostgreSQL setup variant of X2go server.
112 All files should be present for this setup. If not, please report it as a bug.
113
114
115 ALTERNATIVE: PostgreSQL setup
116 --------------------------------
117
118 This variant is for a setup of x2goserver that uses a PostgreSQL database
119 backend...
120
121 The exact installation of x2goserver with PostgreSQL support is described
122 here: http://wiki.x2go.org/doku.php/wiki:advanced:multi-node:x2goserver-pgsql
123
124 LOCAL FOLDER SHARING
125 -----------------------
126
127 Users that shall be able to use X2go's local folder sharing functionality
128 (via sshfs) have to be members of your server system's ,,fuse'' group
129
130 $ usermod -a -G fuse <username>
131
132
133 PRINTING
134 -----------
135
136 Also users that shall be able to send print jobs to client-side printers have
137 to be members of the server-side ,,fuse'' group (see above).
138
139 As X2go printing setups can be rather versatile, details on X2go printing are
140 explained in the project wiki:
141 http://wiki.x2go.org/doku.php/doc:installation:printing
142
143
144 INITSCRIPT
145 ------------
146
147 Until now, there is none, has to be written from scratch and will follow soonest.
148 The server can be started by the command x2gocleansessions& as root in the meanwhile.
149 EOF
150
151 find %{buildroot} -name .placeholder -delete
152 mkdir -p %{buildroot}%{_localstatedir}/lib/x2go
153 mkdir -p %{buildroot}%{_localstatedir}/spool/x2goprint
154
155 %pre
156 %_pre_useradd x2gouser %{_localstatedir}/lib/x2go /bin/false
157 %_pre_useradd x2goprint %{_localstatedir}/spool/x2goprint /bin/false
158
159 %post
160 chown x2gouser:x2gouser %{_localstatedir}/lib/x2go
161 chown x2goprint:x2goprint %{_localstatedir}/spool/x2goprint
162 # Initialize the session database
163 [ ! -f %{_localstatedir}/lib/x2go/x2go_sessions ] && %{_sbindir}/x2godbadmin --createdb || :
164
165 %postun
166 %_postun_userdel x2gouser
167 %_postun_userdel x2goprint
168
169 %files sqlite
170
171 %files postgresql
172
173 %files
174 %doc README.install.urpmi
175 %doc %{_mandir}/man*/x2go*
176 %dir %{_localstatedir}/lib/x2go
177 %dir %{_localstatedir}/spool/x2goprint
178 %{_datadir}/x2go
179 %{_bindir}/x2gobasepath
180 %{_bindir}/x2gocmdexitmessage
181 %{_bindir}/x2gofeature
182 %{_bindir}/x2gofeaturelist
183 %{_bindir}/x2gofm
184 %{_bindir}/x2gogetapps
185 %{_bindir}/x2gogetservers
186 %{_bindir}/x2golistdesktops
187 %{_bindir}/x2golistmounts
188 %{_bindir}/x2golistsessions
189 %{_bindir}/x2gomountdirs
190 %attr(2755,root,x2goprint) %{_bindir}/x2goprint
191 %{_bindir}/x2goresume-session
192 %{_bindir}/x2goruncommand
193 %{_bindir}/x2goserver-run-extensions
194 %{_bindir}/x2gosessionlimit
195 %{_bindir}/x2gosetkeyboard
196 %{_bindir}/x2gostartagent
197 %{_bindir}/x2gosuspend
198 %{_bindir}/x2gosuspend-agent
199 %{_bindir}/x2gosuspend-session
200 %{_bindir}/x2goterminate
201 %{_bindir}/x2goterminate-session
202 %{_bindir}/x2goumount-session
203 %{_bindir}/x2goversion
204 %{_bindir}/x2gopath
205 %{_sbindir}/x2go*
206 %{_sysconfdir}/sudoers.d/x2goserver
207 %dir %{_sysconfdir}/x2go
208 %{_sysconfdir}/x2go/Xresources
209 %{_sysconfdir}/x2go/Xsession
210 %{_sysconfdir}/x2go/xinitrc.d
211 %config(noreplace) %{_sysconfdir}/logcheck
212 %config(noreplace) %{_sysconfdir}/x2go/x2goserver.conf
213 %{_sysconfdir}/x2go/x2gosql/sql
214 %{_sysconfdir}/x2go/x2go_logout
215 %{_sysconfdir}/x2go/x2go_logout.d/010_userscripts.sh
216 %{_sysconfdir}/x2go/x2goagent.options
217 %{_datadir}/applications/x2gofm.desktop
218 %{_datadir}/mime/packages/sshfs-x2go.xml
219 %{_unitdir}/%{name}.service
220 %dir %{x2golibdir}
221 %{x2golibdir}/x2gochangestatus
222 %{x2golibdir}/x2gocreatesession
223 %{x2golibdir}/x2godbwrapper.pm
224 %{x2golibdir}/x2gogetagent
225 %{x2golibdir}/x2gogetagentstate
226 %{x2golibdir}/x2gogetdisplays
227 %{x2golibdir}/x2gogetports
228 %{x2golibdir}/x2gogetstatus
229 %{x2golibdir}/x2goinsertport
230 %{x2golibdir}/x2goinsertsession
231 %{x2golibdir}/x2golistsessions_sql
232 %{x2golibdir}/x2gologlevel
233 %{x2golibdir}/x2gologlevel.pm
234 %{x2golibdir}/x2gormforward
235 %{x2golibdir}/x2gormport
236 %{x2golibdir}/x2goresume
237 %{x2golibdir}/x2goutils.pm
238 %{x2golibdir}/extensions
239 %attr(2755,root,x2gouser) %{x2golibdir}/x2gosqlitewrapper
240 %{x2golibdir}/x2gosqlitewrapper.pl
241 %{x2golibdir}/x2gosuspend-agent
242 %{x2golibdir}/x2gosyslog

  ViewVC Help
Powered by ViewVC 1.1.30