mirror of
https://abf.rosa.ru/djam/libxfixes.git
synced 2025-02-24 09:32:47 +00:00
Automatic import for version 5.0
This commit is contained in:
commit
53bfe66a33
2 changed files with 182 additions and 0 deletions
2
.abf.yml
Normal file
2
.abf.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
sources:
|
||||
"libXfixes-5.0.tar.bz2": 3e4d374e9026111a04cd669d4b3434273fc34fe0
|
180
libxfixes.spec
Normal file
180
libxfixes.spec
Normal file
|
@ -0,0 +1,180 @@
|
|||
%define major 3
|
||||
%define libname %mklibname xfixes %{major}
|
||||
%define develname %mklibname xfixes -d
|
||||
%define staticname %mklibname xfixes -d -s
|
||||
|
||||
Name: libxfixes
|
||||
Summary: X Fixes Library
|
||||
Version: 5.0
|
||||
Release: %mkrel 1
|
||||
Group: Development/X11
|
||||
License: MIT
|
||||
URL: http://xorg.freedesktop.org
|
||||
Source0: http://xorg.freedesktop.org/releases/individual/lib/libXfixes-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-root
|
||||
|
||||
BuildRequires: libx11-devel >= 1.0.0
|
||||
BuildRequires: x11-proto-devel >= 7.6-3
|
||||
BuildRequires: x11-util-macros >= 1.0.1
|
||||
|
||||
%description
|
||||
%{name} is a simple library designed to interface the X Fixes Extension.
|
||||
|
||||
#-----------------------------------------------------------
|
||||
|
||||
%package -n %{libname}
|
||||
Summary: X Fixes Library
|
||||
Group: Development/X11
|
||||
Conflicts: libxorg-x11 < 7.0
|
||||
Provides: %{name} = %{version}
|
||||
|
||||
%description -n %{libname}
|
||||
%{name} is a simple library designed to interface the X Fixes Extension.
|
||||
|
||||
#-----------------------------------------------------------
|
||||
|
||||
%package -n %{develname}
|
||||
Summary: Development files for %{name}
|
||||
Group: Development/X11
|
||||
Requires: %{libname} = %{version}-%{release}
|
||||
Requires: x11-proto-devel >= 1.0.0
|
||||
Provides: libxfixes-devel = %{version}-%{release}
|
||||
Provides: libxfixes3-devel = %{version}-%{release}
|
||||
Obsoletes: %{mklibname xfixes 3}-devel
|
||||
|
||||
Conflicts: libxorg-x11-devel < 7.0
|
||||
|
||||
%description -n %{develname}
|
||||
Development files for %{name}
|
||||
|
||||
%pre -n %{develname}
|
||||
if [ -h %{_includedir}/X11 ]; then
|
||||
rm -f %{_includedir}/X11
|
||||
fi
|
||||
|
||||
%files -n %{develname}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libXfixes.so
|
||||
%{_libdir}/libXfixes.la
|
||||
%{_libdir}/pkgconfig/xfixes.pc
|
||||
%{_includedir}/X11/extensions/Xfixes.h
|
||||
%{_mandir}/man3/Xfixes.*
|
||||
|
||||
#-----------------------------------------------------------
|
||||
|
||||
%package -n %{staticname}
|
||||
Summary: Static development files for %{name}
|
||||
Group: Development/X11
|
||||
Requires: %{develname} = %{version}-%{release}
|
||||
Provides: libxfixes-static-devel = %{version}-%{release}
|
||||
Provides: libxfixes3-static-devel = %{version}-%{release}
|
||||
Obsoletes: %{mklibname xfixes 3}-static-devel
|
||||
|
||||
Conflicts: libxorg-x11-static-devel < 7.0
|
||||
|
||||
%description -n %{staticname}
|
||||
Static development files for %{name}
|
||||
|
||||
%files -n %{staticname}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libXfixes.a
|
||||
|
||||
#-----------------------------------------------------------
|
||||
|
||||
%prep
|
||||
%setup -q -n libXfixes-%{version}
|
||||
|
||||
%build
|
||||
%configure2_5x --x-includes=%{_includedir}\
|
||||
--x-libraries=%{_libdir}
|
||||
|
||||
%make
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
%makeinstall_std
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%if %mdkversion < 200900
|
||||
%post -p /sbin/ldconfig
|
||||
%endif
|
||||
%if %mdkversion < 200900
|
||||
%postun -p /sbin/ldconfig
|
||||
%endif
|
||||
|
||||
%files -n %{libname}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libXfixes.so.%{major}*
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Apr 11 2011 Matthew Dawkins <mattydaw@mandriva.org> 5.0-1mdv2011.0
|
||||
+ Revision: 652707
|
||||
- defined major
|
||||
- requires x11-proto-devel 7.6-3 or better
|
||||
- new version 5.0
|
||||
|
||||
* Tue Mar 15 2011 Funda Wang <fwang@mandriva.org> 4.0.5-3
|
||||
+ Revision: 644854
|
||||
- correct obsoletes
|
||||
|
||||
* Fri Feb 18 2011 Matthew Dawkins <mattydaw@mandriva.org> 4.0.5-2
|
||||
+ Revision: 638541
|
||||
- dropped major from devel and static pkgs
|
||||
- added proper provides and obsoletes
|
||||
|
||||
* Wed Jul 21 2010 Thierry Vignaud <tv@mandriva.org> 4.0.5-1mdv2011.0
|
||||
+ Revision: 556456
|
||||
- new release
|
||||
|
||||
* Mon Nov 09 2009 Thierry Vignaud <tv@mandriva.org> 4.0.4-1mdv2010.1
|
||||
+ Revision: 463609
|
||||
- new release
|
||||
|
||||
* Wed Sep 02 2009 Christophe Fergeau <cfergeau@mandriva.com> 4.0.3-5mdv2010.0
|
||||
+ Revision: 425898
|
||||
- rebuild
|
||||
|
||||
* Tue Jun 17 2008 Thierry Vignaud <tv@mandriva.org> 4.0.3-4mdv2009.0
|
||||
+ Revision: 223073
|
||||
- rebuild
|
||||
|
||||
+ Pixel <pixel@mandriva.com>
|
||||
- do not call ldconfig in %%post/%%postun, it is now handled by filetriggers
|
||||
|
||||
+ Paulo Andrade <pcpa@mandriva.com.br>
|
||||
- Revert build requires.
|
||||
|
||||
* Mon Jan 14 2008 Paulo Andrade <pcpa@mandriva.com.br> 4.0.3-3mdv2008.1
|
||||
+ Revision: 151684
|
||||
- Update BuildRequires and rebuild.
|
||||
|
||||
+ Olivier Blin <oblin@mandriva.com>
|
||||
- restore BuildRoot
|
||||
|
||||
* Mon Dec 17 2007 Thierry Vignaud <tv@mandriva.org> 4.0.3-2mdv2008.1
|
||||
+ Revision: 129248
|
||||
- kill re-definition of %%buildroot on Pixel's request
|
||||
- fix man pages extension
|
||||
|
||||
|
||||
* Fri Feb 16 2007 Thierry Vignaud <tvignaud@mandriva.com> 4.0.3-2mdv2007.0
|
||||
+ Revision: 121698
|
||||
- bump release
|
||||
|
||||
* Tue Nov 21 2006 Thierry Vignaud <tvignaud@mandriva.com> 4.0.3-1mdv2007.1
|
||||
+ Revision: 85952
|
||||
- new release
|
||||
|
||||
+ Gustavo Pichorim Boiko <boiko@mandriva.com>
|
||||
- rebuild to fix cooker uploading
|
||||
- X11R7.1
|
||||
- increment release
|
||||
- fixed more dependencies
|
||||
- Adding X.org 7.0 to the repository
|
||||
|
||||
+ Andreas Hasenack <andreas@mandriva.com>
|
||||
- renamed mdv to packages because mdv is too generic and it's hosting only packages anyway
|
||||
|
Loading…
Add table
Reference in a new issue