source: projects/specs/trunk/x/xorg-x11-drv-openchrome/xorg-x11-drv-openchrome-vl.spec @ 9108

Revision 9108, 8.9 KB checked in by Takemikaduchi, 9 years ago (diff)

xserver-1.16.2

Line 
1%define tarball xf86-video-openchrome
2%define moduledir %(pkg-config xorg-server --variable=moduledir )
3%define driverdir       %{moduledir}/drivers
4
5%define cvsdate xxxxxxx
6
7%define with_xvmc 1
8
9Summary:        Xorg X11 openchrome video driver
10Summary(ja):    Xorg X11 openchrome ビデオドライバ
11Name:           xorg-x11-drv-openchrome
12Version:        0.3.3
13Release:        5%{?_dist_release}
14URL:            http://www.openchrome.org
15License:        MIT
16Group:          User Interface/X Hardware Support
17BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
18
19Source0:        http://www.openchrome.org/releases/%{tarball}-%{version}.tar.bz2
20Source1:        openchrome.xinf
21
22# Patches from Fedora :
23Patch13:        openchrome-0.2.904-fix_tvout_flickering.patch
24
25ExclusiveArch:  %{ix86} x86_64
26
27BuildRequires:  pkgconfig
28BuildRequires:  xorg-x11-server-sdk
29BuildRequires:  automake
30BuildRequires:  libtool
31BuildRequires:  libX11-devel
32BuildRequires:  libXext-devel
33BuildRequires:  mesa-libGL-devel
34%if %{with_xvmc}
35BuildRequires:  libXvMC-devel
36%endif
37BuildRequires:  libdrm-devel >= 2.0-1
38BuildRequires:  eudev-libudev-devel
39Requires:       xorg-x11-server-Xorg
40
41Obsoletes:  XOrg-drv-via <= 0.2.2-4
42Provides:   xorg-x11-drv-via = 0.2.2-5
43
44Vendor: Project Vine
45Distribution: Vine Linux
46
47%description
48X.Org X11 openchrome video driver.
49
50%if %{with_xvmc}
51%package devel
52Summary:        Xorg X11 openchrome video driver XvMC development package
53Summary(ja):    Xorg X11 openchrome ビデオドライバ XvMC 開発パッケージ
54Group:          Development/System
55Requires:       %{name} = %{version}-%{release}
56Obsoletes:      XOrg-drv-via-devel <= 0.2.2-4
57Provides:       xorg-x11-drv-via-devel = 0.2.2-5
58
59%description devel
60X.Org X11 openchrome video driver XvMC development package.
61%endif
62
63%prep
64%setup -q -n %{tarball}-%{version}
65#%patch0 -p0
66%patch13 -p0
67
68%build
69%configure --disable-static --enable-dri
70make
71
72%install
73rm -rf $RPM_BUILD_ROOT
74
75make install DESTDIR=$RPM_BUILD_ROOT
76
77mkdir -p $RPM_BUILD_ROOT%{_datadir}/hwdata/videoaliases
78install -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/hwdata/videoaliases/openchrome.xinf
79
80# FIXME: Remove all libtool archives (*.la) from modules directory.  This
81# should be fixed in upstream Makefile.am or whatever.
82find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f --
83
84%clean
85rm -rf $RPM_BUILD_ROOT
86
87%post
88if [ -e /etc/X11/xorg.conf ]; then
89    sed -i "/Driver/s/via/openchrome/" /etc/X11/xorg.conf || :
90fi
91
92%files
93%defattr(-,root,root,-)
94%doc COPYING NEWS README
95%{driverdir}/openchrome_drv.so
96%{_datadir}/hwdata/videoaliases/openchrome.xinf
97%if %{with_xvmc}
98%{_libdir}/libchromeXvMC.so.1
99%{_libdir}/libchromeXvMC.so.1.0.0
100%{_libdir}/libchromeXvMCPro.so.1
101%{_libdir}/libchromeXvMCPro.so.1.0.0
102%endif
103%{_mandir}/man4/openchrome.4.gz
104
105%if %{with_xvmc}
106%files devel
107%defattr(-,root,root,-)
108%{_libdir}/libchromeXvMC.so
109%{_libdir}/libchromeXvMCPro.so
110%endif
111
112
113%changelog
114* Sat Nov 22 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-5
115- rebuild with xserver-1.16.2
116
117* Thu Jul 10 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-4
118- rebuild with xserver-1.15.2
119
120* Tue Jun 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-3
121- change BuildRequires: eudev-libudev-devel instead of libudev-devel
122
123* Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-2
124- rebuild with VineSeed environment
125
126* Sun Jun 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-1
127- new upstream release
128  (including security fix for CVE-2013-1994)
129
130* Sun May 05 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.2-1
131- new upstream release
132
133* Sun Aug 05 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.0-1
134- new upstream release
135- add BuildRequires: libudev-devel
136
137* Wed May 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.906-1
138- new upstream release
139- remove Patch1
140
141* Sun Mar 25 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.905-1
142- new upstream release
143- remove Patch20 (openchrome-0.2.904-I420_Xv_surface_for_CME.patch)
144- add Patch1 (openchrome-0.2.905-xv_support_for_vx900.patch) from fedora
145
146* Wed Nov 02 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-8
147- rebuild with xserver-1.11.1.902
148
149* Thu May 12 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-7
150- rebuild (missing to replace patch).
151
152* Wed May 11 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-6
153- update to svn trunk (r925)
154- delete Patch1
155
156* Mon Feb 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-5
157- rebuild with xserver-1.10.0
158
159* Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-4
160- rebuild with xserver-1.9.2
161
162* Tue Oct 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.904-3
163- update to svn trunk (r854)
164- add patch13,20 from fedora
165
166* Sun Mar 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-2
167- rebuild with xserver-1.8rc
168
169* Thu Nov 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.904-1
170- new upstream release
171
172* Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp>  0.2.903-2
173- rebuild with X server 1.6.0
174
175* Sun Aug 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.903-1
176- new upstream release
177
178* Sat May 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp>  0.2.902-1
179- initial build for Vine Linux
180
181* Thu Apr 17 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.902-3
182- Strip leading /trunk/ from patch #2 and #3.
183
184* Sun Apr 13 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.902-2
185- Add patch to properly report driver version in the libpciaccess code path.
186- Add patch to properly report chipset revision in the libpciaccess code path.
187
188* Wed Apr 09 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.902-1
189- New upstream release.
190- Re-enable AGPDMA for K8M800 and VM800, as the drm bug is fixed in kernel
191  >= 2.6.25rc7 (Patch #1).
192
193* Mon Mar 17 2008 Jesse Keating <jkeating@redhat.com> - 0.2.901-16
194- Remove dangerous unversioned obsoletes/provides.
195
196* Sun Mar 16 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-15
197- Update to latest svn snapshot (Rev. 553).
198
199* Sun Mar 09 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-14
200- Revert to last good version of the libpciaccess patch.
201
202* Sun Mar 09 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-13
203- Temporarily revert to old memory detection method. We need something that
204  works out of the box for F9 Beta.
205
206* Sat Mar 08 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-12
207- Yet another revision of the libpciaccess patch.
208
209* Fri Mar 07 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-11
210- Fix a typo in libpciaccess patch.
211
212* Fri Mar 07 2008 Adam Jackson <ajax@redhat.com> 0.2.901-10
213- Fix -devel subpackage to obsolete via-devel properly.
214
215* Thu Mar 06 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-9
216- Fix libpciaccess patch.
217
218* Thu Mar 06 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-8
219- Add patch to fix XV on LCD for VM800.
220- Improved libpciaccess patch.
221
222* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.2.901-7
223- Autorebuild for GCC 4.3
224
225* Wed Jan 23 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-6
226- Add patch to properly set fifo on P4M900.
227
228* Sat Jan 19 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-5
229- Add patch to replace xf86memcpy by plain memcpy.
230
231* Thu Jan 10 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-4
232- Another try at fixing the libpciaccess patch.
233
234* Mon Jan 07 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-3
235- And now fix patch filename...
236
237* Mon Jan 07 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-2
238- Fix broken libpciaccess patch.
239
240* Wed Jan 02 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-1
241- Update to 0.2.901.
242- Remove obsoleted patches.
243- Update libpciaccess patch.
244
245* Sat Dec 08 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-9
246- Add patch for preliminary libpciaccess support.
247
248* Wed Nov 28 2007 Adam Jackson <ajax@redhat.com> 0.2.900-8
249- Obsolete xorg-x11-drv-via.  The king is dead, long live the king.
250- Munge xorg.conf in %%post to change from via to openchrome.
251- Drive-by spec cleanups.
252
253* Fri Nov 02 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-7
254- Replace broken VT1625 NTSC patch.
255- Add patch to announce as release not as development build.
256- First official Fedora build.
257
258* Thu Oct 18 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-6
259- Update to official 0.2.900
260
261* Wed Oct 10 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-5
262- Update to release_0_3_0 branch rev. 410
263- Add VT1625 patch for 720x576 PAL
264
265* Mon Sep 10 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-4
266- Update to release_0_3_0 branch rev. 384 plus all changes from experimental
267  merged back
268- Remove upstream patch #2
269
270* Wed Aug 01 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-3
271- Update to release_0_3_0 branch rev. 380 (fix a bug with XvMC acceleration)
272- Add a patch to allow proper detection of DDR667 (patch #2)
273
274* Mon Jul 16 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-2
275- Update to release_0_3_0 branch rev. 373
276- Add release notes to %%doc
277
278* Thu Jul 05 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-1
279- Initial build (release_0_3_0 branch rev. 365)
280- Add some NTSC modes for the VT1625 (patch #1)
Note: See TracBrowser for help on using the repository browser.