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

Revision 6951, 15.4 KB checked in by Takemikaduchi, 12 years ago (diff)

GNOME-3.6.1

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