From 780e79f9ec949365d50cdc8da377b15d6ff0dff4 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 19:39:22 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.0.0-1mamba;Fri Dec 08 2017] --- README.md | 2 ++ xf86-video-vboxvideo.spec | 51 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 xf86-video-vboxvideo.spec diff --git a/README.md b/README.md index 8aacd89..f9ba4d4 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # xf86-video-vboxvideo +X.org video driver for VirtualBox guest machine. + diff --git a/xf86-video-vboxvideo.spec b/xf86-video-vboxvideo.spec new file mode 100644 index 0000000..176f2ab --- /dev/null +++ b/xf86-video-vboxvideo.spec @@ -0,0 +1,51 @@ +%define xorg_ver %(pkg-config xorg-server --modversion|cut -d. -f 1-2) +Name: xf86-video-vboxvideo +Version: 1.0.0 +Release: 1mamba +Summary: X.org video driver for VirtualBox guest machine +Group: System/X11 +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://x.org +Source: ftp://x.org/pub/individual/driver/xf86-video-vboxvideo-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +BuildRequires: xorg-server-devel >= 1.19.5 +Requires: xorg-server >= %{xorg_ver} +Requires: xorg-server <= %{xorg_ver}.255 +Provides: xorg-drv-video-vboxvideo +Obsoletes: xorg-drv-video-vboxvideo +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +X.org video driver for VirtualBox guest machine. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_libdir}/xorg/modules/drivers/vboxvideo_drv.la +%{_libdir}/xorg/modules/drivers/vboxvideo_drv.so +%{_mandir}/man4/vboxvideo.4* +%doc COPYING + +%changelog +* Fri Dec 08 2017 Silvan Calarco 1.0.0-1mamba +- package created using the webbuild interface