source: projects/specs/trunk/s/shotwell/shotwell-vl.spec @ 9345

Revision 9345, 9.7 KB checked in by Takemikaduchi, 9 years ago (diff)

rebuild with ligphoto2-2.5.7

Line 
1Name:           shotwell
2Version:        0.20.2
3Release:        2%{?_dist_release}
4Summary:        A photo manager for the GNOME desktop
5Summary(ja):    GNOME デスクトップ向けの写真管理ツール
6
7Group:          Applications/Graphics
8# LGPLv2+ for the code
9# CC-BY-SA for some of the icons
10License:        LGPLv2+ and CC-BY-SA
11URL:            http://www.yorba.org/shotwell/
12
13Source0:        http://www.yorba.org/download/shotwell/stable/shotwell-%{version}.tar.xz
14# http://trac.yorba.org/ticket/3379
15Source1:        shotwell-icons.tar.bz2
16
17# http://redmine.yorba.org/issues/5181
18Patch0:         shotwell-usrmove.patch
19
20BuildRoot:      %{_tmppath}/%{name}-%{version}-root
21
22BuildRequires:  GConf2-devel
23BuildRequires:  LibRaw-devel
24BuildRequires:  LibRaw-static
25BuildRequires:  WebKit3-gtk-devel
26BuildRequires:  dbus-glib-devel
27BuildRequires:  desktop-file-utils
28BuildRequires:  gettext
29BuildRequires:  gtk3-devel
30#BuildRequires:  gstreamer-devel
31#BuildRequires:  gstreamer-plugins-base-devel
32BuildRequires:  gstreamer1-devel
33BuildRequires:  gstreamer1-plugins-base-devel
34BuildRequires:  json-glib-devel
35BuildRequires:  libexif-devel
36BuildRequires:  libgee-devel
37BuildRequires:  libgee-vala
38BuildRequires:  libgphoto2-devel
39BuildRequires:  eudev-libgudev1-devel
40BuildRequires:  libgexiv2-devel >= 0.2.0
41BuildRequires:  libsoup-devel
42BuildRequires:  libxml2-devel
43BuildRequires:  lcms2-devel
44BuildRequires:  sqlite3-devel
45BuildRequires:  unique3-devel
46BuildRequires:  vala-devel >= 0.9.5
47BuildRequires:  rest-devel
48BuildRequires:  gnome-doc-utils
49
50# used by shotwell-settings-migrator
51Requires: dconf
52
53Vendor: Project Vine
54Distribution: Vine Linux
55Packager: kudoh
56
57%description
58Shotwell is a new open source photo manager designed for the GNOME desktop
59environment. It allows you to import photos from your camera, view and edit
60them, and share them with others.
61
62%description -l ja
63Shotwell は GNOME デスクトップ環境用に設計された新しいオープンソースの
64画像管理ツールです。
65あなたのカメラから写真を取り込んだり、それらを表示・編集したり、
66他の人々と共有するなどができます。
67
68%prep
69%setup -q -n %{name}-%{version}
70%patch0 -p1 -b .usrmove
71
72%build
73# We can't use the configure macro: it's not a standard autotools configure script
74export CFLAGS="%{optflags}"
75export LIB=%{_lib}
76
77# HACK: Remove fatal-warnings to succeed build with vala 0.13.
78#sed -i "s:--fatal-warnings ::g" Makefile plugins/Makefile.plugin.mk
79./configure --prefix=%{_prefix} --lib=%{_lib} --disable-schemas-install
80#sed -i -e 's/\\n/\n/g' configure.mk
81make %{?_smp_mflags}
82
83
84%install
85rm -rf $RPM_BUILD_ROOT
86export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
87export XDG_DISABLE_MAKEFILE_UPDATES=1
88# otherwise gettext always returns English text regardless of LANGUAGE asked
89export LANG=en_US.utf8
90make install DESTDIR=$RPM_BUILD_ROOT
91
92desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/shotwell.desktop
93desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/shotwell-viewer.desktop
94
95# put hi-res icons in place
96(
97  cd $RPM_BUILD_ROOT%{_datadir}/icons/hicolor
98  rm -rf 16x16 24x24 scalable
99  tar xf %{SOURCE1}
100)
101
102%find_lang %{name} --all-name
103
104%clean
105rm -rf $RPM_BUILD_ROOT
106
107%post
108touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
109update-desktop-database &> /dev/null || :
110
111%postun
112if [ $1 -eq 0 ] ; then
113  touch --no-create %{_datadir}/icons/hicolor &>/dev/null
114  gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor &>/dev/null || :
115  glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
116fi
117update-desktop-database &> /dev/null || :
118
119%posttrans
120gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor &>/dev/null || :
121glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
122
123%files -f %{name}.lang
124%defattr(-,root,root,-)
125%doc README COPYING MAINTAINERS NEWS THANKS AUTHORS
126%{_bindir}/shotwell
127%{_libexecdir}/shotwell/shotwell-settings-migrator
128%{_libexecdir}/shotwell/shotwell-video-thumbnailer
129%{_libdir}/shotwell/plugins/builtin
130%{_datadir}/GConf/gsettings/shotwell.convert
131%{_datadir}/glib-2.0/schemas/org.yorba.shotwell-extras.gschema.xml
132%{_datadir}/glib-2.0/schemas/org.yorba.shotwell.gschema.xml
133%{_datadir}/gnome/help/
134%{_datadir}/shotwell
135%{_datadir}/appdata/shotwell.appdata.xml
136%{_datadir}/applications/shotwell.desktop
137%{_datadir}/applications/shotwell-viewer.desktop
138%{_datadir}/icons/hicolor/*
139%exclude %{_datadir}/icons/hicolor/icon-theme.cache
140%exclude %{_datadir}/glib-2.0/schemas/gschemas.compiled
141
142
143%changelog
144* Mon Feb 09 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.20.2-2
145- rebuild with libgphoto2-2.5.7
146
147* Mon Nov 03 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.20.2-1
148- new upstream release
149
150* Thu Jul 03 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.18.1-1
151- new upstream release
152- change BuildRequires: eudev-libgudev1-devel instead of libgudev1-devel
153
154* Sun Mar 30 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.18.0-1
155- new upstream release
156- add BuildRequires: gnome-doc-utils
157
158* Sun Feb 09 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.15.1-4
159- rebuild with LibRaw-0.16.0
160
161* Sun Jan 19 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.15.1-3
162- rebuilt with LibRaw-0.15.4
163
164* Wed Dec 11 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.15.1-2
165- rebuild with exiv2-0.24
166
167* Sat Nov 30 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.15.1-1
168- new upstream release
169- remove Patch1 (0001-Port-to-GStreamer-1.0.patch)
170- change BuildRequires: libgee-devel instead of libgee06-devel
171- add BuildRequires: libgee-vala
172
173* Fri Jan 11 2013 IWAI, Masaharu <iwai@alib.jp> - 0.13.1-2
174- build with libgphoto2 2.5.0-1
175
176* Sat Oct 20 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.13.1-1
177- new upstream release
178- changed archive typr to xz
179- changed BuildRequires: libgee-devel to libgee06-devel
180- changed BuildRequires: gstreamer-devel and gstreamer-plugins-base-devel to
181  gstreamer1-devel and gstreamer1-plugins-base-devel
182- added Requires: dconf
183- added Patch0,1 from Fedora
184
185* Sun Jul 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.12.3-2
186- rebuild with exiv2-0.23
187
188* Thu May 10 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.12.3-1
189- new upstream release
190- dropt Source2
191
192* Sun Apr 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.12.2-1
193- new upstream release
194- remove Patch0
195- change BuildRequires: gtk3-devel instead of gtk2-devel
196- change BuildRequires: WebKit3-gtk-devel instead of WebKit-gtk-devel
197- change BuildRequires: unique3-devel instead of unique-devel
198- remove BuildRequires: hal-devel
199- add BuildRequires: rest-devel, lcms2-devel
200
201* Sun Nov 13 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.11.6-1
202- new upstream release
203
204* Thu Oct 20 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.11.5-1
205- new upstream release
206
207* Fri Oct 14 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.11.4-1
208- new upstream release
209
210* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.11.2-1
211- new upstream release
212- add Patch0 (shotwell-0.11.1-vala-0.14.patch)
213- add BuildRequires: gstreamer-plugins-base-devel
214
215* Sat Aug 27 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.1-2
216- rebuilt with libgexiv2-0.2.2-2
217
218* Wed Aug 17 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.1-1
219- new upstream release
220
221* Sat Jun 18 2011 IWAI, Masaharu <iwai@alib.jp> 0.8.1-5
222- add ja.po (Source2): fix <BTS:VineLinux:1142>
223- update Summary and description
224
225* Fri Jun 10 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.1-4
226- add hi-res icons (SOURCE1)
227- add LANG=en_US.utf8 to get gettext to actually generate translated strings
228
229* Sat Jun 04 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.8.1-3
230- dropt Patch0
231- added BuildRequires: LibRaw-static
232
233* Sun Apr 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.8.1-2
234- add Patch1 (shotwell-0.8.1-vala.patch)
235
236* Wed Jan 12 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.8.1-1
237- new upstream release
238- added BuildRequires: gstreamer-devel, json-glib-devel, libsoup-devel, libxml2-devel
239
240* Tue Sep 28 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.7.2-2
241- rebuilt with rpm-4.8.1 for pkg-config
242- fixed %%changelog in Tue Sep 14 2010
243
244* Tue Sep 14 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.7.2-1
245- new upstream release
246- changed source URL
247- added Patch0 to work around desktop file incorrect comment
248- changed BuildRequires: vala-devel >= 0.9.5
249
250* Fri Aug 27 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.7.1-1
251- new upstream release
252
253* Sat Aug 21 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.7.0-1
254- new upstream release
255- changed BuildRequires: libgexiv2-devel >= 0.2.0
256
257* Thu Jul 22 2010 Shu KONNO <owa@bg.wakwak.com> - 0.6.1-2
258- fixed LIB_DIRS in libraw-config (for lib64)
259
260* Wed Jul 14 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.1-1
261- new upstream release
262- added BuildRequires: LibRaw-devel, libgexiv2-devel
263
264* Wed May 12 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.2-1
265- new upstream release
266
267* Sat Mar 13 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.0-1
268- new upstream release
269- added BuildRequires:  libgudev1-devel
270- applied new naming policy to spec
271
272* Wed Jan 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.4.3-1
273- new upstream release
274- proved Japanese description
275
276* Thu Jan 7 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.4.2-1
277- new upstrema release
278
279* Wed Dec 30 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.4.1-1
280- intial build for VineSeed
281
282* Fri Dec 18 2009 Matthias Clasen <mclasen@redhat.com> - 0.4.0-0.1.20091218svn
283* Thu Nov 12 2009 Matthias Clasen <mclasen@redhat.com> - 0.3.2-1
284- Update to 0.3.2
285
286* Tue Nov  3 2009 Matthias Clasen <mclasen@redhat.com> - 0.3.0-1
287- Version 0.3.0
288
289* Thu Aug 20 2009 Michel Salim <salimma@fedoraproject.org> - 0.2.0-3
290- Rebuild against new libgee
291
292* Wed Aug 12 2009  Matthias Clasen <mclasen@redhat.com> - 0.2.0-2.fc12
293- Bring icon cache handling in sync with current guidelines
294
295* Sun Aug  9 2009  Matthias Clasen <mclasen@redhat.com> - 0.2.0-1.fc12
296- Initial packaging
Note: See TracBrowser for help on using the repository browser.