View | Details | Raw Unified | Return to bug 180274
Collapse All | Expand All

(-)graphics/mapnik/Makefile (-32 / +50 lines)
Lines 2-12 Link Here
2
# $FreeBSD: graphics/mapnik/Makefile 319806 2013-06-03 20:39:41Z madpilot $
2
# $FreeBSD: graphics/mapnik/Makefile 319806 2013-06-03 20:39:41Z madpilot $
3
3
4
PORTNAME=	mapnik
4
PORTNAME=	mapnik
5
PORTVERSION=	2.1.0
5
PORTVERSION=	2.2.0
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	3
8
CATEGORIES=	graphics geography
7
CATEGORIES=	graphics geography
9
MASTER_SITES=	http://cloud.github.com/downloads/${PORTNAME}/${PORTNAME}/
8
MASTER_SITES=	http://mapnik.s3.amazonaws.com/dist/v${PORTVERSION}/
10
9
11
MAINTAINER=	littlesavage@rambler.ru
10
MAINTAINER=	littlesavage@rambler.ru
12
COMMENT=	A Free Toolkit For Developing Mapping Applications
11
COMMENT=	A Free Toolkit For Developing Mapping Applications
Lines 15-23 Link Here
15
LICENSE_FILE=	${WRKSRC}/COPYING
14
LICENSE_FILE=	${WRKSRC}/COPYING
16
15
17
LIB_DEPENDS=	proj:${PORTSDIR}/graphics/proj \
16
LIB_DEPENDS=	proj:${PORTSDIR}/graphics/proj \
18
		png15:${PORTSDIR}/graphics/png \
19
		tiff:${PORTSDIR}/graphics/tiff \
20
		jpeg:${PORTSDIR}/graphics/jpeg \
21
		icuuc:${PORTSDIR}/devel/icu \
17
		icuuc:${PORTSDIR}/devel/icu \
22
		boost_system:${PORTSDIR}/devel/boost-libs \
18
		boost_system:${PORTSDIR}/devel/boost-libs \
23
		boost_python:${PORTSDIR}/devel/boost-python-libs
19
		boost_python:${PORTSDIR}/devel/boost-python-libs
Lines 25-62 Link Here
25
		${PYTHON_PKGNAMEPREFIX}icu>=0.8.1:${PORTSDIR}/devel/py-icu
21
		${PYTHON_PKGNAMEPREFIX}icu>=0.8.1:${PORTSDIR}/devel/py-icu
26
22
27
USE_BZIP2=	yes
23
USE_BZIP2=	yes
24
USES=		pkgconfig
25
USE_GNOME=	libxml2
28
USE_PYTHON=	2.6+
26
USE_PYTHON=	2.6+
29
USE_LDCONFIG=	yes
27
USE_LDCONFIG=	yes
30
USE_SCONS=	yes
28
USE_SCONS=	yes
31
USE_AUTOTOOLS=	libltdl
32
USES=		pkgconfig
33
USE_GNOME=	libxml2
34
MAKE_JOBS_SAFE=	yes
29
MAKE_JOBS_SAFE=	yes
35
WARNING_CXXFLAGS?=	-w
30
WARNING_CXXFLAGS?=	-w
36
31
37
CONFICTS=	svg2png*
38
39
INPUT_PLUGINS=	geojson python raster shape
32
INPUT_PLUGINS=	geojson python raster shape
40
33
41
OPTIONS_DEFINE=	CAIRO CSV GDAL GEOS OGR OSM POSTGIS SQLITE3
34
NO_OPTIONS_SORT= yes
42
OPTIONS_DEFAULT=	CAIRO CSV GDAL OGR OSM POSTGIS SQLITE3
35
OPTIONS_DEFINE=	CAIRO CSV GDAL OGR OSM POSTGIS SQLITE3 JPEG PNG TIFF
36
OPTIONS_DEFAULT=	CAIRO CSV GDAL OGR OSM POSTGIS SQLITE3 JPEG PNG TIFF
43
37
44
CAIRO_DESC=	Enable cairo rendering
38
CAIRO_DESC=	Enable cairo rendering
45
CSV_DESC=	CSV input plugin
39
CSV_DESC=	CSV input plugin
46
GDAL_DESC=	GDAL input plugin
40
GDAL_DESC=	GDAL input plugin
47
GEOS_DESC=	GEOS input plugin
48
OGR_DESC=	OGR input plugin
41
OGR_DESC=	OGR input plugin
49
OSM_DESC=	OSM input plugin
42
OSM_DESC=	OSM input plugin
50
POSTGIS_DESC=	PostGIS input plugin
43
POSTGIS_DESC=	PostGIS input plugin
51
SQLITE3_DESC=	SQLite input plugin
44
SQLITE3_DESC=	SQLite input plugin
52
45
46
PORTDOCS=	*
47
48
DOCSRCDIR1=	${WRKSRC}
49
DOC_FILES1=	AUTHORS.md CHANGELOG.md README.md
50
51
DOCSRCDIR2=	${WRKSRC}/docs
52
DOCSDIR2=	${DOCSDIR}/docs
53
DOC_FILES2=	*
54
53
.include <bsd.port.options.mk>
55
.include <bsd.port.options.mk>
54
56
55
.if ${PORT_OPTIONS:MCAIRO}
57
.if ${PORT_OPTIONS:MCAIRO}
56
LIB_DEPENDS+=	cairo:${PORTSDIR}/graphics/cairo \
58
LIB_DEPENDS+=	cairo:${PORTSDIR}/graphics/cairo
57
   		cairomm-1:${PORTSDIR}/graphics/cairomm
