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

Revision 10654, 9.2 KB checked in by takemikaduchi, 8 years ago (diff)

new upstream release

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.5.0
13Release:        1%{?_dist_release}
14URL:            http://www.freedesktop.org/wiki/Openchrome/
15License:        MIT
16Group:          User Interface/X Hardware Support
17BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
18
19Source0:        http://xorg.freedesktop.org/archive/individual/driver/%{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* Fri Jul 22 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.5.0-1
115- new upstream release
116
117* Thu May 05 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.0-1
118- new upstream release
119
120* Sun Oct 25 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-6
121- rebuild with xserver-1.17.2
122
123* Sat Nov 22 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-5
124- rebuild with xserver-1.16.2
125
126* Thu Jul 10 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-4
127- rebuild with xserver-1.15.2
128
129* Tue Jun 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-3
130- change BuildRequires: eudev-libudev-devel instead of libudev-devel
131
132* Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-2
133- rebuild with VineSeed environment
134
135* Sun Jun 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-1
136- new upstream release
137  (including security fix for CVE-2013-1994)
138
139* Sun May 05 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.2-1
140- new upstream release
141
142* Sun Aug 05 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.0-1
143- new upstream release
144- add BuildRequires: libudev-devel
145
146* Wed May 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.906-1
147- new upstream release
148- remove Patch1
149
150* Sun Mar 25 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.905-1
151- new upstream release
152- remove Patch20 (openchrome-0.2.904-I420_Xv_surface_for_CME.patch)
153- add Patch1 (openchrome-0.2.905-xv_support_for_vx900.patch) from fedora
154
155* Wed Nov 02 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-8
156- rebuild with xserver-1.11.1.902
157
158* Thu May 12 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-7
159- rebuild (missing to replace patch).
160
161* Wed May 11 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-6
162- update to svn trunk (r925)
163- delete Patch1
164
165* Mon Feb 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-5
166- rebuild with xserver-1.10.0
167
168* Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-4
169- rebuild with xserver-1.9.2
170
171* Tue Oct 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.904-3
172- update to svn trunk (r854)
173- add patch13,20 from fedora
174
175* Sun Mar 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.904-2
176- rebuild with xserver-1.8rc
177
178* Thu Nov 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.904-1
179- new upstream release
180
181* Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp>  0.2.903-2
182- rebuild with X server 1.6.0
183
184* Sun Aug 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.903-1
185- new upstream release
186
187* Sat May 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp>  0.2.902-1
188- initial build for Vine Linux
189
190* Thu Apr 17 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.902-3
191- Strip leading /trunk/ from patch #2 and #3.
192
193* Sun Apr 13 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.902-2
194- Add patch to properly report driver version in the libpciaccess code path.
195- Add patch to properly report chipset revision in the libpciaccess code path.
196
197* Wed Apr 09 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.902-1
198- New upstream release.
199- Re-enable AGPDMA for K8M800 and VM800, as the drm bug is fixed in kernel
200  >= 2.6.25rc7 (Patch #1).
201
202* Mon Mar 17 2008 Jesse Keating <jkeating@redhat.com> - 0.2.901-16
203- Remove dangerous unversioned obsoletes/provides.
204
205* Sun Mar 16 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-15
206- Update to latest svn snapshot (Rev. 553).
207
208* Sun Mar 09 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-14
209- Revert to last good version of the libpciaccess patch.
210
211* Sun Mar 09 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-13
212- Temporarily revert to old memory detection method. We need something that
213  works out of the box for F9 Beta.
214
215* Sat Mar 08 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-12
216- Yet another revision of the libpciaccess patch.
217
218* Fri Mar 07 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-11
219- Fix a typo in libpciaccess patch.
220
221* Fri Mar 07 2008 Adam Jackson <ajax@redhat.com> 0.2.901-10
222- Fix -devel subpackage to obsolete via-devel properly.
223
224* Thu Mar 06 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-9
225- Fix libpciaccess patch.
226
227* Thu Mar 06 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-8
228- Add patch to fix XV on LCD for VM800.
229- Improved libpciaccess patch.
230
231* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.2.901-7
232- Autorebuild for GCC 4.3
233
234* Wed Jan 23 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-6
235- Add patch to properly set fifo on P4M900.
236
237* Sat Jan 19 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-5
238- Add patch to replace xf86memcpy by plain memcpy.
239
240* Thu Jan 10 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-4
241- Another try at fixing the libpciaccess patch.
242
243* Mon Jan 07 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-3
244- And now fix patch filename...
245
246* Mon Jan 07 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-2
247- Fix broken libpciaccess patch.
248
249* Wed Jan 02 2008 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.901-1
250- Update to 0.2.901.
251- Remove obsoleted patches.
252- Update libpciaccess patch.
253
254* Sat Dec 08 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-9
255- Add patch for preliminary libpciaccess support.
256
257* Wed Nov 28 2007 Adam Jackson <ajax@redhat.com> 0.2.900-8
258- Obsolete xorg-x11-drv-via.  The king is dead, long live the king.
259- Munge xorg.conf in %%post to change from via to openchrome.
260- Drive-by spec cleanups.
261
262* Fri Nov 02 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-7
263- Replace broken VT1625 NTSC patch.
264- Add patch to announce as release not as development build.
265- First official Fedora build.
266
267* Thu Oct 18 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-6
268- Update to official 0.2.900
269
270* Wed Oct 10 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-5
271- Update to release_0_3_0 branch rev. 410
272- Add VT1625 patch for 720x576 PAL
273
274* Mon Sep 10 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-4
275- Update to release_0_3_0 branch rev. 384 plus all changes from experimental
276  merged back
277- Remove upstream patch #2
278
279* Wed Aug 01 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-3
280- Update to release_0_3_0 branch rev. 380 (fix a bug with XvMC acceleration)
281- Add a patch to allow proper detection of DDR667 (patch #2)
282
283* Mon Jul 16 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-2
284- Update to release_0_3_0 branch rev. 373
285- Add release notes to %%doc
286
287* Thu Jul 05 2007 Xavier Bachelot <xavier AT bachelot DOT org> - 0.2.900-1
288- Initial build (release_0_3_0 branch rev. 365)
289- Add some NTSC modes for the VT1625 (patch #1)
Note: See TracBrowser for help on using the repository browser.