2005-10-02 14:44:47 +00:00
|
|
|
%define tarball xf86-video-vmware
|
|
|
|
# All packages should own all dirs they lead up to, for saner
|
|
|
|
# rpm packaging, in particular if the leading dirs are not owned by
|
|
|
|
# the "filesystem" package.
|
|
|
|
%define moduledir %(pkg-config xorg-server --variable=moduledir )
|
|
|
|
# define driverdir to the appropriate type for this driver class
|
2005-11-05 00:27:29 +00:00
|
|
|
%define driverdir %{moduledir}/drivers
|
2005-10-02 14:44:47 +00:00
|
|
|
|
|
|
|
%define cvsdate xxxxxxx
|
|
|
|
|
|
|
|
Summary: Xorg X11 vmware video driver
|
|
|
|
Name: xorg-x11-drv-vmware
|
2005-11-05 00:27:29 +00:00
|
|
|
Version: 10.11.0.1
|
|
|
|
Release: 1
|
2005-10-02 14:44:47 +00:00
|
|
|
URL: http://www.x.org
|
|
|
|
# FIXME: If using a CVS version, uncomment the second Source0 line and use
|
|
|
|
# it instead.
|
|
|
|
Source0: http://xorg.freedesktop.org/X11R7.0-RC0/driver/%{tarball}-%{version}.tar.bz2
|
2005-10-04 22:09:11 +00:00
|
|
|
#Source0: %{tarball}-%{version}-%{cvsdate}.tar.bz2
|
2005-10-02 14:44:47 +00:00
|
|
|
License: MIT/X11
|
|
|
|
Group: User Interface/X Hardware Support
|
2005-10-04 22:09:11 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2005-10-02 14:44:47 +00:00
|
|
|
|
2005-10-04 22:09:11 +00:00
|
|
|
ExclusiveArch: %{ix86} x86_64 ia64
|
2005-10-02 14:44:47 +00:00
|
|
|
|
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: xorg-x11-server-sdk
|
|
|
|
|
|
|
|
Requires: xorg-x11-server-Xorg
|
|
|
|
%description
|
|
|
|
X.Org X11 vmware video driver.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{tarball}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --disable-static
|
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
# FIXME: This should be using makeinstall macro instead. Please test
|
|
|
|
# makeinstall with this driver, and if it works, check it into CVS. If
|
|
|
|
# it fails, fix it in upstream sources and file a patch upstream.
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
# FIXME: Remove all libtool archives (*.la) from modules directory. This
|
|
|
|
# should be fixed in upstream Makefile.am or whatever.
|
2005-11-05 00:27:29 +00:00
|
|
|
find $RPM_BUILD_ROOT -regex ".*.la$" | xargs rm -f --
|
2005-10-02 14:44:47 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%dir %{moduledir}
|
|
|
|
%dir %{driverdir}
|
2005-10-04 22:09:11 +00:00
|
|
|
%{driverdir}/vmware_drv.so
|
2005-10-02 14:44:47 +00:00
|
|
|
# NOTE: Uncomment when multimedia drivers are avail
|
|
|
|
#%dir %{moduledir}/multimedia
|
|
|
|
#%{moduledir}/multimedia/*.so
|
|
|
|
%dir %{_mandir}
|
2005-11-05 00:27:29 +00:00
|
|
|
%dir %{_mandir}/man4x
|
|
|
|
%{_mandir}/man4x/*.4x*
|
2005-10-02 14:44:47 +00:00
|
|
|
|
|
|
|
%changelog
|
2005-11-05 00:27:29 +00:00
|
|
|
* Fri Nov 4 2005 Mike A. Harris <mharris@redhat.com> 10.11.0.1-1
|
|
|
|
- Updated xorg-x11-drv-vmware to version 10.11.0.1 from X11R7 RC1
|
|
|
|
- Fix *.la file removal.
|
2005-10-04 22:09:11 +00:00
|
|
|
* Tue Oct 4 2005 Mike A. Harris <mharris@redhat.com> 10.10.2-1
|
|
|
|
- Update BuildRoot to use Fedora Packaging Guidelines.
|
|
|
|
- Deglob file manifest.
|
|
|
|
- Limit "ExclusiveArch" to x86, x86_64, ia64
|
|
|
|
|
2005-10-02 14:44:47 +00:00
|
|
|
* Fri Sep 2 2005 Mike A. Harris <mharris@redhat.com> 10.10.2-0
|
|
|
|
- Initial spec file for vmware video driver generated automatically
|
|
|
|
by my xorg-driverspecgen script.
|