59
BUILD_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}cairo>=1.8.2:${PORTSDIR}/graphics/py-cairo
58
BUILD_DEPENDS+=	cairomm>=1.8.0:${PORTSDIR}/graphics/cairomm \
59
		${PYTHON_PKGNAMEPREFIX}cairo>=1.8.2:${PORTSDIR}/graphics/py-cairo
60
.else
60
.else
61
SCONS_ARGS+=	CAIRO=False
61
SCONS_ARGS+=	CAIRO=False
62
.endif
62
.endif
Lines 76-89 Link Here
76
PLIST_SUB+=	GDAL="@comment "
76
PLIST_SUB+=	GDAL="@comment "
77
.endif
77
.endif
78
78
79
.if ${PORT_OPTIONS:MGEOS}
80
INPUT_PLUGINS+=	geos
81
LIB_DEPENDS+=	geos:${PORTSDIR}/graphics/geos
82
PLIST_SUB+=	GEOS=""
83
.else
84
PLIST_SUB+=	GEOS="@comment "
85
.endif
86
87
.if ${PORT_OPTIONS:MOGR}
79
.if ${PORT_OPTIONS:MOGR}
88
INPUT_PLUGINS+=	ogr
80
INPUT_PLUGINS+=	ogr
89
LIB_DEPENDS+=	gdal:${PORTSDIR}/graphics/gdal
81
LIB_DEPENDS+=	gdal:${PORTSDIR}/graphics/gdal
Lines 117-122 Link Here
117
PLIST_SUB+=	SQLITE="@comment "
109
PLIST_SUB+=	SQLITE="@comment "
118
.endif
110
.endif
119
111
112
.if ${PORT_OPTIONS:MJPEG}
113
LIB_DEPENDS+=   jpeg:${PORTSDIR}/graphics/jpeg
114
.else
115
SCONS_ARGS+=	JPEG=False
116
.endif
117
118
.if ${PORT_OPTIONS:MPNG}
119
LIB_DEPENDS+=   png15:${PORTSDIR}/graphics/png
120
.else
121
SCONS_ARGS+=	PNG=False
122
.endif
123
124
.if ${PORT_OPTIONS:MTIFF}
125
LIB_DEPENDS+=   tiff:${PORTSDIR}/graphics/tiff
126
.else
127
SCONS_ARGS+=	TIFF=False
128
.endif
129
120
.include <bsd.port.pre.mk>
130
.include <bsd.port.pre.mk>
121
131
122
.if ${ARCH} == "powerpc"
132
.if ${ARCH} == "powerpc"
Lines 131-141 Link Here
131
pre-configure:
141
pre-configure:
132
.if ${PORT_OPTIONS:MSQLITE3}
142
.if ${PORT_OPTIONS:MSQLITE3}
133
	@if ! ${LOCALBASE}/bin/sqlite3 :memory: 'create virtual table foo using rtree(pkid, xmin, xmax, ymin, ymax)' > /dev/null 2>&1; then \
143
	@if ! ${LOCALBASE}/bin/sqlite3 :memory: 'create virtual table foo using rtree(pkid, xmin, xmax, ymin, ymax)' > /dev/null 2>&1; then \
134
	   ${ECHO_MSG} "" ; \
144
		${ECHO_MSG} "" ; \
135
	   ${ECHO_MSG} "The SQLite plugin requires libsqlite3 built with RTREE support"; \
145
		${ECHO_MSG} "The SQLite plugin requires libsqlite3 built with RTREE support"; \
136
	   ${ECHO_MSG} "Please, reinstall 'databases/sqlite3' port with R*Tree module enabled"; \
146
		${ECHO_MSG} "Please, reinstall 'databases/sqlite3' port with R*Tree module enabled"; \
137
	   ${ECHO_MSG} "" ; \
147
		${ECHO_MSG} "" ; \
138
	   ${FALSE} ; \
148
		${FALSE} ; \
139
	fi
149
	fi
140
.endif
150
.endif
141
151
Lines 145-150 Link Here
145
155
146
do-install:
156
do-install:
147
	@cd ${INSTALL_WRKSRC} && ${SETENV} ${SCONS_BUILDENV} ${SCONS_BIN} \
157
	@cd ${INSTALL_WRKSRC} && ${SETENV} ${SCONS_BUILDENV} ${SCONS_BIN} \
148
	    ${SCONS_INSTALL_TARGET}
158
		${SCONS_INSTALL_TARGET}
159
160
post-install:
161
.if ${PORT_OPTIONS:MDOCS}
162
	@${MKDIR} ${DOCSDIR}
