diff options
Diffstat (limited to 'recipes/viking/viking-0.9.6')
-rw-r--r-- | recipes/viking/viking-0.9.6/viking-openaerialmap.patch | 49 | ||||
-rw-r--r-- | recipes/viking/viking-0.9.6/viking-parallel-build.patch | 15 |
2 files changed, 64 insertions, 0 deletions
diff --git a/recipes/viking/viking-0.9.6/viking-openaerialmap.patch b/recipes/viking/viking-0.9.6/viking-openaerialmap.patch new file mode 100644 index 0000000000..5344e353f0 --- /dev/null +++ b/recipes/viking/viking-0.9.6/viking-openaerialmap.patch @@ -0,0 +1,49 @@ +Author: Stanislav Brabec <sbrabec@suse.cz> + +This patch adds support for OpenAerialMap, asking server to provide OSM-compatible tiles. +This solution is not the fastest one, but it is far the simplest solution. + +================================================================================ +--- viking-0.9.6/src/osm.c ++++ viking-0.9.6/src/osm.c +@@ -36,6 +36,7 @@ + static int osm_maplint_download ( MapCoord *src, const gchar *dest_fn ); + static int osm_mapnik_download ( MapCoord *src, const gchar *dest_fn ); + static int osm_osmarender_download ( MapCoord *src, const gchar *dest_fn ); ++static int oam_download ( MapCoord *src, const gchar *dest_fn ); + static int bluemarble_download ( MapCoord *src, const gchar *dest_fn ); + + static DownloadOptions osm_options = { NULL, 0, a_check_map_file }; +@@ -45,12 +46,16 @@ + VikMapsLayer_MapType osmarender_type = { 12, 256, 256, VIK_VIEWPORT_DRAWMODE_MERCATOR, osm_coord_to_mapcoord, osm_mapcoord_to_center_coord, osm_osmarender_download }; + VikMapsLayer_MapType mapnik_type = { 13, 256, 256, VIK_VIEWPORT_DRAWMODE_MERCATOR, osm_coord_to_mapcoord, osm_mapcoord_to_center_coord, osm_mapnik_download }; VikMapsLayer_MapType maplint_type = { 14, 256, 256, VIK_VIEWPORT_DRAWMODE_MERCATOR, osm_coord_to_mapcoord, osm_mapcoord_to_center_coord, osm_maplint_download }; + ++ VikMapsLayer_MapType oam_type = { 17, 256, 256, VIK_VIEWPORT_DRAWMODE_MERCATOR, osm_coord_to_mapcoord, osm_mapcoord_to_center_coord, oam_download }; ++ + VikMapsLayer_MapType bluemarble_type = { 15, 256, 256, VIK_VIEWPORT_DRAWMODE_MERCATOR, osm_coord_to_mapcoord, osm_mapcoord_to_center_coord, bluemarble_download }; + + maps_layer_register_type("OpenStreetMap (Osmarender)", 12, &osmarender_type); + maps_layer_register_type("OpenStreetMap (Mapnik)", 13, &mapnik_type); + maps_layer_register_type("OpenStreetMap (Maplint)", 14, &maplint_type); + ++ maps_layer_register_type("OpenAerialMap", 17, &oam_type); ++ + maps_layer_register_type("BlueMarble", 15, &bluemarble_type); + } + +@@ -126,6 +131,15 @@ + g_free ( uri ); + return res; + } ++ ++static int oam_download ( MapCoord *src, const gchar *dest_fn ) ++{ ++ int res = -1; ++ gchar *uri = g_strdup_printf ( "/tiles/1.0.0/openaerialmap-900913/%d/%d/%d.jpg", 17-src->scale, src->x, src->y ); ++ res = a_http_download_get_url ( "tile.openaerialmap.org", uri, dest_fn, &osm_options ); ++ g_free ( uri ); ++ return res; ++} + + static int bluemarble_download ( MapCoord *src, const gchar *dest_fn ) + { diff --git a/recipes/viking/viking-0.9.6/viking-parallel-build.patch b/recipes/viking/viking-0.9.6/viking-parallel-build.patch new file mode 100644 index 0000000000..9b2244a06d --- /dev/null +++ b/recipes/viking/viking-0.9.6/viking-parallel-build.patch @@ -0,0 +1,15 @@ +Index: viking-0.9.6/src/icons/Makefile.am +=================================================================== +--- viking-0.9.6.orig/src/icons/Makefile.am 2008-07-27 20:25:34.000000000 +0000 ++++ viking-0.9.6/src/icons/Makefile.am 2008-09-05 14:15:29.000000000 +0000 +@@ -134,8 +134,8 @@ + + .png.png_h: + gdk-pixbuf-csource --name="`basename $< .png`" --struct --extern $< > $@ +- cat $@ | sed -e 's/\(pixel_data: ..\)/\1 (unsigned char \*)/' > temp.h +- mv temp.h $@ ++ cat $@ | sed -e 's/\(pixel_data: ..\)/\1 (unsigned char \*)/' > temp$@.h ++ mv temp$@.h $@ + + INCLUDES = @GTK_CFLAGS@ + AM_CFLAGS = -Wall -g -D_GNU_SOURCE |