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

Revision 8011, 10.8 KB checked in by Takemikaduchi, 11 years ago (diff)

new upstream release

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