source: projects/specs/trunk/c/clutter/clutter-vl.spec @ 9791

Revision 9791, 11.6 KB checked in by Takemikaduchi, 9 years ago (diff)

GNOME 3.18.1, BlueZ 5.35, ICU 56.1, Mesa 11.0.4, PulseAudio 7.1, xserver 1.17.4, etc.

RevLine 
[9791]1%define         clutter_version 1.24.2
[2041]2%define         clutter_release 1%{?_dist_release}
[521]3
4Name:           clutter
5Version:        %{clutter_version}
6Release:        %{clutter_release}
7Summary:        Open Source software library for creating rich graphical user interfaces
8Summary(ja):    リッチなGUIを作成するためのオープンソースライブラリ
9
10Group:          System Environment/Libraries
11License:        LGPLv2+
12URL:            http://www.clutter-project.org/
[9791]13Source0:        http://www.clutter-project.org/sources/%{name}/1.24/%{name}-%{version}.tar.xz
[2041]14
[4616]15Patch0:         clutter-fixdso.patch
[2041]16
[521]17BuildRoot:      %{_tmppath}/%{name}-%{version}-root
18
19Requires:       gobject-introspection
20# FIXME to remove when all the bits have been merged into their
21# libraries
22
23BuildRequires:  glib2-devel
24BuildRequires:  mesa-libGL-devel
[9073]25BuildRequires:  mesa-libEGL-devel
[2721]26BuildRequires:  gdk-pixbuf2-devel
27BuildRequires:  atk-devel
[521]28BuildRequires:  pkgconfig
29BuildRequires:  pango-devel
30BuildRequires:  libXdamage-devel
[2721]31BuildRequires:  libXcomposite-devel
32BuildRequires:  libXi-devel
[521]33BuildRequires:  gettext
34BuildRequires:  gtk-doc
[2041]35BuildRequires:  gobject-introspection-devel >= 0.9.5
36BuildRequires:  json-glib-devel
[9475]37BuildRequires:  cogl-devel >= 1.20.0
[521]38
[4732]39Vendor:         Project Vine
40Distribution:   Vine Linux
41Packager:       Takemikaduchi
[4616]42
[521]43%description
44Clutter is an open source software library for creating fast,
45visually rich graphical user interfaces. The most obvious example
46of potential usage is in media center type applications.
47We hope however it can be used for a lot more.
48
49%description -l ja
50Clutterは高速で視覚的にリッチなGUIを作成するためのオープンソースライブラリです。
51最も明白な使用例は、メディアセンター型アプリケーションでの使用です。
52しかしながら、我々はいろいろな分野で使用されることを願っています。
53
[7938]54%package                devel
[521]55Summary:        Clutter development environment
56Summary(ja):    Clutterの開発環境
57Group:          Development/Libraries
58Requires:       %{name} = %{version}-%{release}
[2721]59Requires:       pkgconfig glib2-devel pango-devel fontconfig-devel gdk-pixbuf2-devel
[521]60Requires:       mesa-libGL-devel
[9073]61Requires:       mesa-libEGL-devel
[521]62Requires:       gobject-introspection-devel
[7938]63Requires:               json-glib-devel
64Requires:               libXcomposite-devel
65Requires:               libXi-devel
[521]66
[7938]67%description    devel
[521]68Header files and libraries for building a extension library for the
69clutter
70
71
[7938]72%package        docs
[521]73Summary:        Documentation for %{name}
74Summary(ja):    %{name}用のドキュメント
75Group:          Documentation
[7938]76Provides:               %{name}-doc = %{version}-%{release}
77BuildArch:              noarch
[521]78
[7938]79%description    docs
[521]80Clutter is an open source software library for creating fast,
81visually rich graphical user interfaces. The most obvious example
82of potential usage is in media center type applications.
83We hope however it can be used for a lot more.
84
85This package contains documentation for clutter.
86
87
88%prep
89%setup -q
[4616]90%patch0 -p1 -b .dso
[521]91
[2041]92
[521]93%build
[2041]94#%configure --enable-gtk-doc \
95#       --enable-introspection=yes \
96#       --disable-silent-rules \
97#       --enable-xinput \
98#       --disable-static
99(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; CONFIGFLAGS=--enable-gtk-doc; fi;
100 %configure $CONFIGFLAGS \
101        --enable-introspection=yes \
102        --disable-silent-rules \
103        --enable-xinput \
[9073]104        --disable-static \
105        --enable-egl-backend=yes
[2041]106 # clutter git ships with some magic to put the git log in shipped tarballs
107 # which gets listed in files; don't blow up if it's missing
108 if ! test -f ChangeLog; then
109   echo "Created from snapshot" > ChangeLog
110 fi
111)
[521]112
[2041]113make V=0
114
[521]115%install
116rm -rf $RPM_BUILD_ROOT
117#make DESTDIR=$RPM_BUILD_ROOT install
118make DESTDIR=$RPM_BUILD_ROOT install INSTALL="%{__install} -p -c"
119
[4616]120rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
121
122%find_lang %{name}-1.0
123
[521]124%clean
125rm -rf $RPM_BUILD_ROOT
126
127%post -p /sbin/ldconfig
128%postun -p /sbin/ldconfig
129
[4616]130%files -f %{name}-1.0.lang
[521]131%defattr(-,root,root,-)
132%doc AUTHORS COPYING NEWS README
[4616]133%{_libdir}/*.so.*
[521]134%{_libdir}/girepository-1.0/*.typelib
135
136%files devel
137%defattr(-, root, root)
138%doc ChangeLog
[4616]139%{_includedir}/clutter-1.0
[521]140%{_libdir}/*.so
141%{_libdir}/pkgconfig/*.pc
142%{_datadir}/gir-1.0/*.gir
143
[7938]144%files docs
[521]145%defattr(-, root, root)
146%{_datadir}/gtk-doc/html/clutter
147
148
149%changelog
[9791]150* Sat Oct 31 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.24.2-1
151- new upstream release
152
[9646]153* Sun Jul 05 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.4-1
154- new upstream release
155
[9569]156* Sat May 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.2-1
157- new upstream release
158
[9475]159* Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.0-1
160- new upstream release
161
[9073]162* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.0-1
163- new upstream release
164- add BuildRequires: mesa-libEGL-devel
165
[8912]166* Wed Aug 20 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18.4-1
167- new upstream release
168
[8369]169* Sat Apr 19 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18.2-1
170- new upstream release
171
[8353]172* Sat Mar 29 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18.0-1
173- new upstream release
174
[8219]175* Sat Jan 25 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.4-1
176- new upstream release
177
[8011]178* Sun Nov 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.2-1
179- new upstream release
180
[7938]181* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.0-1
182- new upstream release
183
[7681]184* Sat May 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.4-1
185- new upstream release
186
[7633]187* Thu Apr 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.2-1
188- new upstream release
189
[6951]190* Wed Oct 17 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.2-1
191- new upstream release
192
[6890]193* Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.0-1
194- new upstream release
195
[6401]196* Fri Jun 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.8-1
197- new upstream release
198
[6256]199* Wed May 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.6-1
200- new upstream release
201
[6123]202* Wed May 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.4-1
203- new upstream release
204
[6078]205* Sun Apr 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.2-1
[6011]206- new upstream release
207
[5651]208* Wed Feb 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8.4-1
209- new upstream release
210
[5038]211* Fri Oct 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8.2-1
212- new upstream release
213
[4812]214* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8.0-1
215- new upstream release
216- add Requires: libXcomposite-devel, libXi-devel (-devel package)
217
[4732]218* Tue Sep 06 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.14-1
219- new upstream release
220
[4704]221* Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.12-1
222- new upstream release
223
[4650]224* Sun Aug 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.10-1
225- new upstream release
226
[4616]227* Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.6-1
228- new upstream release
229- add BuildRequires: cogl-devel
230- add "BuildArch: noarch" to doc sub package
231- add Patch0 (clutter-fixdso.patch)
232
[3735]233* Fri Apr 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.14-1
234- new upstream release
235
[3079]236* Wed Mar 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.10-1
237- new upstream release
238
[3003]239* Sun Mar 13 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.8-1
240- new upstream release
241
[2739]242* Tue Feb 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.6-1
243- new upstream release
244
[2721]245* Fri Feb 18 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.4-1
246- new upstream release
247- change BuildRequires: gdk-pixbuf2-devel instead of gtk2-devel
248- add BuildRequires: atk-devel, libXcomposite-devel, libXi-devel
249- drop Patch0
250
[2415]251* Thu Dec 30 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.2-1
252- new upstream release
253- drop Patch1
254
[2041]255* Thu Oct 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.0-1
256- new upstream release
257- add BuildRequires: json-glib-devel
258- delete Requires: gir-repository
259- delete BuildRequires: gir-repository-devel
260- add Requires: json-glib-devel (devel package)
261- add Patch0, Patch1
262- fix %build
263
[1883]264* Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.12-2
265- rebuild with rpm-4.8.1 for pkg-config file
266
[1401]267* Mon Jul 19 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.12-1
268- new upstream release
269
[1270]270* Sat Jul 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.10-1
271- new upstream release
272
[1044]273* Thu May 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.8-1
274- new upstream release
275- add configure option (--enable-xinput)
276
[914]277* Thu Apr 29 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.6-1
278- new upstream release
279
[805]280* Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.4-1
[521]281- new upstream release
282
[805]283* Sun Mar 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.0-1
[521]284- new upstream release
285
[805]286* Sat Jan 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.10-1
[521]287- new upstream release
[805]288
289* Tue Dec  1 2009 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.8-1
290- new upstream release
[521]291- build for Vine Linux
292- add Summary(ja)
293- fix BuildRoot
294- remove Obsolete and Provides
295
296* Tue Sep 22 2009 Bastien Nocera <bnocera@redhat.com> 1.0.6-1
297- Update to 1.0.6
298
299* Sun Aug 30 2009 Owen Taylor <otaylor@redhat.com> - 1.0.4-1
300- Update to 1.0.4, update gobject-introspection requirement
301
302* Fri Aug 14 2009 Bastien Nocera <bnocera@redhat.com> 1.0.2-1
303- Update to 1.0.2
304
[7633]305* Sat Aug  1 2009 Matthias Clasen <mclasen@redhat.com> 1.0.0-4
[521]306- Move ChangeLog to -devel to save some space
307
308* Fri Jul 31 2009 Matthias Clasen <mclasen@redhat.com> 1.0.0-3
309- Drop the gir-repository-devel dep, which pulls a bunch of -devel
310  onto the live cd
311
312* Wed Jul 29 2009 Bastien Nocera <bnocera@redhat.com> 1.0.0-1
313- Update to 1.0.0
314
315* Tue Jul 28 2009 Itamar Reis Peixoto <itamar@ispbrasil.com.br> - 0.9.8-3
316- fix bz #507389
317
318* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-2
319- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
320
321* Fri Jul 17 2009 Bastien Nocera <bnocera@redhat.com> 0.9.8-1
322- Update to 0.9.8
323
324* Fri Jul 17 2009 Bastien Nocera <bnocera@redhat.com> 0.9.6-2
325- Patch from Owen Taylor <otaylor@redhat.com> to add gobject-
326  introspection support to clutter (#512260)
327
328* Fri Jul 10 2009 Bastien Nocera <bnocera@redhat.com> 0.9.6-1
329- Update to 0.9.6
330
331* Sat Jun 20 2009 Bastien Nocera <bnocera@redhat.com> 0.9.4-1
332- Update to 0.9.4
333
334* Mon May 18 2009 Bastien Nocera <bnocera@redhat.com> 0.9.2-1
335- Update to 0.9.2
336
337* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.6-4
338- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
339
340
341* Wed Jan 21 2009 Allisson Azevedo <allisson@gmail.com> 0.8.6-3
342- Remove noarch from doc subpackage
343
344* Wed Jan 21 2009 Allisson Azevedo <allisson@gmail.com> 0.8.6-2
345- Added gtk-doc for cogl
346- Created doc subpackage
347
348* Wed Jan 21 2009 Allisson Azevedo <allisson@gmail.com> 0.8.6-1
349- Update to 0.8.6
350
351* Mon Oct  6 2008 Allisson Azevedo <allisson@gmail.com> 0.8.2-1
352- Update to 0.8.2
353- Removed clutter-0.8.0-clutter-fixed.patch
354
355* Sat Sep  6 2008 Allisson Azevedo <allisson@gmail.com> 0.8.0-1
356- Update to 0.8.0
357- Added clutter-0.8.0-clutter-fixed.patch
358
359* Sat Jun 14 2008 Allisson Azevedo <allisson@gmail.com> 0.6.4-1
360- Update to 0.6.4
361
362* Sat May 17 2008 Allisson Azevedo <allisson@gmail.com> 0.6.2-1
363- Update to 0.6.2
364
365* Tue Feb 19 2008 Allisson Azevedo <allisson@gmail.com> 0.6.0-1
366- Update to 0.6.0
367
368* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.4.2-2
369- Autorebuild for GCC 4.3
370
371* Wed Oct  3 2007 Allisson Azevedo <allisson@gmail.com> 0.4.2-1
372- Update to 0.4.2
373
374* Mon Sep  3 2007 Allisson Azevedo <allisson@gmail.com> 0.4.1-1
375- Update to 0.4.1
376
377* Sat Jul 21 2007 Allisson Azevedo <allisson@gmail.com> 0.3.1-1
378- Update to 0.3.1
379
380* Thu Apr 12 2007 Allisson Azevedo <allisson@gmail.com> 0.2.3-1
381- Update to 0.2.3
382
[7633]383* Wed Mar 28 2007 Allisson Azevedo <allisson@gmail.com> 0.2.2-4
[521]384- Changed buildrequires and requires
385
[7633]386* Tue Mar 27 2007 Allisson Azevedo <allisson@gmail.com> 0.2.2-3
[521]387- Fix .spec
388
[7633]389* Sat Mar 24 2007 Allisson Azevedo <allisson@gmail.com> 0.2.2-2
[521]390- Fix .spec
391
[7633]392* Fri Mar 23 2007 Allisson Azevedo <allisson@gmail.com> 0.2.2-1
[521]393- Initial RPM release
Note: See TracBrowser for help on using the repository browser.