source: projects/specs/trunk/n/nautilus-actions/nautilus-actions-vl.spec @ 2050

Revision 2050, 8.2 KB checked in by kudoh, 14 years ago (diff)
Line 
1Summary:        Nautilus extension for customizing the context menu
2Summary(ja): コンテキストメニューをカスタマイズするための Nautilus 拡張
3Name:           nautilus-actions
4Version:        3.0
5Release:        1%{?_dist_release}
6Group:          User Interface/Desktops
7License:        GPLv2+
8URL:            http://www.nautilus-actions.org/
9Source0:        http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.0/%{name}-%{version}.tar.bz2
10
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12
13BuildRequires: desktop-file-utils
14BuildRequires: e2fsprogs-devel
15BuildRequires: gettext
16BuildRequires: glib2-devel >= 2.16.0
17BuildRequires: gtk2-devel >= 2.12.0
18BuildRequires: dbus-glib-devel
19BuildRequires: intltool >= 0.35.5
20BuildRequires: libgnomeui-devel
21BuildRequires: libglade2-devel
22BuildRequires: libgtop2-devel >= 2.23.1
23BuildRequires: libSM-devel
24BuildRequires: libxml2-devel
25BuildRequires: nautilus-devel
26BuildRequires: perl-XML-Parser
27BuildRequires: pkgconfig
28BuildRequires: unique-devel
29
30%if %{?_dist_release} == "vl6"
31BuildRequires:  libuuid-devel
32%endif
33
34Requires(pre):  GConf2
35Requires(preun):GConf2
36
37%description
38Nautilus actions is an extension for Nautilus, the GNOME file manager.
39It provides an easy way to configure programs to be launch on files
40selected in Nautilus interface.
41
42%description -l ja
43Nautilus actions は、GNOME のファイルマネージャである Nautilus の機能拡張です。
44Nautilus のインターフェイスにて選択されたファイル上でプログラムを起動するための
45簡単な設定方法を提供します。
46
47%package devel
48Summary: Development tools for the %{name}
49Summary(ja): %{name} の開発ツール
50Release: 1%{?_dist_release}
51Group: Development/Libraries
52Requires: %{name} = %{version}-%{release}
53
54%description devel
55This package contains headers and shared libraries needed for development
56with %{name}.
57
58%description -l ja devel
59このパッケージは %{name} の開発に必要なヘッダと共有ライブラリを含みます。
60
61%prep
62%setup -q
63
64%build
65%configure --enable-commandline-tool --disable-schemas-install
66make %{?_smp_mflags}
67
68%install
69rm -rf %{buildroot}
70make DESTDIR=%{buildroot} install
71
72rm -rf %{buildroot}/%{_libdir}/nautilus-actions/*.la
73rm -rf %{buildroot}/%{_libdir}/nautilus/extensions-2.0/libnautilus-actions-menu.la
74rm -rf %{buildroot}/%{_libdir}/nautilus/extensions-2.0/libnautilus-actions-tracker.la
75rm -rf %{buildroot}%{_datadir}/applications/fedora-nact.desktop
76
77desktop-file-install --delete-original                  \
78        --vendor vine                           \
79        --dir %{buildroot}%{_datadir}/applications      \
80        --mode 0644                                     \
81        --remove-category Application                   \
82        --remove-category AdvancedSettings              \
83        --remove-category FileManager                   \
84        --add-category GTK                              \
85        --add-category Settings                         \
86        %{buildroot}%{_datadir}/applications/nact.desktop
87
88%find_lang %{name}
89
90%clean
91rm -rf %{buildroot}
92
93%post
94touch --no-create %{_datadir}/icons/hicolor || :
95
96%postun
97if [ $1 -eq 0 ] ; then
98    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
99    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
100fi
101
102%posttrans
103gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
104
105%files -f %{name}.lang
106%defattr(-,root,root,-)
107%doc AUTHORS COPYING ChangeLog README TODO
108%{_bindir}/nautilus-actions-*
109%{_libdir}/nautilus-actions/libna*.so
110%{_libdir}/nautilus/extensions-2.0/libnautilus-actions-menu.so
111%{_libdir}/nautilus/extensions-2.0/libnautilus-actions-tracker.so
112%{_datadir}/%{name}/
113%{_datadir}/icons/hicolor/*/apps/nautilus-actions.*
114%{_datadir}/applications/vine-nact.desktop
115%{_datadir}/gnome/help/%{name}*
116%{_datadir}/gtk-doc/*
117%{_datadir}/omf/*
118
119%files devel
120%defattr(-,root,root,-)
121%{_includedir}/%{name}/
122
123%changelog
124* Wed Oct 13 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 3.0-1
125- new upstream release
126- cleaned up spec
127- changed URL
128- changed source0 URL
129- added and arranged BuildRequires
130  - BuildRequires: desktop-file-utils
131  - BuildRequires: e2fsprogs-devel
132  - BuildRequires: gettext
133  - BuildRequires: glib2-devel >= 2.16.0
134  - BuildRequires: gtk2-devel >= 2.12.0
135  - BuildRequires: dbus-glib-devel
136  - BuildRequires: intltool >= 0.35.5
137  - BuildRequires: libgnomeui-devel
138  - BuildRequires: libglade2-devel
139  - BuildRequires: libgtop2-devel >= 2.23.1
140  - BuildRequires: libSM-devel
141  - BuildRequires: libxml2-devel
142  - BuildRequires: nautilus-devel
143  - BuildRequires: perl-XML-Parser
144  - BuildRequires: pkgconfig
145  - BuildRequires: unique-devel
146- splitted -devel package
147- changed desktop-file-install action
148  - added --remove-category FileManager
149  - changed --add-category GNOME to GTK
150- run gtk-update-icon-cache on %%posttrans
151
152* Tue Jun 15 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 2.30.3-1
153- new upstream release
154
155* Sat May 01 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.30.2-1
156- new upstream release
157
158* Sun Apr 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.30.0-1
159- new upstream release
160- add BuildRequires: libSM-devel
161
162* Tue Feb 2 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.12.3-1
163- new upstream release
164
165* Sun Jan 24 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.12.0-3
166- BuildRequires: libuuid-devel enabled VineSeed, disabled Stable
167  (Because VineSeed provide libuuid-* packages, but Stable don't provide now)
168
169* Thu Jan 21 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.12.0-2
170- added BuildRequires: libuuid-devel, unique-devel (see [BTS:VineLinux:0893])
171
172* Wed Aug 19 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.12.0-1vl5
173- new upstream release
174- added  --disable-schemas-install in cofigure option
175
176* Sun Aug 2 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.11.2-1vl5
177- new upstream release
178
179* Sun Jun 14 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.10.1-1vl5
180- new upstream release
181- changed Source0 URL
182- dropt Patch0
183
184* Sat May 23 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.9-0.20090508-1vl5
185- updated Source0
186- imported Patch0 from fedora
187- added Description -l ja
188- spec in UTF-8
189
190* Mon Apr 20 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.9-0.20081020-1vl5
191- initial build for VineSeed
192
193* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9-0.4.svn20081020
194- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
195
196* Thu Oct 23 2008 Deji Akingunola <dakingun@gmail.com> - 1.9-0.3.svn20081020
197- Update to a svn snapshot to fix bug #450988
198
199* Sat May 17 2008 Deji Akingunola <dakingun@gmail.com> - 1.4.1-4
200- Fix the nautilus-extension directory
201
202* Sun Feb 10 2008 Deji Akingunola <dakingun@gmail.com> - 1.4.1-3
203- Rebuild for gcc43
204
205* Wed Aug 22 2007 Deji Akingunola <dakingun@gmail.com> - 1.4.1-2
206- Update the Source url
207- Rebuild
208
209* Fri Aug 03 2007 Deji Akingunola <dakingun@gmail.com> - 1.4.1-2
210- License tag update
211
212* Thu May 03 2007 Deji Akingunola <dakingun@gmail.com> - 1.4.1-1
213- New (bug-fix) release
214
215* Wed Sep 13 2006 Deji Akingunola <dakingun@gmail.com> - 1.4-4
216- Fix issue with nautilus-action-config, bug #205967
217
218* Mon Aug 28 2006 Deji Akingunola <dakingun@gmail.com> - 1.4-3
219- Rebuild for FC6
220
221* Tue Aug 22 2006 Deji Akingunola <dakingun@gmail.com> - 1.4-2
222- Requires nautilus-devel instead of just nautilus to build
223
224* Tue Aug 22 2006 Deji Akingunola <dakingun@gmail.com> - 1.4-1
225- Update to version 1.4
226
227* Tue May 30 2006 Deji Akingunola <dakingun@gmail.com> - 1.2-2
228- Add gettext and perl(XML::Parser) to BRs
229
230* Mon May 01 2006 Deji Akingunola <dakingun@gmail.com> - 1.2-1
231- Update to version 1.2
232- Make sure fix for upgrade from ver. < 1.0 doesn't throw up errors
233
234* Mon Feb 13 2006 Deji Akingunola <dakingun@gmail.com> - 1.0-2
235- Rebuild for Fedora Extras 5
236
237* Wed Feb 8 2006 Deji Akingunola <dakingun@gmail.com> - 1.0-1
238- New upstream version
239- Do away with gconf schemas installation
240
241* Mon Jan 2 2006 Deji Akingunola <dakingun@gmail.com> - 0.99-6
242- Add nautilus extensions dir to configure arguments
243
244* Sun Jan 1 2006 Deji Akingunola <dakingun@gmail.com> - 0.99-5
245- Remove libXdmcp-devel as BR, nautilus now takkes care of it
246
247* Sun Dec 18 2005 Deji Akingunola <dakingun@gmail.com> - 0.99-4
248- Remove libSM-devel from build require as libgnomeui now build-requires
249- Add libXdmcp-devel to the build requires
250
251* Tue Nov 29 2005 Deji Akingunola <dakingun@gmail.com> - 0.99-2
252- Remove unnecesary configure options
253- Clean-up the desktop file installation
254- Add e2fsprogs-devel buildrequire and remove explicit require on nautilus
255
256* Fri Nov 25 2005 Deji Akingunola <dakingun@gmail.com> - 0.99-1
257- initial Extras release
Note: See TracBrowser for help on using the repository browser.