source: projects/specs/trunk/x/xfce4-settings/xfce4-settings-vl.spec @ 9399

Revision 9399, 6.5 KB checked in by inagaki, 9 years ago (diff)

2015-03-01 Ryoichi INAGAKI <ryo1@…>

  • Xfce: updated to 4.12
  • libxfce4util410: new for compatibility


RevLine 
[9399]1%define xfceversion 4.12
[6284]2
[521]3Name:           xfce4-settings
4Summary:        Settings Manager for Xfce
5Summary(ja):    Xfce の設定マネージャー
[9399]6Version:        4.12.0
7Release:        1%{?_dist_release}
[521]8
9# xfce4-settings-helper is GPLv2 only.
10License:        GPLv2+ and GPLv2
[4634]11Group:          User Interface/Desktops
[521]12URL:            http://www.xfce.org/
[3253]13
[521]14Source0:        http://www.xfce.org/archive/src/xfce/%{name}/%{xfceversion}/%{name}-%{version}.tar.bz2
[813]15# Upstream bug: http://bugzilla.xfce.org/show_bug.cgi?id=6236
16Patch1:         xfce4-settings-4.6.4-dsofix.patch
[9331]17## Downstream patches
18Patch2:          xfce4-settings-4.8.3-monitor-position.patch
[521]19
20# use vendor's artwork
21#Patch10:        xfce4-settings-4.6.0-fedora.patch
22
[3253]23BuildRoot:     %{_tmppath}/%{name}-%{version}-root
[8932]24BuildRequires: dbus-glib-devel >= 0.84
[3253]25BuildRequires: desktop-file-utils
[9399]26BuildRequires: fontconfig-devel
[9331]27BuildRequires: garcon-devel >= 0.2.0
[521]28BuildRequires: gettext
[8932]29BuildRequires: glib2-devel >= 2.24.0
30BuildRequires: gtk2-devel >= 2.20.0
[521]31BuildRequires: intltool
[9331]32BuildRequires: libcanberra-devel
[6284]33BuildRequires: libexo-devel >= 0.8.0
[9399]34BuildRequires: libxfce4ui-devel >= 4.11.0
[6284]35BuildRequires: libxfce4util-devel >= 4.10.0
[3253]36BuildRequires: libnotify-devel >= 0.1.3
37BuildRequires: libX11-devel
38BuildRequires: libXcursor-devel >= 1.1.0
39BuildRequires: libXi-devel >= 1.2.0
40BuildRequires: libxklavier-devel
41BuildRequires: libXrandr-devel >= 1.2.0
42BuildRequires: pkgconfig
[9399]43BuildRequires: upower-devel
[6284]44BuildRequires: xfconf-devel >= 4.10.0
[3253]45BuildRequires: xorg-x11-proto-devel
[521]46Requires: xfconf
47
48Obsoletes: xfce-mcs-manager < 4.4.3-2
49Obsoletes: xfce-mcs-plugins < 4.4.3-2
50Obsoletes: xfce-mcs-plugin-gsynaptics < 2.0-5
51Obsoletes: xfce-mcs-plugins-extra < 2.0-3
52Obsoletes: xfce4-gsynaptics-mcs-plugin < 1.0.0-3
53
[9399]54Vendor:        Project Vine
55Distribution:  Vine Linux
[8068]56
[521]57%description
58This package includes the settings manager applications for the Xfce desktop.
59
60%prep
61%setup -q
[9399]62#patch1 -p1 -b .dsofix
63#patch2 -p1 -b .monitor
[521]64
65%build
[9331]66%configure --enable-sound-settings --enable-pluggable-dialogs
[521]67make %{?_smp_mflags}
68
69
70%install
71rm -rf $RPM_BUILD_ROOT
72make install DESTDIR=$RPM_BUILD_ROOT
73
[9399]74for file in $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop ; do
[6284]75    desktop-file-install \
76        --add-category="X-XFCE" \
77        --remove-category="XFCE" \
78        --delete-original \
[9399]79        --dir=$RPM_BUILD_ROOT%{_datadir}/applications \
[6284]80        $file
81done
[521]82
83%find_lang %{name}
84
85%clean
86rm -rf $RPM_BUILD_ROOT
87
[9399]88%post
89touch --no-create %{_datadir}/icons/hicolor
[521]90
[9399]91%postun
92if [ $1 -eq 0 ]; then
93    touch --no-create %{_datadir}/icons/hicolor
94    /usr/bin/gtk-update-icon-cache -qf %{_datadir}/icons/hicolor;
95fi
96
97%posttrans
98gtk-update-icon-cache %{_iconsdir}/icons/hicolor &> /dev/null || :
99
100
101
[521]102%files -f %{name}.lang
103%defattr(-,root,root,-)
104%doc AUTHORS ChangeLog NEWS TODO COPYING
105%dir %{_sysconfdir}/xdg/xfce4
106%dir %{_sysconfdir}/xdg/xfce4/xfconf/
107%dir %{_sysconfdir}/xdg/xfce4/xfconf/xfce-perchannel-xml
[6284]108%config(noreplace) %{_sysconfdir}/xdg/autostart/xfsettingsd.desktop
[521]109%config(noreplace) %{_sysconfdir}/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
[6284]110%{_sysconfdir}/xdg/menus/xfce-settings-manager.menu
[521]111%{_bindir}/xfce4-accessibility-settings
112%{_bindir}/xfce4-appearance-settings
113%{_bindir}/xfce4-display-settings
114%{_bindir}/xfce4-keyboard-settings
[6284]115%{_bindir}/xfce4-mime-settings
[521]116%{_bindir}/xfce4-mouse-settings
117%{_bindir}/xfce4-settings-editor
118%{_bindir}/xfce4-settings-manager
119%{_bindir}/xfsettingsd
[6284]120%{_libdir}/xfce4/settings/appearance-install-theme
[521]121%{_datadir}/applications/xfce*.desktop
[9399]122%{_datadir}/icons/hicolor/*/devices/*.png
[521]123
124%changelog
[9399]125* Sun Mar  1 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 4.12.0-1
126- new upstream release
127- dropt Patch1 and 2
128- built with libxfce4util 4.12.1
129
[9331]130* Thu Feb  5 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 4.10.1-2
131- added Patch2 from Fedora
132
[8932]133* Sun Aug 31 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 4.10.1-1
134- new upstream release
135
[8068]136* Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 4.10.0-2
137- rebuild with VineSeed environment
138
[6284]139* Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 4.10.0-1
140- new upstream release
141- add BuildRequires: garcon-devel
142
[4634]143* Sun Aug 21 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.8.2-1
144- new upstream release
145- built with libnotify-0.7.3 (VineSeed)
146
[3253]147* Mon Mar 28 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.8.0-1
148- new upstream release
149
[1068]150* Sun May 23 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.6.5-1
151- new upstream release
152- dropt Patch0
153
[813]154* Mon Apr 12 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.6.4-1
155- new upstream release
156- built with libxklavier-5.0
157- added Patch0 and 1 from Fedora
158  * Sun Feb 14 2010 Kevin Fenzi <kevin@tummy.com> - 4.6.4-3
159  - Add patch to fix DSO linking. Fixes bug #564803
160  * Sat Jan 23 2010 Christoph Wickert <cwickert@fedoraproject.org> - 4.6.4-2
161  - Add patch for libxklavier 5.0. Thanks to Caolan McNamara (#558081)
162
[521]163* Sun Nov  1 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.6.3-1
164- new upstream release
165- rebuilt with libxklavier-4.0
166- added Japanese summary
167
168* Fri May 22 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.6.1-2
169- initial build for Vine
170
171* Sun Apr 19 2009 Kevin Fenzi <kevin@tummy.com> - 4.6.1-1
172- Update to 4.6.1
173
174* Thu Apr 16 2009 Kevin Fenzi <kevin@tummy.com> - 4.6.0-6
175- Have to add Antialias type to really enable by default.
176
177* Wed Apr 15 2009 Kevin Fenzi <kevin@tummy.com> - 4.6.0-5
178- Bump to fix tagging mistake.
179
180* Wed Apr 15 2009 Kevin Fenzi <kevin@tummy.com> - 4.6.0-4
181- Make Antialias default (bug #495700)
182
183* Thu Mar 19 2009 Kevin Fenzi <kevin@tummy.com> - 4.6.0-3
184- display settings fixes from upstream svn.
185
186* Fri Feb 27 2009 Kevin Fenzi <kevin@tummy.com> - 4.6.0-2
187- Rebase patch for artwork
188
189* Thu Feb 26 2009 Kevin Fenzi <kevin@tummy.com> - 4.6.0-1
190- Update to 4.6.0
191
192* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.5.99.1-3
193- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
194
195* Fri Feb 20 2009 Kevin Fenzi <kevin@tummy.com> - 4.5.99.1-2
196- Add patch to fix imsettings (bug #478669)
197
198* Mon Jan 26 2009 Kevin Fenzi <kevin@tummy.com> - 4.5.99.1-1
199- Update to 4.5.99.1
200
201* Thu Jan 22 2009 Christoph Wickert <cwickert@fedoraproject.org> - 4.5.93-2
202- Add Obsoletes for mcs packages to make sure xfce4-settings gets installed
203- Don't package desktop files twice
204- Require xfconf
205- Use Nodoka theme and Fedora icons
206- Add docs
207
208* Tue Jan 13 2009 Kevin Fenzi <kevin@tummy.com> - 4.5.93-1
209- Update to 4.5.93
210
211* Sat Dec 27 2008 Kevin Fenzi <kevin@tummy.com> - 4.5.92-2
212- Cleaned up desktop-file-install
213- Added some BuildRequires.
214
215* Fri Dec 26 2008 Kevin Fenzi <kevin@tummy.com> - 4.5.92-1
216- Initial version for Fedora.
217
Note: See TracBrowser for help on using the repository browser.