2007-01-16 00:43:51 +01:00
|
|
|
#
|
2014-10-06 22:04:54 +02:00
|
|
|
# spec file for package xsession
|
2007-01-16 00:43:51 +01:00
|
|
|
#
|
2024-09-12 14:51:58 +02:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2007-01-16 00:43:51 +01:00
|
|
|
#
|
2009-06-18 00:10:53 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2024-09-12 14:51:58 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2007-01-16 00:43:51 +01:00
|
|
|
#
|
|
|
|
|
2009-06-18 00:10:53 +02:00
|
|
|
|
2007-01-16 00:43:51 +01:00
|
|
|
Name: xsession
|
2014-10-06 22:04:54 +02:00
|
|
|
BuildRequires: imake
|
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: pkgconfig(x11)
|
|
|
|
BuildRequires: pkgconfig(xaw7)
|
|
|
|
BuildRequires: pkgconfig(xmu)
|
|
|
|
BuildRequires: pkgconfig(xt)
|
2007-01-16 00:43:51 +01:00
|
|
|
Version: 1.1
|
2014-10-06 22:04:54 +02:00
|
|
|
Release: 0
|
2007-01-16 00:43:51 +01:00
|
|
|
Summary: A session manager
|
2014-10-06 22:04:54 +02:00
|
|
|
License: MIT
|
|
|
|
Group: System/X11/Utilities
|
2007-01-16 00:43:51 +01:00
|
|
|
Source: xsession-1.1.tar.gz
|
2024-09-12 14:51:58 +02:00
|
|
|
Patch0: xsession-implicit-shutdown.patch
|
2007-01-16 00:43:51 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%{expand: %%global _exec_prefix %(type -p pkg-config &>/dev/null && pkg-config --variable prefix x11 || echo /usr/X11R6)}
|
|
|
|
%if "%_exec_prefix" == "/usr/X11R6"
|
|
|
|
%global _mandir %{_exec_prefix}/man
|
|
|
|
%define _x11data %{_exec_prefix}/lib/X11
|
|
|
|
%define _appdefdir %{_x11data}/app-defaults
|
|
|
|
%else
|
|
|
|
%define _x11data %{_datadir}/X11
|
|
|
|
%define _appdefdir %{_x11data}/app-defaults
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
The xsession program is a session manager. It is normally executed by
|
|
|
|
your ~/.xinitrc (or ~/.xsession) script and controls your X Window
|
|
|
|
session. As soon as it is started, xsession launches a window manager
|
|
|
|
and some applications of your choice. At anytime during your session,
|
|
|
|
you may switch to another window manager or execute some other
|
|
|
|
applications from the xsession menus.
|
|
|
|
|
|
|
|
Examples may be found under /usr/share/doc/packages/xsession/examples.
|
|
|
|
|
|
|
|
%prep
|
2024-09-12 14:51:58 +02:00
|
|
|
%autosetup -p1
|
2007-01-16 00:43:51 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
xmkmf -a
|
2007-01-25 18:01:39 +01:00
|
|
|
make CCOPTIONS="$RPM_OPT_FLAGS"
|
2007-01-16 00:43:51 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
make DESTDIR=%{buildroot} install
|
|
|
|
make DESTDIR=%{buildroot} install.man
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc CHANGES ChangeLog INSTALL README examples
|
|
|
|
%{_bindir}/xsession
|
2014-10-06 22:04:54 +02:00
|
|
|
%dir %{_appdefdir}
|
2007-01-16 00:43:51 +01:00
|
|
|
%config %{_appdefdir}/XSession
|
|
|
|
%config %{_appdefdir}/XSession-color
|
|
|
|
%doc %{_mandir}/man1/xsession.1x.gz
|
|
|
|
|
2009-06-18 00:10:53 +02:00
|
|
|
%changelog
|