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

Revision 6739, 15.1 KB checked in by Takemikaduchi, 12 years ago (diff)

vpnc: rebuild
libgnomeprint: fix R:libxml2
others: new upstream release

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