Sync from SUSE:SLFO:Main libdmx revision 031d0173a919ed371a5dc8dc413465d5

This commit is contained in:
Adrian Schröter 2024-05-03 14:52:05 +02:00
commit 6862927b76
5 changed files with 163 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

4
baselibs.conf Normal file
View File

@ -0,0 +1,4 @@
libdmx1
libdmx-devel
requires -libdmx-<targettype>
requires "libdmx1-<targettype> = <version>"

BIN
libdmx-1.1.4.tar.bz2 (Stored with Git LFS) Normal file

Binary file not shown.

30
libdmx.changes Normal file
View File

@ -0,0 +1,30 @@
-------------------------------------------------------------------
Sat May 19 15:09:47 UTC 2018 - sndirsch@suse.com
- update to version 1.1.4
* This release raises the minimum required version of libX11 to
version 1.6.0 from 2013.
-------------------------------------------------------------------
Wed May 29 22:34:47 UTC 2013 - tobias.johannes.klausmann@mni.thm.de
- update to version 1.1.3:
This bugfix release consists solely of the fixes for the overflows
recently reported under CVE-2013-1992.
-------------------------------------------------------------------
Sun Feb 17 17:21:53 UTC 2013 - jengelh@inai.de
- Use more robust make install call
-------------------------------------------------------------------
Wed Apr 11 16:20:44 UTC 2012 - vuntz@opensuse.org
- Update to version 1.1.2:
+ Janitorial cleanups
+ Build configuration improvements
-------------------------------------------------------------------
Tue Feb 7 22:17:49 UTC 2012 - jengelh@medozas.de
- Split xorg-x11-libs into separate packages

103
libdmx.spec Normal file
View File

@ -0,0 +1,103 @@
#
# spec file for package libdmx
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: libdmx
%define lname libdmx1
Version: 1.1.4
Release: 0
Summary: Distributed Multihead X extension library
License: MIT
Group: Development/Libraries/C and C++
Url: http://xorg.freedesktop.org/
#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libdmx
#Git-Web: http://cgit.freedesktop.org/xorg/lib/libdmx/
Source: http://xorg.freedesktop.org/releases/individual/lib/%{name}-%{version}.tar.bz2
Source1: baselibs.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
#git#BuildRequires: autoconf >= 2.60, automake, libtool
BuildRequires: pkgconfig
BuildRequires: pkgconfig(dmxproto) >= 2.2.99.1
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xext)
BuildRequires: pkgconfig(xextproto)
BuildRequires: pkgconfig(xorg-macros) >= 1.8
%description
libdmx is an interface to the DMX extension for X, which allows a
single server to be set up as a proxy spanning multiple servers --
not unlike Xinerama across discrete physical machines. It can be
reconfigured on the fly to change the layout, and it is presented as
a single logical display to clients.
%package -n %lname
Summary: Distributed Multihead X extension library
Group: System/Libraries
%description -n %lname
libdmx is an interface to the DMX extension for X, which allows a
single server to be set up as a proxy spanning multiple servers --
not unlike Xinerama across discrete physical machines. It can be
reconfigured on the fly to change the layout, and it is presented as
a single logical display to clients.
libdmx allows clients to configure the layout of DMX servers by
adding and removing screens, input devices, et al.
%package devel
Summary: Development files for the Distributed Multihead X extension library
Group: Development/Libraries/C and C++
Requires: %lname = %version
%description devel
libdmx is an interface to the DMX extension for X, which allows a
single server to be set up as a proxy spanning multiple servers --
not unlike Xinerama across discrete physical machines. It can be
reconfigured on the fly to change the layout, and it is presented as
a single logical display to clients.
This package contains the development headers for the library found
in %lname.
%prep
%setup -q
%build
%configure --disable-static
make %{?_smp_mflags}
%install
make install DESTDIR="%buildroot"
rm -f "%buildroot/%_libdir"/*.la
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%defattr(-,root,root)
%_libdir/libdmx.so.1*
%files devel
%defattr(-,root,root)
%_includedir/X11/*
%_libdir/libdmx.so
%_libdir/pkgconfig/dmx.pc
%_mandir/man3/*
%changelog