source: projects/specs/trunk/lib/libc/libchamplain/libchamplain-vl.spec @ 1642

Revision 1642, 10.8 KB checked in by Takemikaduchi, 14 years ago (diff)

cmake: add BuildRequires?, others: new upstream release

Line 
1Summary:        Map view for Clutter
2Summary(ja):    Clutter用のマップビューア
3Name:           libchamplain
4Version:        0.4.7
5Release:        1%{?_dist_release}
6License:        LGPLv2+
7Group: System Environment/Libraries
8URL: http://projects.gnome.org/libchamplain/
9Source0: http://download.gnome.org/sources/libchamplain/0.4/%{name}-%{version}.tar.bz2
10
11Requires: gobject-introspection
12
13BuildRequires: clutter-devel
14BuildRequires: clutter-gtk-devel
15BuildRequires: gir-repository-devel
16BuildRequires: libsoup-devel
17BuildRequires: sqlite3-devel
18BuildRequires: gtk-doc >= 1.14
19BuildRequires: gobject-introspection-devel >= 0.6.8
20BuildRoot: %{_tmppath}/%{name}-%{version}-root
21
22%description
23Libchamplain is a C library aimed to provide a ClutterActor to display
24rasterized maps.
25
26%description -l ja
27Libchamplain はラスタライズされたマップを表示するために ClutterActor を提供することを目的とした C ライブラリです。
28
29%package devel
30Summary:        Development files for %{name}
31Group:          Development/Libraries
32
33Requires:       gobject-introspection-devel
34Requires:       gtk-doc
35Requires:       clutter-devel
36Requires:       %{name} = %{version}-%{release}
37
38%description devel
39This package contains development files for %{name}.
40
41%package gtk
42Summary:        Gtk+ widget wrapper for %{name}
43Group:          System Environment/Libraries
44
45Requires:       %{name} = %{version}-%{release}
46
47%description gtk
48Libchamplain-gtk is a library providing a GtkWidget to embed %{name}
49into Gtk+ applications.
50
51%package gtk-devel
52Summary:        Development files for %{name}-gtk
53Group:          Development/Libraries
54
55Requires:       gtk-doc
56Requires:       clutter-gtk-devel
57Requires:       %{name}-devel = %{version}-%{release}
58Requires:       %{name}-gtk = %{version}-%{release}
59
60%description gtk-devel
61This package contains development files for %{name}-gtk.
62
63%prep
64%setup -q
65
66%build
67%configure --disable-debug --disable-static --enable-gtk --enable-gtk-doc \
68  --enable-introspection=yes --enable-silent-rules
69
70# Omit unused direct shared library dependencies.
71sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool
72
73make %{?_smp_mflags}
74
75%install
76rm -rf $RPM_BUILD_ROOT
77
78make install INSTALL="%{__install} -p" DESTDIR=$RPM_BUILD_ROOT
79find $RPM_BUILD_ROOT -type f -name "*.la" -delete
80
81%clean
82rm -rf $RPM_BUILD_ROOT
83
84%post -p /sbin/ldconfig
85
86%postun -p /sbin/ldconfig
87
88%post gtk -p /sbin/ldconfig
89
90%postun gtk -p /sbin/ldconfig
91
92%files
93%defattr(-,root,root,-)
94%doc AUTHORS
95%doc ChangeLog
96%doc COPYING
97%doc NEWS
98%{_libdir}/girepository-1.0/Champlain-0.4.typelib
99%{_libdir}/%{name}-0.4.so.*
100
101%files devel
102%defattr(-,root,root,-)
103%doc demos/animated-marker.c
104%doc demos/launcher.c
105%doc demos/markers.c
106%doc demos/markers.h
107%doc demos/polygons.c
108%doc demos/url-marker.c
109%{_datadir}/gir-1.0/Champlain-0.4.gir
110%{_libdir}/%{name}-0.4.so
111%{_libdir}/pkgconfig/champlain-0.4.pc
112
113%dir %{_datadir}/gtk-doc/html/libchamplain
114%doc %{_datadir}/gtk-doc/html/libchamplain/*
115
116%dir %{_includedir}/%{name}-0.4
117%{_includedir}/%{name}-0.4/champlain
118
119%files gtk
120%defattr(-,root,root,-)
121%{_libdir}/girepository-1.0/GtkChamplain-0.4.typelib
122%{_libdir}/%{name}-gtk-0.4.so.*
123
124%files gtk-devel
125%defattr(-,root,root,-)
126%doc demos/launcher-gtk.c
127%doc demos/markers.c
128%{_datadir}/gir-1.0/GtkChamplain-0.4.gir
129%{_libdir}/%{name}-gtk-0.4.so
130%{_libdir}/pkgconfig/champlain-gtk-0.4.pc
131
132%dir %{_datadir}/gtk-doc/html/libchamplain-gtk
133%doc %{_datadir}/gtk-doc/html/libchamplain-gtk/*
134
135%dir %{_includedir}/%{name}-gtk-0.4
136%{_includedir}/%{name}-gtk-0.4/champlain-gtk
137
138%changelog
139* Mon Aug 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.7-1
140- new upstream release
141
142* Mon Jun 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.6-1
143- new upstream release
144
145* Sun Apr 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.5-1
146- new upstream release
147- fix BuildRequires: gtk-doc >= 1.14
148- add Requires: clutter-devel (devel package)
149- add Requires: clutter-gtk-devel (gtk-devel package)
150
151* Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.4-1
152- Initial build for Vine Linux
153- add BuildRequires: sqlite3-devel, gtk-doc, gobject-introspection
154
155
156* Thu Oct 29 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.4.2-1
157- Version bump to 0.4.2.
158  * Fixed acceptable values of "decel-rate". (GNOME Bugzilla #595552)
159  * Fixed GObject Introspection build failure. (GNOME Bugzilla #598942)
160  * http://download.gnome.org/sources/libchamplain/0.4/libchamplain-0.4.2.news
161  * http://download.gnome.org/sources/libchamplain/0.4/libchamplain-0.4.2.changes
162
163* Mon Oct 19 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.4.1-1
164- Version bump to 0.4.1.
165  * Added champlain_view_remove_layer.
166  * ChamplainSelectionLayer now has a "changed" signal.
167  * Added champlain_marker_get_highlighted_text_color,
168    champlain_marker_set_highlighted_text_color and
169    Added champlain_marker_get_highlighted_color.
170  * Fixed slowdowns with big caches.
171  * Don't emit invalid latitude and longitude notifications.
172  * Ensure map is displayed in Eye of GNOME's champlain plugin. (GNOME
173    Bugzilla #598106)
174  * http://download.gnome.org/sources/libchamplain/0.4/libchamplain-0.4.1.news
175  * http://download.gnome.org/sources/libchamplain/0.4/libchamplain-0.4.1.changes
176
177- Enabled GObject Introspection, and added 'Requires: gobject-introspection'
178  and 'BuildRequires: gir-repository-devel'. Patched to fix build failure.
179  (GNOME Bugzilla #598942)
180- Explicitly disabled debug code.
181- RPaths fixed by upstream. Removed 'BuildRequires: chrpath'.
182
183* Mon Sep 21 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.4.0-1
184- Version bump to 0.4.0.
185  * ChamplainView now has keyboard shortcuts (but not when used with
186    GtkChamplainEmbed).
187  * Removed deprecated symbols introduced in 0.3.
188  * Fixed X error when using GtkChamplainEmbed. (GNOME Bugzilla #590692)
189  * Events were not being sent until the mouse moved. (GNOME Bugzilla #590727)
190  * Fixed memory leak in ChamplainLayer. (GNOME Bugzilla #593505)
191  * Initial center_on should not result on the map being in Antarctica.
192    (GNOME Bugzilla #594963)
193  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.92.news
194  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.92.changes
195
196* Mon Aug 24 2009 Matthias Clasen <mclasen@redhat.com> - 0.3.91-1
197- Version bump to 0.3.91.
198  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.91.news
199
200* Tue Aug 11 2009 Matthias Clasen <mclasen@redhat.com> - 0.3.90-1
201- Version bump to 0.3.90.
202  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.90.news
203  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.90.changes
204
205* Mon Aug  3 2009 Matthias Clasen <mclasen@redhat.com> - 0.3.6-1
206- Version bump to 0.3.6.
207  * New marker animation API.
208  * Ported to Clutter 1.0. (GNOME Bugzilla #576391)
209  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.6.news
210  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.6.changes
211
212* Sat Aug 02 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.3.5-1
213- Version bump to 0.3.5.
214  * Marker selection API. (GNOME Bugzilla #577909)
215  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.5.news
216  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.4.news
217  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.5.changes
218  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.4.changes
219
220* Fri Jul 24 2009 Release Engineering <rel-eng@fedoraproject.org> - 0.3.3-2
221- Autorebuild for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
222
223* Sat Jul 11 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.3.3-1
224- Version bump to 0.3.3.
225  * Support for custom map sources and listing available map sources.
226  * Smooth movement to a new position. (GNOME Bugzilla #557641)
227  * Keep the center of the map in the center after a resize. (GNOME Bugzilla
228    #557642)
229  * Double click to zoom and center. (GNOME Bugzilla #557644)
230  * Added a way to know the maximum and minimum zoom level. (GNOME Bugzilla
231    #557965)
232  * Fixed unwanted wrap effect when panning at zoom level >= 8. (GNOME
233    Bugzilla #558020)
234  * Fixed center on and zooming in behavior. (GNOME Bugzilla #558026)
235  * Lack of user feedback during loading of tiles. (GNOME Bugzilla #559522)
236  * Added missing zoom level to OpenStreetMap Mapnik. (GNOME Bugzilla
237    #559446)
238  * Fixed wrong elastic effect affecting Emapthy's map view. (GNOME Bugzilla
239    #561700)
240  * Added disk cache management. (GNOME Bugzillla #568931)
241  * Host application should be able to limit the maximum and minimum zoom
242    levels. (GNOME Bugzilla #571702)
243  * Allow host applications to draw lines/routes on the map. (GNOME Bugzilla
244    #572377)
245  * Support proxies. (GNOME Bugzilla #573937)
246  * Provide a way to make visible a bunch of markers. (GNOME Bugzilla #574809)
247  * Do not allow negative zoom levels. (GNOME Bugzilla #575138)
248  * Fixed corrupted map when double-clicking at maximum level. (GNOME Bugzilla
249    #575139)
250  * Prevent ChamplainNetworkMapSource from crashing when setting "proxy-uri".
251    (GNOME Bugzilla #575902).
252  * Implemented advanced markers. (GNOME Bugzilla #576055)
253  * Various memory management fixes for ChamplainTile. (GNOME Bugzilla
254    #576159)
255  * Any go_to should stop a previous and not yet finished go_to. (GNOME
256    Bugzilla #576832)
257  * Prevent segmentation fault on 32 bit platforms. (GNOME Bugzilla #576698)
258  * Introduced a new signal called ChamplainView::animation-completed. (GNOME
259    Bugzilla #577169)
260  * Set decel-rate correctly. (GNOME Bugzilla #580785)
261  * champlain_network_map_source_fill_tile should be private. (GNOME Bugzilla
262    #582786)
263  * Fixed champlain_view_center_on. (GNOME Bugzilla #583502)
264  * Fixed "longitude" and "latitude" properties, which were reversed. (GNOME
265    Bugzilla #584365)
266  * Make the cache work the first time. (GNOME Bugzilla #584390)
267  * GNOME Goal: use accessor functions instead direct access. (GNOME Bugzilla
268    #585698)
269- Added 'BuildRequires: chrpath' for removing rpaths.
270
271* Wed Mar 18 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.2.9-1
272- Version bump to 0.2.9.
273  * Fixed elastic effect.
274  * Reduced exported symbols.
275
276* Wed Feb 25 2009 Release Engineering <rel-eng@fedoraproject.org> - 0.2.8-3
277- Autorebuild for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
278
279* Wed Jan 28 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.2.8-2
280- Removed 'Requires: clutter-devel >= 0.8 pkgconfig' from libchamplain-devel
281  for all distributions, except Fedora 10.
282- Fixed sample code to not use generic headers.
283
284* Wed Jan 14 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.2.8-1
285- Initial build. Imported SPEC from openSUSE.
286  * Added a new constructor for ChamplainMarkers made of an image.
287  * Double clicking on the map will now zoom and recenter.
288  * When resizing a ChamplainView, the centered content will still be
289    centered after the resizing. Can be disabled.
290  * The Map's license is displayed by default on the lower right corner.
291  * Fixed map centering on startup.
292  * Fixed missing zoom level in OpenStreetMap Mapnik.
293  * Fixed zooming and centering behaviour. (GNOME Bugzilla #558026)
Note: See TracBrowser for help on using the repository browser.