From d6db8c82436242a1ed4b3a7d4f5f1cb9177491e5 Mon Sep 17 00:00:00 2001 From: mharris Date: Fri, 30 Sep 2005 11:23:06 +0000 Subject: [PATCH] - Renamed package to remove xorg-x11 from the name due to unanimous decision between developers. - Use Fedora Extras style BuildRoot tag. - Disable static library creation by default. - Add missing defattr to devel subpackage - Add missing documentation files to doc macro --- libXv.spec | 41 +++++++++++++++++++++++++++++------------ 1 file changed, 29 insertions(+), 12 deletions(-) diff --git a/libXv.spec b/libXv.spec index ce9b940..f4efd18 100644 --- a/libXv.spec +++ b/libXv.spec @@ -1,19 +1,19 @@ -%define pkgname libXv + Summary: X.Org X11 libXv runtime library -Name: xorg-x11-%{pkgname} +Name: libXv Version: 0.99.0 -Release: 2 +Release: 3 License: MIT/X11 Group: System Environment/Libraries URL: http://www.x.org -Source0: %{pkgname}-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot +Source0: http://xorg.freedesktop.org/X11R7.0-RC0/everything/%{name}-%{version}.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xorg-x11-proto-devel BuildRequires: libX11-devel BuildRequires: libXext-devel -Provides: %{pkgname} + Conflicts: XFree86-libs, xorg-x11-libs %description @@ -24,22 +24,28 @@ Summary: X.Org X11 libXv development package Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Provides: %{pkgname}-devel + Conflicts: XFree86-devel, xorg-x11-devel %description devel X.Org X11 libXv development package %prep -%setup -q -c %{name}-%{version} +%setup -q + +# Disable static library creation by default. +%define with_static 0 %build -cd %{pkgname}-%{version} -%configure + +%configure \ +%if ! %{with_static} + --disable-static +%endif make %install -cd %{pkgname}-%{version} + rm -rf $RPM_BUILD_ROOT %makeinstall @@ -54,16 +60,19 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc +%doc AUTHORS COPYING README INSTALL ChangeLog %dir %{_libdir} %{_libdir}/libXv.so.1 %{_libdir}/libXv.so.1.0.0 %files devel +%defattr(-,root,root,-) %dir %{_includedir}/X11 %dir %{_includedir}/X11/extensions %{_includedir}/X11/extensions/Xvlib.h +%if %{with_static} %{_libdir}/libXv.a +%endif %{_libdir}/libXv.so %dir %{_libdir}/pkgconfig %{_libdir}/pkgconfig/xv.pc @@ -72,6 +81,14 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Sep 29 2005 Mike A. Harris 0.99.0-3 +- Renamed package to remove xorg-x11 from the name due to unanimous decision + between developers. +- Use Fedora Extras style BuildRoot tag. +- Disable static library creation by default. +- Add missing defattr to devel subpackage +- Add missing documentation files to doc macro + * Tue Aug 23 2005 Mike A. Harris 0.99.0-2 - Renamed package to prepend "xorg-x11" to the name for consistency with the rest of the X11R7 packages.