source: projects/specs/trunk/m/metacity/metacity-vl.spec @ 907

Revision 907, 12.7 KB checked in by owa, 14 years ago (diff)

updated to 2.30.1

Line 
1%define gettext_package metacity
2
3Summary: Metacity window manager
4Summary(ja): Metacity ウインドウマネージャ
5Name: metacity
6Version: 2.30.1
7Release: 1%{?_dist_release}
8URL: http://ftp.gnome.org/pub/gnome/sources/metacity/
9License: GPL
10Group: User Interface/Desktops
11
12Source0: %{name}-%{version}.tar.bz2
13Source10: metacity-theme-oldvine-2.0.tar.bz2
14Source20: metacity-theme-vine-5.0.tar.bz2
15
16# change default theme to Vine
17Patch0: metacity-2.26.0-default-theme.patch
18# ctrl-alt-del call logout session
19Patch1: metacity-2.26.0-ctrlaltdel.patch
20# change default number of workspace
21Patch2: metacity-2.26.0-num_workspace.patch
22# http://bugzilla.gnome.org/show_bug.cgi?id=558723
23Patch4: stop-spamming-xsession-errors.patch
24
25BuildRoot: %{_tmppath}/%{name}-%{version}-root
26BuildRequires: gtk2-devel >= 2.20
27BuildRequires: pango-devel >= 1.28.0
28BuildRequires: GConf2-devel >= 2.28.0
29BuildRequires: desktop-file-utils >= 0.3
30BuildRequires: intltool >= 0.22
31BuildRequires: startup-notification-devel >= 0.7
32BuildRequires: libtool, automake, autoconf
33BuildRequires: xorg-x11-proto-devel
34BuildRequires: libSM-devel, libICE-devel, libX11-devel
35BuildRequires: libXext-devel, libXinerama-devel, libXrandr-devel
36BuildRequires: libXcursor-devel, libXrender-devel
37BuildRequires: libXcomposite-devel, libXdamage-devel
38BuildRequires: zenity
39BuildRequires: libcanberra-devel
40BuildRequires: libgtop2-devel
41Requires(post): GConf2
42
43%description
44Metacity is a simple window manager that integrates nicely with
45the GNOME desktop.
46
47%package devel
48Summary: Development files for metacity
49Group: Development/Libraries
50Requires: gtk2-devel, libX11-devel
51Requires: pkgconfig
52Requires: %{name} = %{version}-%{release}
53
54%description devel
55This package contains the files needed for compiling programs using
56the metacity-private library. Note that you are not supposed to write
57programs using the metacity-private library, since it is a private
58API. This package exists purely for technical reasons.
59
60%prep
61%setup -q
62
63%patch0 -p1 -b .default-theme
64%patch1 -p1 -b .ctrlaltdel
65%patch2 -p1 -b .num_workspace
66%patch4 -p1 -b .stop-spamming-xsession-errors
67
68%build
69intltoolize --copy --force
70libtoolize --copy --force
71autoreconf
72%configure
73%__make %{?_smp_mflags} INTLTOOL_MERGE=/usr/bin/intltool-merge
74
75%install
76rm -rf $RPM_BUILD_ROOT
77
78export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
79make install DESTDIR=$RPM_BUILD_ROOT
80unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
81
82/bin/rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
83/bin/rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
84
85# install Vine Theme (New default theme)
86tar xzvf %{SOURCE10} -C $RPM_BUILD_ROOT%{_datadir}/themes
87# install NeoVine Theme
88tar xzvf %{SOURCE20} -C $RPM_BUILD_ROOT%{_datadir}/themes
89
90%find_lang %{gettext_package}
91
92%clean
93rm -rf $RPM_BUILD_ROOT
94
95%post
96export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
97SCHEMAS="metacity.schemas"
98for S in $SCHEMAS; do
99  gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/$S > /dev/null
100done
101
102%files -f %{gettext_package}.lang
103%defattr(-,root,root)
104%doc README AUTHORS COPYING NEWS HACKING doc/theme-format.txt doc/metacity-theme.dtd
105%{_bindir}/metacity
106%{_bindir}/metacity-message
107#{_libexecdir}/*
108%{_sysconfdir}/gconf/schemas/*.schemas
109%{_datadir}/metacity
110%{_datadir}/themes
111%{_libdir}/lib*.so.*
112%{_mandir}/man1/metacity.1.gz
113%{_mandir}/man1/metacity-message.1.gz
114%{_datadir}/gnome-control-center/keybindings/*
115%{_datadir}/applications/metacity.desktop
116%{_datadir}/gnome/wm-properties/metacity-wm.desktop
117%{_datadir}/gnome/help/creating-metacity-themes
118
119%files devel
120%defattr(-,root,root)
121%{_bindir}/metacity-theme-viewer
122%{_bindir}/metacity-window-demo
123%{_includedir}/*
124%{_libdir}/lib*.so
125%{_libdir}/pkgconfig/*
126%{_mandir}/man1/metacity-theme-viewer.1.gz
127%{_mandir}/man1/metacity-window-demo.1.gz
128
129%changelog
130* Fri Apr 30 2010 Shu KONNO <owa@bg.wakwak.com> 2.30.1-1
131- updated metacity to 2.30.1
132  - fixed crash when right-clicking on window frame
133
134* Sun Apr 04 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
135- new upstream release
136
137* Mon Nov 02 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.28.0-2
138- add BR: libgtop2-devel
139
140* Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.0-1
141- new upstream release
142- dropped Patch5, 6 and 7 (merged into upstream)
143- removed BR: libglade2-devel
144
145* Thu Apr 30 2009 NAKAMURA Kenta <kenta@vinelinux.org> 2.26.0-4
146- added BuildRequires: zenity, libcanberra-devel
147
148* Thu Apr 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-3
149- Patch4: don't spam .xsession-errors so hard
150- Patch5: use libcanberra to play the alert sound
151- Patch6: don't force bell
152- Patch7: fix interaction with autohide panels
153
154* Wed Mar 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-2
155- update Patch0,1,2
156  - apply patches to ".in.in" insread of ".in"
157
158* Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
159- new upstream release
160- split development file to -devel subpackage
161  - remove static libs
162
163* Tue Sep 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
164- new upstream release
165
166* Fri May 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.0-2
167- rebuild to fix strange color problem.
168
169* Tue Mar 25 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.0-1vl5
170- new upstream release
171
172* Wed Dec 12 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.20.1-0vl1
173- new upstream release
174- added Requires(post): GConf2
175
176* Thu Apr 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.2-0vl1
177- new upstream release
178
179* Thu Jul 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.15.13-0vl1
180- new upstream release
181
182* Mon Jun 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.5-0vl1
183- new upstream release
184
185* Sun Apr 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.3-0vl1
186- new upstream release
187- remove Patch20 which is merged in upstream
188- include ClearVine theme as default theme.
189
190* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.2-0vl1
191- new upstream release
192
193* Fri Apr 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-0vl2
194- add Patch20 to make configurable new window focus (bug 326159)
195
196* Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-0vl1
197- new upstream release
198
199* Tue Mar 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.144-0vl1
200- new upstream release
201
202* Wed Nov 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.2-0vl1
203- new upstream release
204
205* Wed Oct 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.1-0vl1
206- new upstream release
207
208* Mon Sep 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.0-0vl1
209- new upstream release
210
211* Sun Aug 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.2-0vl1
212- new upstream release
213
214* Fri Aug 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.1-0vl1
215- new upstream release
216
217* Sun Jul 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.3-0vl1
218- new upstream release
219
220* Sun Mar 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.0-0vl1
221- new upstream version
222- include Vine metacity theme as default theme.
223- update Patch0 to change deafult theme.
224
225* Wed Nov 10 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.9.0-0vl2
226- update NeoVine metacity theme.
227
228* Mon Nov 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.9.0-0vl1
229- new upstream release
230
231* Wed Nov 03 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.5-0vl1
232- new upstream release
233
234* Sun Jun 20 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl1
235- new upstream release
236- add BuildRequires: libtoo,automake14, autoconf
237
238* Wed Dec 24 2003 Tomoya TAKA <taka@vinelinux.org> 2.6.3-0vl1
239- new upstream release
240- build with new toolchain
241
242* Sat Oct 18 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.2-0vl1
243- new upstream release
244
245* Thu Sep 11 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.1-0vl1
246- new upstream release
247
248* Wed Sep 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.0-0vl2
249- fixed missing locale files
250
251* Wed Sep 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.0-0vl1
252- new upstream release
253
254* Mon Sep 08 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.5-0vl2
255- add patch10 to increase workspaces (4->6).
256
257* Fri Sep 05 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.5-0vl1
258- new upstream release
259
260* Wed Sep 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.3-0vl1
261- new upstream release
262
263* Mon Jun 09 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.2-0vl2
264- update ja.po
265- update NeoVine theme
266
267* Sat May 31 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.2-0vl1
268- new upstream release
269
270* Sat Feb 15 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.34-0vl1
271- fixed typo
272- NeoVine Metatheme moved to gnome-themes package.
273
274* Sat Feb 15 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.34-0vl1
275- new upstream release
276- add patch2 from rawhide.
277- drop patch1, merged in upstream.
278
279* Fri Jan 31 2003 Tomoya TAKA <taka@vinelinux.org> 2.4.21-0vl2
280- add Patch1 to fix hang on all 64-bit platforms
281
282* Fri Jan 24 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.21-0vl1
283- new upstream release
284
285* Wed Jan 22 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.13-0vl3
286- update NeoVine metatheme (use gnome default icons)
287
288* Sun Jan 12 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.13-0vl2
289- update neovine theme
290
291* Sat Jan 11 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.13-0vl1
292- new upstream release
293
294* Sat Dec 28 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.8-0vl6
295- drop patch0 to use system fonts.
296
297* Sat Dec 28 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.8-0vl6
298- update ja.po
299
300* Fri Dec 27 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.8-0vl5
301- fixed NeoVine theme
302
303* Wed Dec 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.8-0vl4
304- add NeoVine theme ported from sawfish.
305- use neoVine as default theme. (Patch0)
306
307* Mon Dec 16 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.8-0vl3
308- change URL
309- add BuildRequires
310
311* Sun Dec 15 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.8-0vl2
312- add include files
313
314* Sun Dec 15 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.8-0vl1
315- build for Vine Linux
316- new upstream release from gnome-2.1.4
317
318* Tue Oct 29 2002 Havoc Pennington <hp@redhat.com>
319- 2.4.3
320- remove patches that have gone upstream
321
322* Tue Aug 27 2002 Havoc Pennington <hp@redhat.com>
323- fix shaded window decorations in Bluecurve theme
324
325* Sat Aug 24 2002 Havoc Pennington <hp@redhat.com>
326- fix the mplayer-disappears-on-de-fullscreen bug
327
328* Sat Aug 24 2002 Havoc Pennington <hp@redhat.com>
329- add some fixes from CVS for #71163 #72379 #72478 #72513
330
331* Thu Aug 22 2002 Havoc Pennington <hp@redhat.com>
332- patch .schemas.in instead of .schemas so we get right default theme/fonts
333
334* Tue Aug 20 2002 Havoc Pennington <hp@redhat.com>
335- grow size of top resize, and display proper cursor on enter notify
336- require latest intltool to try and fix metacity.schemas by
337  regenerating it in non-UTF-8 locale
338
339* Thu Aug 15 2002 Havoc Pennington <hp@redhat.com>
340- default to Sans Bold font, fixes #70920 and matches graphic design spec
341
342* Thu Aug 15 2002 Havoc Pennington <hp@redhat.com>
343- 2.4.0.91 with raise/lower keybindings for msf, fixes to fullscreen
344- more apps that probably intend to be, fix for changing number of
345  workspaces, fix for moving windows in multihead
346
347* Tue Aug 13 2002 Havoc Pennington <hp@redhat.com>
348- update build requires
349
350* Mon Aug 12 2002 Havoc Pennington <hp@redhat.com>
351- upgrade to cvs snap 2.4.0.90 with pile of bugfixes from
352  this weekend
353- change default theme to bluecurve and require new redhat-artwork
354
355* Tue Aug  6 2002 Havoc Pennington <hp@redhat.com>
356- 2.4.0
357- themes are moved, require appropriate redhat-artwork
358
359* Thu Aug  1 2002 Havoc Pennington <hp@redhat.com>
360- munge the desktop file to be in toplevel menus and
361  not show in KDE
362
363* Tue Jul 23 2002 Havoc Pennington <hp@redhat.com>
364- don't use system font by default as metacity's
365  font is now in the system font dialog
366
367* Tue Jul 23 2002 Havoc Pennington <hp@redhat.com>
368- 2.3.987.92 cvs snap
369
370* Fri Jul 12 2002 Havoc Pennington <hp@redhat.com>
371- 2.3.987.91 cvs snap
372
373* Mon Jun 24 2002 Havoc Pennington <hp@redhat.com>
374- 2.3.987.90 cvs snap
375
376* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
377- automated rebuild
378
379* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
380- rebuild for new libraries
381
382* Mon Jun 10 2002 Havoc Pennington <hp@redhat.com>
383- rebuild in different environment
384
385* Mon Jun 10 2002 Havoc Pennington <hp@redhat.com>
386- 2.3.987
387- default to redhat theme
388
389* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
390- rebuild in different environment
391
392* Tue Jun  4 2002 Havoc Pennington <hp@redhat.com>
393- 2.3.610.90 cvs snap
394
395* Sun May 26 2002 Tim Powers <timp@redhat.com>
396- automated rebuild
397
398* Mon May 20 2002 Havoc Pennington <hp@redhat.com>
399- rebuild in different environment
400
401* Fri May 17 2002 Havoc Pennington <hp@redhat.com>
402- 2.3.377
403
404* Thu May  2 2002 Havoc Pennington <hp@redhat.com>
405- 2.3.233
406
407* Thu Apr 25 2002 Havoc Pennington <hp@redhat.com>
408- rebuild in different environment
409- add gconf schemas boilerplate
410
411* Mon Apr 15 2002 Havoc Pennington <hp@pobox.com>
412- 2.3.89
413
414* Tue Oct 30 2001 Havoc Pennington <hp@redhat.com>
415- 2.3.34
416
417* Fri Oct 13 2001 Havoc Pennington <hp@redhat.com>
418- 2.3.21
419
420* Mon Sep 17 2001 Havoc Pennington <hp@redhat.com>
421- 2.3.8
422- 2.3.13
423
424* Wed Sep  5 2001 Havoc Pennington <hp@redhat.com>
425- Initial build.
426
427
Note: See TracBrowser for help on using the repository browser.