automatic update by autodist [release 0.4.4-1mamba;Fri Dec 27 2013]
This commit is contained in:
parent
1bd2fa1049
commit
3ea60929ba
@ -1,2 +1,4 @@
|
|||||||
# xorg-drv-video-fbdev
|
# xorg-drv-video-fbdev
|
||||||
|
|
||||||
|
fbdev X.Org video drivers.
|
||||||
|
|
||||||
|
20
xorg-drv-video-fbdev-0.4.3-canDoBGNoneRoot.patch
Normal file
20
xorg-drv-video-fbdev-0.4.3-canDoBGNoneRoot.patch
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
diff -ru xf86-video-fbdev-0.4.3.orig/src/fbdev.c xf86-video-fbdev-0.4.3/src/fbdev.c
|
||||||
|
--- xf86-video-fbdev-0.4.3.orig/src/fbdev.c 2013-09-18 20:03:27.383935332 +0200
|
||||||
|
+++ xf86-video-fbdev-0.4.3/src/fbdev.c 2013-09-18 20:03:43.966801204 +0200
|
||||||
|
@@ -686,7 +686,6 @@
|
||||||
|
xf86DrvMsg(pScrn->scrnIndex,X_ERROR,"mode initialization failed\n");
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
- fbdevHWSaveScreen(pScreen, SCREEN_SAVER_ON);
|
||||||
|
fbdevHWAdjustFrame(ADJUST_FRAME_ARGS(pScrn, 0, 0));
|
||||||
|
|
||||||
|
/* mi layer */
|
||||||
|
@@ -889,6 +888,7 @@
|
||||||
|
NULL, flags))
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
+ pScreen->canDoBGNoneRoot = TRUE;
|
||||||
|
xf86DPMSInit(pScreen, fbdevHWDPMSSetWeak(), 0);
|
||||||
|
|
||||||
|
pScreen->SaveScreen = fbdevHWSaveScreenWeak();
|
||||||
|
Solo in xf86-video-fbdev-0.4.3.orig/src: fbdev.c.orig
|
94
xorg-drv-video-fbdev.spec
Normal file
94
xorg-drv-video-fbdev.spec
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
%define xorg_ver %(pkg-config xorg-server --modversion|cut -d. -f 1-2)
|
||||||
|
%define filename xf86-video-fbdev
|
||||||
|
Name: xorg-drv-video-fbdev
|
||||||
|
Version: 0.4.4
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: fbdev X.Org video drivers
|
||||||
|
Group: System/X11
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: http://x.org
|
||||||
|
Source: ftp://x.org/pub/individual/driver/%{filename}-%{version}.tar.bz2
|
||||||
|
Patch0: xorg-drv-video-fbdev-0.4.3-canDoBGNoneRoot.patch
|
||||||
|
License: MIT
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
BuildRequires: glibc-devel
|
||||||
|
BuildRequires: libdrm-devel
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRequires: xorg-server-devel >= 1.1.0
|
||||||
|
BuildRequires: xorg-proto-devel
|
||||||
|
BuildRequires: libXvMC-devel >= 1.0.2
|
||||||
|
BuildRequires: libXrender >= 0.9.1
|
||||||
|
BuildRequires: libXrandr >= 1.1.1
|
||||||
|
BuildRequires: libXv >= 1.0.1
|
||||||
|
BuildRequires: libdrm-devel >= 2.3.0
|
||||||
|
BuildRequires: libXinerama-devel >= 1.0.1
|
||||||
|
BuildRequires: libpthread-stubs-devel
|
||||||
|
BuildRequires: xorg-server-devel
|
||||||
|
Provides: xorgdrvvideo
|
||||||
|
Requires: xorg-server >= %{xorg_ver}
|
||||||
|
Requires: xorg-server <= %{xorg_ver}.255
|
||||||
|
|
||||||
|
%description
|
||||||
|
fbdev X.Org video drivers.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n xf86-video-fbdev-%{version}
|
||||||
|
%patch0 -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure
|
||||||
|
%make
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
%makeinstall
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/xorg/modules/drivers/fbdev_drv.la
|
||||||
|
%{_libdir}/xorg/modules/drivers/fbdev_drv.so
|
||||||
|
%{_mandir}/man4/fbdev.4.gz
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Dec 27 2013 Automatic Build System <autodist@mambasoft.it> 0.4.4-1mamba
|
||||||
|
- automatic update by autodist
|
||||||
|
|
||||||
|
* Wed Sep 18 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.3-5mamba
|
||||||
|
- adjust X -background support by removing fbdevHWSaveScreen (side effects?)
|
||||||
|
|
||||||
|
* Wed Sep 11 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.3-4mamba
|
||||||
|
- added a patch to support X -background none by setting canDoBGNoneRoot = TRUE
|
||||||
|
|
||||||
|
* Tue Mar 05 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.3-3mamba
|
||||||
|
- xorg-server 1.12 mass rebuild
|
||||||
|
|
||||||
|
* Thu Dec 06 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.3-2mamba
|
||||||
|
- mass rebuild: xorg-server 1.10 backport from devel-xorg
|
||||||
|
|
||||||
|
* Mon Aug 13 2012 Automatic Build System <autodist@mambasoft.it> 0.4.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jun 07 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.2-4mamba
|
||||||
|
- automatic update by autodist
|
||||||
|
|
||||||
|
* Fri Feb 17 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.2-3mamba
|
||||||
|
- automatic update by autodist
|
||||||
|
|
||||||
|
* Mon Aug 08 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.2-2mamba
|
||||||
|
- rebuilt for xorg-server 1.10
|
||||||
|
|
||||||
|
* Wed Apr 14 2010 Automatic Build System <autodist@mambasoft.it> 0.4.2-1mamba
|
||||||
|
- automatic update by autodist
|
||||||
|
|
||||||
|
* Sat Oct 24 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.1-1mamba
|
||||||
|
- update to 0.4.1
|
||||||
|
|
||||||
|
* Sun Jun 07 2009 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 0.4.0-1mamba
|
||||||
|
- Package created
|
||||||
|
|
Loading…
Reference in New Issue
Block a user