SHA256
1
0
forked from pool/libXcursor
libXcursor/libXcursor.spec
Stefan Dirsch c564432d33 Accepting request 555108 from home:tobijk:branches:X11:XOrg
- Update to version 1.1.15:
  * configure: Drop AM_MAINTAINER_MODE
  * autogen.sh: Honor NOCONFIGURE=1
  * Use strdup() instead of malloc(strlen())+strcpy()
  * Fix some clang integer sign/size mismatch warnings
  * autogen.sh: use quoted string variables
  * autogen: add default patch prefix
  * autogen.sh: use exec instead of waiting for configure to finish
  * Fix heap overflows when parsing malicious files. (CVE-2017-16612)
  * Insufficient memory for terminating null of string in _XcursorThemeInherits
- Drop U_Avoid-heap-overflows-due-to-integer-overflow-signedn.patch

OBS-URL: https://build.opensuse.org/request/show/555108
OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/libXcursor?expand=0&rev=17
2017-12-10 12:44:02 +00:00

101 lines
3.2 KiB
RPMSpec

#
# spec file for package libXcursor
#
# Copyright (c) 2017 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: libXcursor
%define lname libXcursor1
Version: 1.1.15
Release: 0
Summary: X Window System Cursor management library
License: MIT
Group: Development/Libraries/C and C++
Url: http://xorg.freedesktop.org/
#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXcursor
#Git-Web: http://cgit.freedesktop.org/xorg/lib/libXcursor/
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: fdupes
BuildRequires: pkgconfig
BuildRequires: pkgconfig(fixesproto)
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xextproto)
BuildRequires: pkgconfig(xfixes)
BuildRequires: pkgconfig(xorg-macros) >= 1.8
BuildRequires: pkgconfig(xrender) >= 0.8.2
%description
Xcursor a library designed to help locate and load cursors. Cursors
can be loaded from files or memory. A library of common cursors
exists which map to the standard X cursor names.Cursors can exist in
several sizes and the library automatically picks the best size.
%package -n %lname
Summary: X Window System Cursor management library
Group: System/Libraries
%description -n %lname
Xcursor a library designed to help locate and load cursors. Cursors
can be loaded from files or memory. A library of common cursors
exists which map to the standard X cursor names.Cursors can exist in
several sizes and the library automatically picks the best size.
%package devel
Summary: Development files for the X Window System Cursor library
Group: Development/Libraries/C and C++
Requires: %lname = %version
%description devel
Xcursor a library designed to help locate and load cursors. Cursors
can be loaded from files or memory. A library of common cursors
exists which map to the standard X cursor names.Cursors can exist in
several sizes and the library automatically picks the best size.
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
%fdupes %buildroot/%_prefix
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%defattr(-,root,root)
%_libdir/libXcursor.so.1*
%files devel
%defattr(-,root,root)
%_includedir/X11/*
%_libdir/libXcursor.so
%_libdir/pkgconfig/xcursor.pc
%_mandir/man3/*
%changelog