163
	${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${DOCSDIR}
164
	@${MKDIR} ${DOCSDIR2}
165
	${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${DOCSDIR2}
166
.endif
149
167
150
.include <bsd.port.post.mk>
168
.include <bsd.port.post.mk>
(-)graphics/mapnik/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (mapnik-v2.1.0.tar.bz2) = d5fcbaaea00359613b707eacaaa2109a0b5696e2baa35c02e4436e8a823b7160
1
SHA256 (mapnik-v2.2.0.tar.bz2) = 9b30de4e58adc6d5aa8478779d0a47fdabe6bf8b166b67a383b35f5aa5d6c1b0
2
SIZE (mapnik-v2.1.0.tar.bz2) = 17441565
2
SIZE (mapnik-v2.2.0.tar.bz2) = 23007178
(-)graphics/mapnik/files/patch-plugins-input-python-build.py (-12 lines)
Lines 1-12 Link Here
1
--- plugins/input/python/build.py.orig 2013-06-02 20:28:29.000000000 +0400
2
+++ plugins/input/python/build.py 2013-06-02 20:29:34.000000000 +0400
3
@@ -68,6 +68,9 @@
4
 LINKFLAGS=linkflags
5
 )
6
7
+# if the plugin links to libmapnik ensure it is built first
8
+Depends(TARGET, env.subst('../../../src/%s' % env['MAPNIK_LIB_NAME']))
9
+
10
 # if 'uninstall' is not passed on the command line
11
 # then we actually create the install targets that
12
 # scons will install if 'install' is passed as an arg
(-)graphics/mapnik/files/patch-tests-cpp_tests-conversions_test.cpp (+79 lines)
Line 0 Link Here
1
--- tests/cpp_tests/conversions_test.cpp.orig	2013-06-30 22:35:29.000000000 +0400
2
+++ tests/cpp_tests/conversions_test.cpp	2013-06-30 22:38:32.000000000 +0400
3
@@ -166,31 +166,31 @@
4
         BOOST_TEST_EQ( out,  "1e+09" );
5
         out.clear();
6
 
7
-        to_string(out, double(10000000000));
8
+        to_string(out, double(10000000000ULL));
9
         BOOST_TEST_EQ( out,  "1e+10" );
10
         out.clear();
11
 
12
-        to_string(out, double(100000000000));
13
+        to_string(out, double(100000000000ULL));
14
         BOOST_TEST_EQ( out,  "1e+11" );
15
         out.clear();
16
 
17
-        to_string(out, double(1000000000000));
18
+        to_string(out, double(1000000000000ULL));
19
         BOOST_TEST_EQ( out,  "1e+12" );
20
         out.clear();
21
 
22
-        to_string(out, double(10000000000000));
23
+        to_string(out, double(10000000000000ULL));
24
         BOOST_TEST_EQ( out,  "1e+13" );
25
         out.clear();
26
 
27
-        to_string(out, double(100000000000000));
28
+        to_string(out, double(100000000000000ULL));
29
         BOOST_TEST_EQ( out,  "1e+14" );
30
         out.clear();
31
 
32
-        to_string(out, double(1000000000000005));
33
+        to_string(out, double(1000000000000005ULL));
34
         BOOST_TEST_EQ( out,  "1e+15" );
35
         out.clear();
36
 
37
-        to_string(out, double(-1000000000000000));
38
+        to_string(out, double(-1000000000000000LL));
39
         BOOST_TEST_EQ( out,  "-1e+15" );
40
         out.clear();
41
 
42
@@ -210,7 +210,7 @@
43
         BOOST_TEST_EQ( out,  "67.35" );
44
         out.clear();
45
 
46
-        to_string(out, double(1234000000000000));
47
+        to_string(out, double(1234000000000000ULL));
48
         BOOST_TEST_EQ( out,  "1.234e+15" );
49
         out.clear();
50
 
51
@@ -235,16 +235,16 @@
52
         BOOST_TEST_EQ( out, "-2" );
53
         out.clear();
54
 
55
-        to_string(out, int(2147483647));
56
+        to_string(out, int(2147483647ULL));
57
         BOOST_TEST_EQ( out, "2147483647" );
58
         out.clear();
59
 
60
-        to_string(out, int(-2147483648));
61
+        to_string(out, int(-2147483648LL));
62
         BOOST_TEST_EQ( out, "-2147483648" );
63
         out.clear();
64
 
65
         // unsigned
66
-        to_string(out, unsigned(4294967295));
67
+        to_string(out, unsigned(4294967295ULL));
68
         BOOST_TEST_EQ( out, "4294967295" );
69
         out.clear();
70
 
71
@@ -258,7 +258,7 @@
72
         BOOST_TEST_EQ( out, "-2" );
73
         out.clear();
74
 
75
-        to_string(out,mapnik::value_integer(9223372036854775807));
76
+        to_string(out,mapnik::value_integer(9223372036854775807ULL));
77
         BOOST_TEST_EQ( out, "9223372036854775807" );
78
         out.clear();
79
 #else
(-)graphics/mapnik/pkg-plist (-39 / +192 lines)
Lines 1-8 Link Here
1
bin/mapnik-config
1
bin/mapnik-config
2
bin/mapnik-speed-check
2
bin/mapnik-speed-check
3
bin/shapeindex
3
bin/shapeindex
4
bin/svg2png
5
bin/upgrade_map_xml.py
4
bin/upgrade_map_xml.py
5
include/mapnik/agg/agg_alpha_mask_u8.h
6
include/mapnik/agg/agg_arc.h
7
include/mapnik/agg/agg_array.h
8
include/mapnik/agg/agg_arrowhead.h
9
include/mapnik/agg/agg_basics.h
10
include/mapnik/agg/agg_bezier_arc.h
11
include/mapnik/agg/agg_bitset_iterator.h
12
include/mapnik/agg/agg_blur.h
13
include/mapnik/agg/agg_bounding_rect.h
14
include/mapnik/agg/agg_bspline.h
15
include/mapnik/agg/agg_clip_liang_barsky.h
16
include/mapnik/agg/agg_color_gray.h
17
include/mapnik/agg/agg_color_rgba.h
18
include/mapnik/agg/agg_config.h
19
include/mapnik/agg/agg_conv_adaptor_vcgen.h
20
include/mapnik/agg/agg_conv_adaptor_vpgen.h
21
include/mapnik/agg/agg_conv_bspline.h
22
include/mapnik/agg/agg_conv_clip_polygon.h
23
include/mapnik/agg/agg_conv_clip_polyline.h
24
include/mapnik/agg/agg_conv_clipper.h
25
include/mapnik/agg/agg_conv_close_polygon.h
26
include/mapnik/agg/agg_conv_concat.h
27
include/mapnik/agg/agg_conv_contour.h
28
include/mapnik/agg/agg_conv_curve.h
29
include/mapnik/agg/agg_conv_dash.h
30
include/mapnik/agg/agg_conv_gpc.h
31
include/mapnik/agg/agg_conv_marker.h
32
include/mapnik/agg/agg_conv_marker_adaptor.h
33
include/mapnik/agg/agg_conv_segmentator.h
34
include/mapnik/agg/agg_conv_shorten_path.h
35
include/mapnik/agg/agg_conv_smooth_poly1.h
36
include/mapnik/agg/agg_conv_stroke.h
37
include/mapnik/agg/agg_conv_transform.h
38
include/mapnik/agg/agg_conv_unclose_polygon.h
39
include/mapnik/agg/agg_curves.h
40
include/mapnik/agg/agg_dda_line.h
41
include/mapnik/agg/agg_ellipse.h
42
include/mapnik/agg/agg_ellipse_bresenham.h
43
include/mapnik/agg/agg_embedded_raster_fonts.h
44
include/mapnik/agg/agg_font_cache_manager.h
45
include/mapnik/agg/agg_gamma_functions.h
46
include/mapnik/agg/agg_gamma_lut.h
47
include/mapnik/agg/agg_glyph_raster_bin.h
48
include/mapnik/agg/agg_gradient_lut.h
49
include/mapnik/agg/agg_gsv_text.h
50
include/mapnik/agg/agg_image_accessors.h
51
include/mapnik/agg/agg_image_filters.h
52
include/mapnik/agg/agg_line_aa_basics.h
53
include/mapnik/agg/agg_math.h
54
include/mapnik/agg/agg_math_stroke.h
55
include/mapnik/agg/agg_path_length.h
56
include/mapnik/agg/agg_path_storage.h
57
include/mapnik/agg/agg_path_storage_integer.h
58
include/mapnik/agg/agg_pattern_filters_rgba.h
59
include/mapnik/agg/agg_pixfmt_amask_adaptor.h
60
include/mapnik/agg/agg_pixfmt_gray.h
61
include/mapnik/agg/agg_pixfmt_rgb.h
62
include/mapnik/agg/agg_pixfmt_rgb_packed.h
63
include/mapnik/agg/agg_pixfmt_rgba.h
64
include/mapnik/agg/agg_pixfmt_transposer.h
65
include/mapnik/agg/agg_rasterizer_cells_aa.h
66
include/mapnik/agg/agg_rasterizer_compound_aa.h
67
include/mapnik/agg/agg_rasterizer_outline.h
68
include/mapnik/agg/agg_rasterizer_outline_aa.h
69
include/mapnik/agg/agg_rasterizer_scanline_aa.h
70
include/mapnik/agg/agg_rasterizer_sl_clip.h
71
include/mapnik/agg/agg_renderer_base.h
72
include/mapnik/agg/agg_renderer_markers.h
73
include/mapnik/agg/agg_renderer_mclip.h
74
include/mapnik/agg/agg_renderer_outline_aa.h
75
include/mapnik/agg/agg_renderer_outline_image.h
76
include/mapnik/agg/agg_renderer_primitives.h
77
include/mapnik/agg/agg_renderer_raster_text.h
78
include/mapnik/agg/agg_renderer_scanline.h
79
include/mapnik/agg/agg_rendering_buffer.h
80
include/mapnik/agg/agg_rendering_buffer_dynarow.h
81
include/mapnik/agg/agg_rounded_rect.h
82
include/mapnik/agg/agg_scanline_bin.h
83
include/mapnik/agg/agg_scanline_boolean_algebra.h
84
include/mapnik/agg/agg_scanline_p.h
85
include/mapnik/agg/agg_scanline_storage_aa.h
86
include/mapnik/agg/agg_scanline_storage_bin.h
87
include/mapnik/agg/agg_scanline_u.h
88
include/mapnik/agg/agg_shorten_path.h
89
include/mapnik/agg/agg_simul_eq.h
90
include/mapnik/agg/agg_span_allocator.h
91
include/mapnik/agg/agg_span_converter.h
92
include/mapnik/agg/agg_span_gouraud.h
93
include/mapnik/agg/agg_span_gouraud_gray.h
94
include/mapnik/agg/agg_span_gouraud_rgba.h
95
include/mapnik/agg/agg_span_gradient.h
96
include/mapnik/agg/agg_span_gradient_alpha.h
97
include/mapnik/agg/agg_span_image_filter.h
98
include/mapnik/agg/agg_span_image_filter_gray.h
99
include/mapnik/agg/agg_span_image_filter_rgb.h
100
include/mapnik/agg/agg_span_image_filter_rgba.h
101
include/mapnik/agg/agg_span_interpolator_adaptor.h
102
include/mapnik/agg/agg_span_interpolator_linear.h
103
include/mapnik/agg/agg_span_interpolator_persp.h
104
include/mapnik/agg/agg_span_interpolator_trans.h
105
include/mapnik/agg/agg_span_pattern_gray.h
106
include/mapnik/agg/agg_span_pattern_rgb.h
107
include/mapnik/agg/agg_span_pattern_rgba.h
108
include/mapnik/agg/agg_span_solid.h
109
include/mapnik/agg/agg_span_subdiv_adaptor.h
110
include/mapnik/agg/agg_trans_affine.h
111
include/mapnik/agg/agg_trans_bilinear.h
112
include/mapnik/agg/agg_trans_double_path.h
113
include/mapnik/agg/agg_trans_lens.h
114
include/mapnik/agg/agg_trans_perspective.h
115
include/mapnik/agg/agg_trans_single_path.h
116
include/mapnik/agg/agg_trans_viewport.h
117
include/mapnik/agg/agg_trans_warp_magnifier.h
118
include/mapnik/agg/agg_vcgen_bspline.h
119
include/mapnik/agg/agg_vcgen_contour.h
120
include/mapnik/agg/agg_vcgen_dash.h
121
include/mapnik/agg/agg_vcgen_markers_term.h
122
include/mapnik/agg/agg_vcgen_smooth_poly1.h
123
include/mapnik/agg/agg_vcgen_stroke.h
124
include/mapnik/agg/agg_vcgen_vertex_sequence.h
125
include/mapnik/agg/agg_vertex_sequence.h
126
include/mapnik/agg/agg_vpgen_clip_polygon.h
127
include/mapnik/agg/agg_vpgen_clip_polyline.h
128
include/mapnik/agg/agg_vpgen_segmentator.h
129
include/mapnik/agg/clipper.hpp
6
include/mapnik/agg_helpers.hpp
130
include/mapnik/agg_helpers.hpp
7
include/mapnik/agg_pattern_source.hpp
131
include/mapnik/agg_pattern_source.hpp
8
include/mapnik/agg_rasterizer.hpp
132
include/mapnik/agg_rasterizer.hpp
Lines 13-18 Link Here
13
include/mapnik/boolean.hpp
137
include/mapnik/boolean.hpp
14
include/mapnik/box2d.hpp
138
include/mapnik/box2d.hpp
15
include/mapnik/building_symbolizer.hpp
139
include/mapnik/building_symbolizer.hpp
140
include/mapnik/cairo_context.hpp
16
include/mapnik/cairo_renderer.hpp
141
include/mapnik/cairo_renderer.hpp
17
include/mapnik/char_info.hpp
142
include/mapnik/char_info.hpp
18
include/mapnik/color.hpp
143
include/mapnik/color.hpp
Lines 22-38 Link Here
22
include/mapnik/coord.hpp
147
include/mapnik/coord.hpp
23
include/mapnik/coord_array.hpp
148
include/mapnik/coord_array.hpp
24
include/mapnik/css_color_grammar.hpp
149
include/mapnik/css_color_grammar.hpp
150
include/mapnik/css_color_grammar_impl.hpp
25
include/mapnik/ctrans.hpp
151
include/mapnik/ctrans.hpp
26
include/mapnik/datasource.hpp
152
include/mapnik/datasource.hpp
27
include/mapnik/datasource_cache.hpp
153
include/mapnik/datasource_cache.hpp
28
include/mapnik/debug.hpp
154
include/mapnik/debug.hpp
155
include/mapnik/debug_symbolizer.hpp
29
include/mapnik/distance.hpp
156
include/mapnik/distance.hpp
30
include/mapnik/ellipsoid.hpp
157
include/mapnik/ellipsoid.hpp
31
include/mapnik/enumeration.hpp
158
include/mapnik/enumeration.hpp
32
include/mapnik/expression.hpp
159
include/mapnik/expression.hpp
33
include/mapnik/expression_evaluator.hpp
160
include/mapnik/expression_evaluator.hpp
34
include/mapnik/expression_grammar.hpp
161
include/mapnik/expression_grammar.hpp
162
include/mapnik/expression_grammar_impl.hpp
35
include/mapnik/expression_node.hpp
163
include/mapnik/expression_node.hpp
164
include/mapnik/expression_node_types.hpp
36
include/mapnik/expression_string.hpp
165
include/mapnik/expression_string.hpp
37
include/mapnik/factory.hpp
166
include/mapnik/factory.hpp
38
include/mapnik/fastmath.hpp
167
include/mapnik/fastmath.hpp
Lines 41-53 Link Here
41
include/mapnik/feature_kv_iterator.hpp
170
include/mapnik/feature_kv_iterator.hpp
42
include/mapnik/feature_layer_desc.hpp
171
include/mapnik/feature_layer_desc.hpp
43
include/mapnik/feature_style_processor.hpp
172
include/mapnik/feature_style_processor.hpp
173
include/mapnik/feature_style_processor_impl.hpp
44
include/mapnik/feature_type_style.hpp
174
include/mapnik/feature_type_style.hpp
45
include/mapnik/filter_factory.hpp
175
include/mapnik/filter_factory.hpp
46
include/mapnik/filter_featureset.hpp
176
include/mapnik/filter_featureset.hpp
47
include/mapnik/font_engine_freetype.hpp
177
include/mapnik/font_engine_freetype.hpp
48
include/mapnik/font_set.hpp
178
include/mapnik/font_set.hpp
179
include/mapnik/font_util.hpp
49
include/mapnik/formatting/base.hpp
180
include/mapnik/formatting/base.hpp
50
include/mapnik/formatting/expression.hpp
181
include/mapnik/formatting/expression_format.hpp
51
include/mapnik/formatting/format.hpp
182
include/mapnik/formatting/format.hpp
52
include/mapnik/formatting/list.hpp
183
include/mapnik/formatting/list.hpp
53
include/mapnik/formatting/registry.hpp
184
include/mapnik/formatting/registry.hpp
Lines 64-72 Link Here
64
include/mapnik/grid/grid_pixfmt.hpp
195
include/mapnik/grid/grid_pixfmt.hpp
65
include/mapnik/grid/grid_rasterizer.hpp
196
include/mapnik/grid/grid_rasterizer.hpp
66
include/mapnik/grid/grid_renderer.hpp
197
include/mapnik/grid/grid_renderer.hpp
198
include/mapnik/grid/grid_renderer_base.hpp
67
include/mapnik/grid/grid_rendering_buffer.hpp
199
include/mapnik/grid/grid_rendering_buffer.hpp
68
include/mapnik/grid/grid_util.hpp
200
include/mapnik/grid/grid_util.hpp
69
include/mapnik/grid/grid_view.hpp
201
include/mapnik/grid/grid_view.hpp
202
include/mapnik/hash_variant.hpp
70
include/mapnik/hextree.hpp
203
include/mapnik/hextree.hpp
71
include/mapnik/hit_test_filter.hpp
204
include/mapnik/hit_test_filter.hpp
72
include/mapnik/image_compositing.hpp
205
include/mapnik/image_compositing.hpp
Lines 102-119 Link Here
102
include/mapnik/memory.hpp
235
include/mapnik/memory.hpp
103
include/mapnik/memory_datasource.hpp
236
include/mapnik/memory_datasource.hpp
104
include/mapnik/memory_featureset.hpp
237
include/mapnik/memory_featureset.hpp
238
include/mapnik/miniz_png.hpp
239
include/mapnik/noncopyable.hpp
105
include/mapnik/octree.hpp
240
include/mapnik/octree.hpp
106
include/mapnik/offset_converter.hpp
241
include/mapnik/offset_converter.hpp
107
include/mapnik/palette.hpp
242
include/mapnik/palette.hpp
108
include/mapnik/params.hpp
243
include/mapnik/params.hpp
244
include/mapnik/params_impl.hpp
109
include/mapnik/parse_path.hpp
245
include/mapnik/parse_path.hpp
110
include/mapnik/parse_transform.hpp
246
include/mapnik/parse_transform.hpp
247
include/mapnik/path_expression.hpp
111
include/mapnik/path_expression_grammar.hpp
248
include/mapnik/path_expression_grammar.hpp
112
include/mapnik/pixel_position.hpp
249
include/mapnik/pixel_position.hpp
113
include/mapnik/placement_finder.hpp
250
include/mapnik/placement_finder.hpp
114
include/mapnik/plugin.hpp
251
include/mapnik/plugin.hpp
115
include/mapnik/png_io.hpp
252
include/mapnik/png_io.hpp
116
include/mapnik/point_symbolizer.hpp
253
include/mapnik/point_symbolizer.hpp
254
include/mapnik/polygon_clipper.hpp
117
include/mapnik/polygon_pattern_symbolizer.hpp
255
include/mapnik/polygon_pattern_symbolizer.hpp
118
include/mapnik/polygon_symbolizer.hpp
256
include/mapnik/polygon_symbolizer.hpp
119
include/mapnik/pool.hpp
257
include/mapnik/pool.hpp
Lines 126-156 Link Here
126
include/mapnik/raster.hpp
264
include/mapnik/raster.hpp
127
include/mapnik/raster_colorizer.hpp
265
include/mapnik/raster_colorizer.hpp
128
include/mapnik/raster_symbolizer.hpp
266
include/mapnik/raster_symbolizer.hpp
267
include/mapnik/request.hpp
129
include/mapnik/rule.hpp
268
include/mapnik/rule.hpp
269
include/mapnik/rule_cache.hpp
130
include/mapnik/save_map.hpp
270
include/mapnik/save_map.hpp
131
include/mapnik/scale_denominator.hpp
271
include/mapnik/scale_denominator.hpp
132
include/mapnik/segment.hpp
272
include/mapnik/segment.hpp
133
include/mapnik/shield_symbolizer.hpp
273
include/mapnik/shield_symbolizer.hpp
274
include/mapnik/simplify.hpp
275
include/mapnik/simplify_converter.hpp
134
include/mapnik/span_image_filter.hpp
276
include/mapnik/span_image_filter.hpp
277
include/mapnik/sparsehash/dense_hash_map
278
include/mapnik/sparsehash/internal/densehashtable.h
279
include/mapnik/sparsehash/internal/hashtable-common.h
280
include/mapnik/sparsehash/internal/libc_allocator_with_realloc.h
281
include/mapnik/sparsehash/internal/sparseconfig.h
282
include/mapnik/sparsehash/template_util.h
283
include/mapnik/sparsehash/type_traits.h
135
include/mapnik/sql_utils.hpp
284
include/mapnik/sql_utils.hpp
136
include/mapnik/stroke.hpp
285
include/mapnik/stroke.hpp
137
include/mapnik/svg/svg_converter.hpp
286
include/mapnik/svg/svg_converter.hpp
138
include/mapnik/svg/svg_generator.hpp
139
include/mapnik/svg/svg_output_attributes.hpp
140
include/mapnik/svg/svg_output_grammars.hpp
141
include/mapnik/svg/svg_parser.hpp
287
include/mapnik/svg/svg_parser.hpp
142
include/mapnik/svg/svg_path_adapter.hpp
288
include/mapnik/svg/svg_path_adapter.hpp
143
include/mapnik/svg/svg_path_attributes.hpp
289
include/mapnik/svg/svg_path_attributes.hpp
144
include/mapnik/svg/svg_path_commands.hpp
290
include/mapnik/svg/svg_path_commands.hpp
145
include/mapnik/svg/svg_path_grammar.hpp
291
include/mapnik/svg/svg_path_grammar.hpp
146
include/mapnik/svg/svg_path_iterator.hpp
147
include/mapnik/svg/svg_path_parser.hpp
292
include/mapnik/svg/svg_path_parser.hpp
148
include/mapnik/svg/svg_points_grammar.hpp
293
include/mapnik/svg/svg_points_grammar.hpp
149
include/mapnik/svg/svg_renderer.hpp
294
include/mapnik/svg/svg_renderer_agg.hpp
150
include/mapnik/svg/svg_storage.hpp
295
include/mapnik/svg/svg_storage.hpp
151
include/mapnik/svg/svg_transform_grammar.hpp
296
include/mapnik/svg/svg_transform_grammar.hpp
152
include/mapnik/svg_renderer.hpp
153
include/mapnik/symbolizer.hpp
297
include/mapnik/symbolizer.hpp
298
include/mapnik/symbolizer_hash.hpp
154
include/mapnik/symbolizer_helpers.hpp
299
include/mapnik/symbolizer_helpers.hpp
155
include/mapnik/text_path.hpp
300
include/mapnik/text_path.hpp
156
include/mapnik/text_placements/base.hpp
301
include/mapnik/text_placements/base.hpp
Lines 170-203 Link Here
170
include/mapnik/util/conversions.hpp
315
include/mapnik/util/conversions.hpp
171
include/mapnik/util/dasharray_parser.hpp
316
include/mapnik/util/dasharray_parser.hpp
172
include/mapnik/util/deepcopy.hpp
317
include/mapnik/util/deepcopy.hpp
318
include/mapnik/util/fs.hpp
173
include/mapnik/util/geometry_svg_generator.hpp
319
include/mapnik/util/geometry_svg_generator.hpp
174
include/mapnik/util/geometry_to_ds_type.hpp
320
include/mapnik/util/geometry_to_ds_type.hpp
175
include/mapnik/util/geometry_to_svg.hpp
321
include/mapnik/util/geometry_to_svg.hpp
176
include/mapnik/util/geometry_to_wkb.hpp
322
include/mapnik/util/geometry_to_wkb.hpp
177
include/mapnik/util/geometry_to_wkt.hpp
323
include/mapnik/util/geometry_to_wkt.hpp
178
include/mapnik/util/geometry_wkt_generator.hpp
324
include/mapnik/util/geometry_wkt_generator.hpp
179
include/mapnik/util/vertex_iterator.hpp
325
include/mapnik/util/hsl.hpp
326
include/mapnik/util/path_iterator.hpp
327
include/mapnik/util/trim.hpp
180
include/mapnik/utils.hpp
328
include/mapnik/utils.hpp
181
include/mapnik/value.hpp
329
include/mapnik/value.hpp
182
include/mapnik/value_error.hpp
330
include/mapnik/value_error.hpp
331
include/mapnik/value_types.hpp
183
include/mapnik/version.hpp
332
include/mapnik/version.hpp
184
include/mapnik/vertex.hpp
333
include/mapnik/vertex.hpp
185
include/mapnik/vertex_converters.hpp
334
include/mapnik/vertex_converters.hpp
186
include/mapnik/vertex_vector.hpp
335
include/mapnik/vertex_vector.hpp
187
include/mapnik/warp.hpp
336
include/mapnik/warp.hpp
337
include/mapnik/well_known_srs.hpp
188
include/mapnik/wkb.hpp
338
include/mapnik/wkb.hpp
189
include/mapnik/wkt/wkt_factory.hpp
339
include/mapnik/wkt/wkt_factory.hpp
190
include/mapnik/wkt/wkt_grammar.hpp
340
include/mapnik/wkt/wkt_grammar.hpp
341
include/mapnik/xml_attribute_cast.hpp
191
include/mapnik/xml_loader.hpp
342
include/mapnik/xml_loader.hpp
192
include/mapnik/xml_node.hpp
343
include/mapnik/xml_node.hpp
193
include/mapnik/xml_tree.hpp
344
include/mapnik/xml_tree.hpp
194
lib/libmapnik.so
345
lib/libmapnik.so
195
lib/libmapnik.so.2
346
lib/libmapnik.so.2
196
lib/libmapnik.so.2.1
347
lib/libmapnik.so.2.2
348
lib/mapnik/fonts/DejaVuSans-Bold.ttf
349
lib/mapnik/fonts/DejaVuSans-BoldOblique.ttf
350
lib/mapnik/fonts/DejaVuSans-ExtraLight.ttf
351
lib/mapnik/fonts/DejaVuSans-Oblique.ttf
352
lib/mapnik/fonts/DejaVuSans.ttf
353
lib/mapnik/fonts/DejaVuSansCondensed-Bold.ttf
354
lib/mapnik/fonts/DejaVuSansCondensed-BoldOblique.ttf
355
lib/mapnik/fonts/DejaVuSansCondensed-Oblique.ttf
356
lib/mapnik/fonts/DejaVuSansCondensed.ttf
357
lib/mapnik/fonts/DejaVuSansMono-Bold.ttf
358
lib/mapnik/fonts/DejaVuSansMono-BoldOblique.ttf
359
lib/mapnik/fonts/DejaVuSansMono-Oblique.ttf
360
lib/mapnik/fonts/DejaVuSansMono.ttf
361
lib/mapnik/fonts/DejaVuSerif-Bold.ttf
362
lib/mapnik/fonts/DejaVuSerif-BoldItalic.ttf
363
lib/mapnik/fonts/DejaVuSerif-Italic.ttf
364
lib/mapnik/fonts/DejaVuSerif.ttf
365
lib/mapnik/fonts/DejaVuSerifCondensed-Bold.ttf
366
lib/mapnik/fonts/DejaVuSerifCondensed-BoldItalic.ttf
367
lib/mapnik/fonts/DejaVuSerifCondensed-Italic.ttf
368
lib/mapnik/fonts/DejaVuSerifCondensed.ttf
369
lib/mapnik/fonts/unifont-5.1.20080907.ttf
197
%%CSV%%lib/mapnik/input/csv.input
370
%%CSV%%lib/mapnik/input/csv.input
198
%%GDAL%%lib/mapnik/input/gdal.input
371
%%GDAL%%lib/mapnik/input/gdal.input
199
lib/mapnik/input/geojson.input
372
lib/mapnik/input/geojson.input
200
%%GEOS%%lib/mapnik/input/geos.input
201
%%OGR%%lib/mapnik/input/ogr.input
373
%%OGR%%lib/mapnik/input/ogr.input
202
%%OSM%%lib/mapnik/input/osm.input
374
%%OSM%%lib/mapnik/input/osm.input
203
%%POSTGIS%%lib/mapnik/input/postgis.input
375
%%POSTGIS%%lib/mapnik/input/postgis.input
Lines 205-232 Link Here
205
lib/mapnik/input/raster.input
377
lib/mapnik/input/raster.input
206
lib/mapnik/input/shape.input
378
lib/mapnik/input/shape.input
207
%%SQLITE%%lib/mapnik/input/sqlite.input
379
%%SQLITE%%lib/mapnik/input/sqlite.input
208
lib/mapnik/fonts/unifont-5.1.20080907.ttf
209
lib/mapnik/fonts/DejaVuSerif-BoldItalic.ttf
210
lib/mapnik/fonts/DejaVuSerifCondensed-BoldItalic.ttf
211
lib/mapnik/fonts/DejaVuSerif-Italic.ttf
212
lib/mapnik/fonts/DejaVuSerifCondensed-Italic.ttf
213
lib/mapnik/fonts/DejaVuSansMono-Oblique.ttf
214
lib/mapnik/fonts/DejaVuSerifCondensed-Bold.ttf
215
lib/mapnik/fonts/DejaVuSansCondensed-Oblique.ttf
216
lib/mapnik/fonts/DejaVuSansCondensed-Bold.ttf
217
lib/mapnik/fonts/DejaVuSans-Oblique.ttf
218
lib/mapnik/fonts/DejaVuSansCondensed.ttf
219
lib/mapnik/fonts/DejaVuSansMono-Bold.ttf
220
lib/mapnik/fonts/DejaVuSans.ttf
221
lib/mapnik/fonts/DejaVuSans-Bold.ttf
222
lib/mapnik/fonts/DejaVuSans-ExtraLight.ttf
223
lib/mapnik/fonts/DejaVuSerif.ttf
224
lib/mapnik/fonts/DejaVuSerifCondensed.ttf
225
lib/mapnik/fonts/DejaVuSansCondensed-BoldOblique.ttf
226
lib/mapnik/fonts/DejaVuSansMono-BoldOblique.ttf
227
lib/mapnik/fonts/DejaVuSans-BoldOblique.ttf
228
lib/mapnik/fonts/DejaVuSerif-Bold.ttf
229
lib/mapnik/fonts/DejaVuSansMono.ttf
230
%%PYTHON_SITELIBDIR%%/mapnik/__init__.py
380
%%PYTHON_SITELIBDIR%%/mapnik/__init__.py
231
%%PYTHON_SITELIBDIR%%/mapnik/printing.py
381
%%PYTHON_SITELIBDIR%%/mapnik/printing.py
232
%%PYTHON_SITELIBDIR%%/mapnik/paths.py
382
%%PYTHON_SITELIBDIR%%/mapnik/paths.py
Lines 237-247 Link Here
237
@dirrm lib/mapnik/input
387
@dirrm lib/mapnik/input
238
@dirrm lib/mapnik/fonts
388
@dirrm lib/mapnik/fonts
239
@dirrm lib/mapnik
389
@dirrm lib/mapnik
240
@dirrm include/mapnik/formatting
241
@dirrm include/mapnik/grid
242
@dirrm include/mapnik/json
243
@dirrm include/mapnik/svg
244
@dirrm include/mapnik/text_placements
245
@dirrm include/mapnik/util
246
@dirrm include/mapnik/wkt
390
@dirrm include/mapnik/wkt
391
@dirrm include/mapnik/util
392
@dirrm include/mapnik/text_placements
393
@dirrm include/mapnik/svg
394
@dirrm include/mapnik/sparsehash/internal
395
@dirrm include/mapnik/sparsehash
396
@dirrm include/mapnik/json
397
@dirrm include/mapnik/grid
398
@dirrm include/mapnik/formatting
399
@dirrm include/mapnik/agg
247
@dirrm include/mapnik
400
@dirrm include/mapnik

Return to bug 180274