cairo 1.14.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of cairo might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/AUTHORS +7 -0
- data/COPYING +59 -0
- data/GPL +340 -0
- data/Gemfile +5 -0
- data/NEWS +429 -0
- data/README.rdoc +120 -0
- data/Rakefile +620 -0
- data/ext/cairo/cairo.def +140 -0
- data/ext/cairo/depend +3 -0
- data/ext/cairo/extconf.rb +202 -0
- data/ext/cairo/rb_cairo.c +111 -0
- data/ext/cairo/rb_cairo.h +348 -0
- data/ext/cairo/rb_cairo_constants.c +673 -0
- data/ext/cairo/rb_cairo_context.c +1741 -0
- data/ext/cairo/rb_cairo_device.c +475 -0
- data/ext/cairo/rb_cairo_exception.c +446 -0
- data/ext/cairo/rb_cairo_font_extents.c +200 -0
- data/ext/cairo/rb_cairo_font_face.c +726 -0
- data/ext/cairo/rb_cairo_font_options.c +197 -0
- data/ext/cairo/rb_cairo_glyph.c +161 -0
- data/ext/cairo/rb_cairo_io.c +166 -0
- data/ext/cairo/rb_cairo_io.h +44 -0
- data/ext/cairo/rb_cairo_matrix.c +366 -0
- data/ext/cairo/rb_cairo_path.c +459 -0
- data/ext/cairo/rb_cairo_pattern.c +1192 -0
- data/ext/cairo/rb_cairo_private.c +255 -0
- data/ext/cairo/rb_cairo_private.h +129 -0
- data/ext/cairo/rb_cairo_rectangle.c +83 -0
- data/ext/cairo/rb_cairo_region.c +385 -0
- data/ext/cairo/rb_cairo_scaled_font.c +235 -0
- data/ext/cairo/rb_cairo_surface.c +2284 -0
- data/ext/cairo/rb_cairo_text_cluster.c +151 -0
- data/ext/cairo/rb_cairo_text_extents.c +221 -0
- data/lib/2.0/cairo.so +0 -0
- data/lib/2.1/cairo.so +0 -0
- data/lib/2.2/cairo.so +0 -0
- data/lib/cairo.rb +154 -0
- data/lib/cairo/color.rb +267 -0
- data/lib/cairo/colors.rb +656 -0
- data/lib/cairo/constants.rb +24 -0
- data/lib/cairo/context.rb +29 -0
- data/lib/cairo/context/blur.rb +45 -0
- data/lib/cairo/context/circle.rb +9 -0
- data/lib/cairo/context/color.rb +11 -0
- data/lib/cairo/context/path.rb +117 -0
- data/lib/cairo/context/rectangle.rb +33 -0
- data/lib/cairo/context/triangle.rb +12 -0
- data/lib/cairo/device.rb +13 -0
- data/lib/cairo/paper.rb +183 -0
- data/lib/cairo/papers.rb +65 -0
- data/lib/cairo/path.rb +15 -0
- data/lib/cairo/pattern.rb +12 -0
- data/lib/cairo/point.rb +7 -0
- data/lib/cairo/surface.rb +13 -0
- data/samples/agg/aa_test.rb +304 -0
- data/samples/blur.rb +46 -0
- data/samples/pac-nomralize.rb +170 -0
- data/samples/pac-tee.rb +170 -0
- data/samples/pac.rb +98 -0
- data/samples/png.rb +44 -0
- data/samples/scalable.rb +55 -0
- data/samples/text-on-path.rb +59 -0
- data/samples/text2.rb +130 -0
- data/test/cairo-test-utils.rb +44 -0
- data/test/run-test.rb +29 -0
- data/test/test_color.rb +17 -0
- data/test/test_constants.rb +27 -0
- data/test/test_context.rb +105 -0
- data/test/test_exception.rb +36 -0
- data/test/test_font_extents.rb +36 -0
- data/test/test_font_face.rb +257 -0
- data/test/test_font_options.rb +13 -0
- data/test/test_image_surface.rb +28 -0
- data/test/test_paper.rb +81 -0
- data/test/test_quartz_image_surface.rb +13 -0
- data/test/test_raster_source_pattern.rb +162 -0
- data/test/test_recording_surface.rb +19 -0
- data/test/test_region.rb +102 -0
- data/test/test_scaled_font.rb +34 -0
- data/test/test_script_device.rb +46 -0
- data/test/test_script_surface.rb +13 -0
- data/test/test_surface.rb +61 -0
- data/test/test_tee_surface.rb +32 -0
- data/test/test_text_cluster.rb +32 -0
- data/test/test_text_extents.rb +40 -0
- data/test/test_text_to_glyphs_data.rb +51 -0
- data/test/test_xml_device.rb +22 -0
- data/test/test_xml_surface.rb +34 -0
- data/vendor/local/bin/fc-cache.exe +0 -0
- data/vendor/local/bin/fc-cat.exe +0 -0
- data/vendor/local/bin/fc-list.exe +0 -0
- data/vendor/local/bin/fc-match.exe +0 -0
- data/vendor/local/bin/fc-pattern.exe +0 -0
- data/vendor/local/bin/fc-query.exe +0 -0
- data/vendor/local/bin/fc-scan.exe +0 -0
- data/vendor/local/bin/fc-validate.exe +0 -0
- data/vendor/local/bin/freetype-config +163 -0
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
- data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
- data/vendor/local/bin/libfontconfig-1.dll +0 -0
- data/vendor/local/bin/libfreetype-6.dll +0 -0
- data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
- data/vendor/local/bin/libpixman-1-0.dll +0 -0
- data/vendor/local/bin/libpng-config +127 -0
- data/vendor/local/bin/libpng16-16.dll +0 -0
- data/vendor/local/bin/libpng16-config +127 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/png-fix-itxt.exe +0 -0
- data/vendor/local/bin/pngfix.exe +0 -0
- data/vendor/local/bin/xml2-config +106 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/fonts/conf.d/10-scale-bitmap-fonts.conf +81 -0
- data/vendor/local/etc/fonts/conf.d/20-unhint-small-vera.conf +48 -0
- data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +546 -0
- data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +24 -0
- data/vendor/local/etc/fonts/conf.d/40-nonlatin.conf +231 -0
- data/vendor/local/etc/fonts/conf.d/45-latin.conf +189 -0
- data/vendor/local/etc/fonts/conf.d/49-sansserif.conf +21 -0
- data/vendor/local/etc/fonts/conf.d/50-user.conf +15 -0
- data/vendor/local/etc/fonts/conf.d/51-local.conf +6 -0
- data/vendor/local/etc/fonts/conf.d/60-latin.conf +70 -0
- data/vendor/local/etc/fonts/conf.d/65-fonts-persian.conf +419 -0
- data/vendor/local/etc/fonts/conf.d/65-nonlatin.conf +196 -0
- data/vendor/local/etc/fonts/conf.d/69-unifont.conf +28 -0
- data/vendor/local/etc/fonts/conf.d/80-delicious.conf +19 -0
- data/vendor/local/etc/fonts/conf.d/90-synthetic.conf +64 -0
- data/vendor/local/etc/fonts/conf.d/README +23 -0
- data/vendor/local/etc/fonts/fonts.conf +155 -0
- data/vendor/local/include/cairo/cairo-deprecated.h +123 -0
- data/vendor/local/include/cairo/cairo-features.h +31 -0
- data/vendor/local/include/cairo/cairo-ft.h +118 -0
- data/vendor/local/include/cairo/cairo-gobject.h +192 -0
- data/vendor/local/include/cairo/cairo-pdf.h +94 -0
- data/vendor/local/include/cairo/cairo-ps.h +116 -0
- data/vendor/local/include/cairo/cairo-script-interpreter.h +124 -0
- data/vendor/local/include/cairo/cairo-script.h +98 -0
- data/vendor/local/include/cairo/cairo-svg.h +84 -0
- data/vendor/local/include/cairo/cairo-version.h +8 -0
- data/vendor/local/include/cairo/cairo-win32.h +112 -0
- data/vendor/local/include/cairo/cairo.h +3153 -0
- data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
- data/vendor/local/include/fontconfig/fcprivate.h +124 -0
- data/vendor/local/include/fontconfig/fontconfig.h +1010 -0
- data/vendor/local/include/freetype2/config/ftconfig.h +706 -0
- data/vendor/local/include/freetype2/config/ftheader.h +832 -0
- data/vendor/local/include/freetype2/config/ftmodule.h +20 -0
- data/vendor/local/include/freetype2/config/ftoption.h +846 -0
- data/vendor/local/include/freetype2/config/ftstdlib.h +174 -0
- data/vendor/local/include/freetype2/freetype.h +4076 -0
- data/vendor/local/include/freetype2/ft2build.h +42 -0
- data/vendor/local/include/freetype2/ftadvanc.h +182 -0
- data/vendor/local/include/freetype2/ftautoh.h +402 -0
- data/vendor/local/include/freetype2/ftbbox.h +102 -0
- data/vendor/local/include/freetype2/ftbdf.h +210 -0
- data/vendor/local/include/freetype2/ftbitmap.h +227 -0
- data/vendor/local/include/freetype2/ftbzip2.h +102 -0
- data/vendor/local/include/freetype2/ftcache.h +1057 -0
- data/vendor/local/include/freetype2/ftcffdrv.h +254 -0
- data/vendor/local/include/freetype2/ftchapters.h +121 -0
- data/vendor/local/include/freetype2/ftcid.h +166 -0
- data/vendor/local/include/freetype2/fterrdef.h +249 -0
- data/vendor/local/include/freetype2/fterrors.h +198 -0
- data/vendor/local/include/freetype2/ftgasp.h +128 -0
- data/vendor/local/include/freetype2/ftglyph.h +620 -0
- data/vendor/local/include/freetype2/ftgxval.h +358 -0
- data/vendor/local/include/freetype2/ftgzip.h +149 -0
- data/vendor/local/include/freetype2/ftimage.h +1322 -0
- data/vendor/local/include/freetype2/ftincrem.h +353 -0
- data/vendor/local/include/freetype2/ftlcdfil.h +251 -0
- data/vendor/local/include/freetype2/ftlist.h +277 -0
- data/vendor/local/include/freetype2/ftlzw.h +99 -0
- data/vendor/local/include/freetype2/ftmac.h +274 -0
- data/vendor/local/include/freetype2/ftmm.h +377 -0
- data/vendor/local/include/freetype2/ftmodapi.h +641 -0
- data/vendor/local/include/freetype2/ftmoderr.h +194 -0
- data/vendor/local/include/freetype2/ftotval.h +203 -0
- data/vendor/local/include/freetype2/ftoutln.h +572 -0
- data/vendor/local/include/freetype2/ftpfr.h +172 -0
- data/vendor/local/include/freetype2/ftrender.h +238 -0
- data/vendor/local/include/freetype2/ftsizes.h +159 -0
- data/vendor/local/include/freetype2/ftsnames.h +200 -0
- data/vendor/local/include/freetype2/ftstroke.h +751 -0
- data/vendor/local/include/freetype2/ftsynth.h +81 -0
- data/vendor/local/include/freetype2/ftsystem.h +347 -0
- data/vendor/local/include/freetype2/fttrigon.h +350 -0
- data/vendor/local/include/freetype2/ftttdrv.h +170 -0
- data/vendor/local/include/freetype2/fttypes.h +598 -0
- data/vendor/local/include/freetype2/ftwinfnt.h +275 -0
- data/vendor/local/include/freetype2/ftxf86.h +83 -0
- data/vendor/local/include/freetype2/t1tables.h +662 -0
- data/vendor/local/include/freetype2/ttnameid.h +1237 -0
- data/vendor/local/include/freetype2/tttables.h +787 -0
- data/vendor/local/include/freetype2/tttags.h +111 -0
- data/vendor/local/include/freetype2/ttunpat.h +59 -0
- data/vendor/local/include/libpng16/png.h +3276 -0
- data/vendor/local/include/libpng16/pngconf.h +644 -0
- data/vendor/local/include/libpng16/pnglibconf.h +208 -0
- data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
- data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
- data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
- data/vendor/local/include/libxml2/libxml/SAX2.h +178 -0
- data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
- data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
- data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
- data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
- data/vendor/local/include/libxml2/libxml/dict.h +80 -0
- data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
- data/vendor/local/include/libxml2/libxml/entities.h +151 -0
- data/vendor/local/include/libxml2/libxml/globals.h +509 -0
- data/vendor/local/include/libxml2/libxml/hash.h +233 -0
- data/vendor/local/include/libxml2/libxml/list.h +137 -0
- data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
- data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
- data/vendor/local/include/libxml2/libxml/parser.h +1241 -0
- data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
- data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
- data/vendor/local/include/libxml2/libxml/relaxng.h +217 -0
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
- data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
- data/vendor/local/include/libxml2/libxml/threads.h +84 -0
- data/vendor/local/include/libxml2/libxml/tree.h +1310 -0
- data/vendor/local/include/libxml2/libxml/uri.h +94 -0
- data/vendor/local/include/libxml2/libxml/valid.h +458 -0
- data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
- data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
- data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
- data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
- data/vendor/local/include/libxml2/libxml/xmlerror.h +945 -0
- data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
- data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
- data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
- data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
- data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
- data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
- data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
- data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
- data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
- data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
- data/vendor/local/include/libxml2/libxml/xmlversion.h +489 -0
- data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
- data/vendor/local/include/libxml2/libxml/xpath.h +557 -0
- data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
- data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
- data/vendor/local/include/pixman-1/pixman-version.h +50 -0
- data/vendor/local/include/pixman-1/pixman.h +1111 -0
- data/vendor/local/include/png.h +3276 -0
- data/vendor/local/include/pngconf.h +644 -0
- data/vendor/local/include/pnglibconf.h +208 -0
- data/vendor/local/include/zconf.h +511 -0
- data/vendor/local/include/zlib.h +1768 -0
- data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +50 -0
- data/vendor/local/lib/fontconfig.def +207 -0
- data/vendor/local/lib/libcairo-gobject.a +0 -0
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-gobject.la +41 -0
- data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.la +41 -0
- data/vendor/local/lib/libcairo.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libcairo.la +41 -0
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.la +41 -0
- data/vendor/local/lib/libfreetype.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libfreetype.la +41 -0
- data/vendor/local/lib/libpixman-1.a +0 -0
- data/vendor/local/lib/libpixman-1.dll.a +0 -0
- data/vendor/local/lib/libpixman-1.la +41 -0
- data/vendor/local/lib/libpng.a +0 -0
- data/vendor/local/lib/libpng.dll.a +0 -0
- data/vendor/local/lib/libpng.la +41 -0
- data/vendor/local/lib/libpng16.a +0 -0
- data/vendor/local/lib/libpng16.dll.a +0 -0
- data/vendor/local/lib/libpng16.la +41 -0
- data/vendor/local/lib/libxml2.a +0 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.la +41 -0
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-png.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-script.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo.pc +13 -0
- data/vendor/local/lib/pkgconfig/fontconfig.pc +18 -0
- data/vendor/local/lib/pkgconfig/freetype2.pc +14 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng16.pc +11 -0
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/pixman-1.pc +11 -0
- data/vendor/local/lib/pkgconfig/zlib.pc +13 -0
- data/vendor/local/lib/xml2Conf.sh +8 -0
- data/vendor/local/share/aclocal/freetype2.m4 +194 -0
- data/vendor/local/share/aclocal/libxml.m4 +188 -0
- data/vendor/local/share/doc/libxml2-2.9.2/Copyright +23 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testHTML.c +880 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testSAX.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testXPath.c +229 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/xmllint.c +3801 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/DOM.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/FAQ.html +299 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/encoding.html +217 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xml +751 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xsl +174 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/book1.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/index.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/left.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-DOCBparser.html +51 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLparser.html +184 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLtree.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX.html +125 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX2.html +128 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-c14n.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-catalog.html +142 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-chvalid.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-debugXML.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-dict.html +58 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-encoding.html +124 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-entities.html +79 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-globals.html +152 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-hash.html +116 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-lib.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-list.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanoftp.html +94 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanohttp.html +65 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parser.html +559 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parserInternals.html +322 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-pattern.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-relaxng.html +162 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schemasInternals.html +373 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schematron.html +81 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-threads.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-tree.html +990 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-uri.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-valid.html +289 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xinclude.html +59 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xlink.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlIO.html +212 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlautomata.html +85 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlerror.html +865 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlexports.html +20 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmemory.html +107 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmodule.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlreader.html +330 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlregexp.html +143 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlsave.html +60 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemas.html +185 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemastypes.html +123 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlstring.html +108 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlunicode.html +512 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlversion.html +63 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlwriter.html +261 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpath.html +316 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpathInternals.html +394 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpointer.html +83 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xzlib.html +16 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/right.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io1.c +166 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io2.c +58 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io2.res +2 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/libxml.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse1.c +56 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse2.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse3.c +60 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse4.c +143 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.c +107 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.res +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader2.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.c +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.res +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.res +3 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/redhat.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/structure.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test1.xml +1 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test2.xml +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test3.xml +39 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/testWriter.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.c +94 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.res +4 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.c +118 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.res +18 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tst.xml +7 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apa.html +8 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apb.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apc.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apd.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ape.html +78 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apf.html +67 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apg.html +75 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/aph.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/api.html +4 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s02.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s03.html +47 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s04.html +54 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s05.html +55 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s06.html +35 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s07.html +30 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s08.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s09.html +63 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddattribute.c +64 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddkeyword.c +75 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeconvert.c +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includegetattribute.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includekeyword.c +79 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includexpath.c +74 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ix01.html +1 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/xmltutorial.pdf +1336 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/w3c.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/writer.xml +2 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xml.html +5995 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.c +250 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.c +190 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.res +30 -0
- data/vendor/local/share/fontconfig/conf.avail/10-autohint.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-no-sub-pixel.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf +81 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-unhinted.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-default.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-light.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/20-unhint-small-vera.conf +48 -0
- data/vendor/local/share/fontconfig/conf.avail/25-unhint-nonlatin.conf +128 -0
- data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +546 -0
- data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +24 -0
- data/vendor/local/share/fontconfig/conf.avail/40-nonlatin.conf +231 -0
- data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +189 -0
- data/vendor/local/share/fontconfig/conf.avail/49-sansserif.conf +21 -0
- data/vendor/local/share/fontconfig/conf.avail/50-user.conf +15 -0
- data/vendor/local/share/fontconfig/conf.avail/51-local.conf +6 -0
- data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +70 -0
- data/vendor/local/share/fontconfig/conf.avail/65-fonts-persian.conf +419 -0
- data/vendor/local/share/fontconfig/conf.avail/65-khmer.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/65-nonlatin.conf +196 -0
- data/vendor/local/share/fontconfig/conf.avail/69-unifont.conf +28 -0
- data/vendor/local/share/fontconfig/conf.avail/70-no-bitmaps.conf +12 -0
- data/vendor/local/share/fontconfig/conf.avail/70-yes-bitmaps.conf +12 -0
- data/vendor/local/share/fontconfig/conf.avail/80-delicious.conf +19 -0
- data/vendor/local/share/fontconfig/conf.avail/90-synthetic.conf +64 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +122 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +123 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +121 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +117 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +75 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +120 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +92 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +93 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +397 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +428 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +452 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +342 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +315 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1194 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +577 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +129 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +197 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +600 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +226 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +810 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +302 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +360 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +394 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +156 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +677 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +342 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +326 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +280 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +527 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +535 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +170 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +636 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +380 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +653 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +559 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +2231 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +956 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1637 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2695 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +44 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +74 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +1138 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +747 -0
- data/vendor/local/share/gtk-doc/html/cairo/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +177 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +193 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +179 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +123 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +107 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +128 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +1122 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.html +157 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +833 -0
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +73 -0
- data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/cairo/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
- data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
- data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1597 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +953 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +292 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +542 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3573 -0
- data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
- data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
- data/vendor/local/share/license/cairo/AUTHORS +115 -0
- data/vendor/local/share/license/cairo/COPYING +33 -0
- data/vendor/local/share/license/cairo/COPYING-LGPL-2.1 +510 -0
- data/vendor/local/share/license/cairo/COPYING-MPL-1.1 +470 -0
- data/vendor/local/share/license/cairo/README +204 -0
- data/vendor/local/share/license/cairo/README.win32 +66 -0
- data/vendor/local/share/license/fontconfig/AUTHORS +3 -0
- data/vendor/local/share/license/fontconfig/COPYING +28 -0
- data/vendor/local/share/license/fontconfig/README +1484 -0
- data/vendor/local/share/license/freetype/README +83 -0
- data/vendor/local/share/license/freetype/README.git +50 -0
- data/vendor/local/share/license/libpng/README +215 -0
- data/vendor/local/share/license/libxml2/AUTHORS +5 -0
- data/vendor/local/share/license/libxml2/COPYING +23 -0
- data/vendor/local/share/license/libxml2/README +39 -0
- data/vendor/local/share/license/libxml2/README.tests +39 -0
- data/vendor/local/share/license/pixman/AUTHORS +0 -0
- data/vendor/local/share/license/pixman/COPYING +42 -0
- data/vendor/local/share/license/pixman/README +116 -0
- data/vendor/local/share/license/zlib/README +115 -0
- data/vendor/local/share/man/man1/freetype-config.1 +108 -0
- data/vendor/local/share/man/man1/xml2-config.1 +30 -0
- data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
- data/vendor/local/share/man/man1/xmllint.1 +647 -0
- data/vendor/local/share/man/man3/libpng.3 +6217 -0
- data/vendor/local/share/man/man3/libpngpf.3 +18 -0
- data/vendor/local/share/man/man3/libxml.3 +71 -0
- data/vendor/local/share/man/man5/png.5 +74 -0
- data/vendor/local/share/xml/fontconfig/fonts.dtd +233 -0
- metadata +774 -0
data/README.rdoc
ADDED
@@ -0,0 +1,120 @@
|
|
1
|
+
= README
|
2
|
+
|
3
|
+
== Name
|
4
|
+
|
5
|
+
rcairo
|
6
|
+
|
7
|
+
== Description
|
8
|
+
|
9
|
+
Ruby bindings for cairo // cairo extension for Ruby
|
10
|
+
|
11
|
+
http://cairographics.org/
|
12
|
+
|
13
|
+
== Dependencies
|
14
|
+
|
15
|
+
* ruby >= 1.9.3 (2.2 also supported!)
|
16
|
+
* cairo >= 1.2.0 (1.12.0 also supported!)
|
17
|
+
|
18
|
+
== Install
|
19
|
+
|
20
|
+
=== Package
|
21
|
+
|
22
|
+
This way is recommended.
|
23
|
+
|
24
|
+
# gem install cairo
|
25
|
+
|
26
|
+
=== Self build
|
27
|
+
|
28
|
+
For experimental users.
|
29
|
+
|
30
|
+
Download rcairo-X.Y.Z.tar.gz from http://cairographics.org/releases/
|
31
|
+
|
32
|
+
Extracting:
|
33
|
+
% tar xvzf rcairo-X.Y.Z.tar.gz
|
34
|
+
|
35
|
+
Compiling:
|
36
|
+
% cd rcairo-X.Y.Z
|
37
|
+
% ruby extconf.rb # to check for dependencies and create Makefiles
|
38
|
+
% make # to compile
|
39
|
+
|
40
|
+
# make install # to install the cairo extension.
|
41
|
+
# The samples in the samples folder should be able
|
42
|
+
# to run before installation except text-on-path.rb
|
43
|
+
# and text2.rb. They uses Ruby/Pango with rcairo
|
44
|
+
# support. So you need to install rcairo and build
|
45
|
+
# Ruby/Pango with it before you run them.
|
46
|
+
|
47
|
+
Options to extconf.rb:
|
48
|
+
|
49
|
+
* --without-vendor-override: Use system libraries instead of those found in
|
50
|
+
vendor/local for compiling
|
51
|
+
|
52
|
+
== Windows
|
53
|
+
|
54
|
+
cairo-X.Y.Z-x86-mingw32.gem includes cairo related binaries.
|
55
|
+
|
56
|
+
* cairo related binaries:
|
57
|
+
http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/
|
58
|
+
|
59
|
+
* cairo-X.Y.Z-a_win32.zip
|
60
|
+
* cairo-dev-X.Y.Z-a_win32.zip
|
61
|
+
* libpng-X.Y.Z-a_win32.zip
|
62
|
+
* zlib-X.Y.Z-a_win32.zip
|
63
|
+
* expat_X.Y.Z-a_win32.zip
|
64
|
+
* fontconfig_X.Y.Z-a_win32.zip
|
65
|
+
* freetype_X.Y.Z-a_win32.zip
|
66
|
+
|
67
|
+
== Documents
|
68
|
+
|
69
|
+
* Reference manual:
|
70
|
+
http://rcairo.github.io/doc/
|
71
|
+
* Repository of the reference manual:
|
72
|
+
http://github.com/rcairo/doc
|
73
|
+
* An article for rcairo on Rubyst Magazine a.k.a. RubiMa (in Japanese):
|
74
|
+
http://jp.rubyist.net/magazine/?0019-cairo
|
75
|
+
|
76
|
+
== Source
|
77
|
+
|
78
|
+
There is the rcairo repository at GitHub:
|
79
|
+
http://github.com/rcairo/rcairo
|
80
|
+
|
81
|
+
== Mailing list
|
82
|
+
|
83
|
+
If you have trouble with cairo or rcairo, or you have some ideas for how
|
84
|
+
it could be improved, please feel free to send a message to the cairo
|
85
|
+
mailinglist at cairo@cairographics.org , which is archived at
|
86
|
+
|
87
|
+
http://cairographics.org/cgi-bin/mailman/listinfo/cairo
|
88
|
+
|
89
|
+
== Thanks
|
90
|
+
|
91
|
+
* Yoshinao Muramatsu: win32 surface support patch.
|
92
|
+
* NANKI Haruo: some bug fix patches.
|
93
|
+
* Paul van Tilburg:
|
94
|
+
* some patches that support ruby 1.9.
|
95
|
+
* some suggestions.
|
96
|
+
* Binzo: some bug reports and fixed that.
|
97
|
+
* kimura wataru:
|
98
|
+
* some advices for RubyCocoa.
|
99
|
+
* reports a bug.
|
100
|
+
* OBATA Akio:
|
101
|
+
* reports a bug.
|
102
|
+
* some suggestions.
|
103
|
+
* James Healy: reports bugs.
|
104
|
+
* Carsten Bormann: A suggestion.
|
105
|
+
* Davide Rambaldi: A suggestion.
|
106
|
+
* Yusuke ENDOH: reports a bug.
|
107
|
+
* Yuta Taniguchi: a bug fix patch.
|
108
|
+
* kimura wataru:
|
109
|
+
* reports a bug.
|
110
|
+
* some patches.
|
111
|
+
* Masayas TARUI:
|
112
|
+
* Windows support.
|
113
|
+
* Stefan Salewski: reports a bug.
|
114
|
+
* Mamoru Tasaka: reports bugs.
|
115
|
+
* Nikolai Weibull: reports problems.
|
116
|
+
* Will Bryant: reports a bug.
|
117
|
+
* Vasily Fedoseyev: fixes a bug.
|
118
|
+
* Eric C.: reports a bug.
|
119
|
+
* Cédric Boutillier: reports a bug.
|
120
|
+
* tmtms: reports a bug.
|
data/Rakefile
ADDED
@@ -0,0 +1,620 @@
|
|
1
|
+
# -*- coding: utf-8; mode: ruby -*-
|
2
|
+
|
3
|
+
require "English"
|
4
|
+
|
5
|
+
require "find"
|
6
|
+
require "fileutils"
|
7
|
+
require "open-uri"
|
8
|
+
require "rubygems"
|
9
|
+
require "rubygems/package_task"
|
10
|
+
require "yard"
|
11
|
+
require "bundler/gem_helper"
|
12
|
+
require "rake/extensiontask"
|
13
|
+
require "packnga"
|
14
|
+
|
15
|
+
base_dir = File.join(File.dirname(__FILE__))
|
16
|
+
|
17
|
+
cairo_ext_dir = File.join(base_dir, "ext", "cairo")
|
18
|
+
cairo_lib_dir = File.join(base_dir, "lib")
|
19
|
+
$LOAD_PATH.unshift(cairo_ext_dir)
|
20
|
+
$LOAD_PATH.unshift(cairo_lib_dir)
|
21
|
+
ENV["RUBYLIB"] = "#{cairo_lib_dir}:#{cairo_ext_dir}:#{ENV['RUBYLIB']}"
|
22
|
+
|
23
|
+
helper = Bundler::GemHelper.new(base_dir)
|
24
|
+
helper.install
|
25
|
+
spec = helper.gemspec
|
26
|
+
|
27
|
+
Gem::PackageTask.new(spec) do |pkg|
|
28
|
+
pkg.need_tar_gz = true
|
29
|
+
end
|
30
|
+
|
31
|
+
Packnga::DocumentTask.new(spec) do |task|
|
32
|
+
task.original_language = "en"
|
33
|
+
task.translate_languages = ["ja"]
|
34
|
+
end
|
35
|
+
|
36
|
+
Packnga::ReleaseTask.new(spec) do |task|
|
37
|
+
end
|
38
|
+
|
39
|
+
module RCairoBuild
|
40
|
+
class << self
|
41
|
+
def for_64bit?
|
42
|
+
ENV["RCAIRO_WINDOWS_64"] == "yes"
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
binary_dir = File.join("vendor", "local")
|
48
|
+
Rake::ExtensionTask.new("cairo", spec) do |ext|
|
49
|
+
if RCairoBuild.for_64bit?
|
50
|
+
ext.cross_platform = ["x64-mingw32"]
|
51
|
+
else
|
52
|
+
ext.cross_platform = ["x86-mingw32"]
|
53
|
+
end
|
54
|
+
ext.cross_compile = true
|
55
|
+
ext.cross_compiling do |_spec|
|
56
|
+
if /mingw|mswin/ =~ _spec.platform.to_s
|
57
|
+
binary_files = []
|
58
|
+
Find.find(binary_dir) do |name|
|
59
|
+
next unless File.file?(name)
|
60
|
+
next if /\.zip\z/i =~ name
|
61
|
+
binary_files << name
|
62
|
+
end
|
63
|
+
_spec.files += binary_files
|
64
|
+
|
65
|
+
stage_path = "#{ext.tmp_dir}/#{_spec.platform}/stage"
|
66
|
+
binary_files.each do |binary_file|
|
67
|
+
stage_binary_file = "#{stage_path}/#{binary_file}"
|
68
|
+
stage_binary_dir = File.dirname(stage_binary_file)
|
69
|
+
directory stage_binary_dir
|
70
|
+
file stage_binary_file => [stage_binary_dir, binary_file] do
|
71
|
+
cp(binary_file, stage_binary_file)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
class Package < Struct.new(:name,
|
79
|
+
:label,
|
80
|
+
:version,
|
81
|
+
:compression_method,
|
82
|
+
:download_site,
|
83
|
+
:download_base_url,
|
84
|
+
:windows)
|
85
|
+
def initialize(parameters)
|
86
|
+
super()
|
87
|
+
parameters.each do |key, value|
|
88
|
+
__send__("#{key}=", value)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
def label
|
93
|
+
super || name
|
94
|
+
end
|
95
|
+
|
96
|
+
def base_name
|
97
|
+
"#{name}-#{version}"
|
98
|
+
end
|
99
|
+
|
100
|
+
def compression_method
|
101
|
+
super || "xz"
|
102
|
+
end
|
103
|
+
|
104
|
+
def archive_path
|
105
|
+
"#{base_name}.tar.#{compression_method}"
|
106
|
+
end
|
107
|
+
|
108
|
+
def archive_url
|
109
|
+
"#{download_base_url}/#{archive_path}"
|
110
|
+
end
|
111
|
+
|
112
|
+
def download_base_url
|
113
|
+
super || download_site_base_url
|
114
|
+
end
|
115
|
+
|
116
|
+
def download_site_base_url
|
117
|
+
case download_site
|
118
|
+
when :cairo
|
119
|
+
base_url = "http://cairographics.org/releases"
|
120
|
+
when :gnome
|
121
|
+
base_url = "http://ftp.gnome.org/pub/gnome/sources"
|
122
|
+
release_series = version.gsub(/\A(\d+\.\d+).+\z/, '\1')
|
123
|
+
base_url << "/#{name}/#{release_series}"
|
124
|
+
else
|
125
|
+
base_url = nil
|
126
|
+
end
|
127
|
+
base_url
|
128
|
+
end
|
129
|
+
|
130
|
+
def windows
|
131
|
+
Windows.new(super || {})
|
132
|
+
end
|
133
|
+
|
134
|
+
class Windows < Struct.new(:builder,
|
135
|
+
:build_host,
|
136
|
+
:configure_args,
|
137
|
+
:built_file,
|
138
|
+
:patches,
|
139
|
+
:need_autoreconf)
|
140
|
+
def initialize(parameters)
|
141
|
+
super()
|
142
|
+
parameters.each do |key, value|
|
143
|
+
__send__("#{key}=", value)
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
def build_host
|
148
|
+
if RCairoBuild.for_64bit?
|
149
|
+
"x86_64-w64-mingw32"
|
150
|
+
else
|
151
|
+
"i686-w64-mingw32"
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
def configure_args
|
156
|
+
super || []
|
157
|
+
end
|
158
|
+
|
159
|
+
def patches
|
160
|
+
super || []
|
161
|
+
end
|
162
|
+
|
163
|
+
def need_autoreconf?
|
164
|
+
need_autoreconf
|
165
|
+
end
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
class WindowsTask
|
170
|
+
include Rake::DSL
|
171
|
+
|
172
|
+
def initialize(spec, base_dir=".")
|
173
|
+
@spec = spec
|
174
|
+
@base_dir = Pathname.new(base_dir).expand_path
|
175
|
+
yield(self)
|
176
|
+
end
|
177
|
+
|
178
|
+
def define
|
179
|
+
define_download_task
|
180
|
+
end
|
181
|
+
|
182
|
+
def packages=(packages)
|
183
|
+
@packages = packages.collect do |parameters|
|
184
|
+
Package.new(parameters)
|
185
|
+
end
|
186
|
+
end
|
187
|
+
|
188
|
+
private
|
189
|
+
def define_download_task
|
190
|
+
define_gcc_task
|
191
|
+
define_source_download_task
|
192
|
+
define_build_task
|
193
|
+
end
|
194
|
+
|
195
|
+
def define_gcc_task
|
196
|
+
namespace :windows do
|
197
|
+
namespace :gcc do
|
198
|
+
namespace :dll do
|
199
|
+
binary_path = install_dir + "bin"
|
200
|
+
directory binary_path.to_s
|
201
|
+
desc "Bundle GCC related DLLs"
|
202
|
+
task :bundle => binary_path do
|
203
|
+
dll_names = [
|
204
|
+
"libstdc++-6.dll",
|
205
|
+
"libwinpthread-1.dll",
|
206
|
+
"libgcc_s_sjlj-1.dll",
|
207
|
+
"libgcc_s_seh-1.dll",
|
208
|
+
]
|
209
|
+
dll_names.each do |dll_name|
|
210
|
+
destination_path = binary_path + dll_name
|
211
|
+
dll_path = absolete_gcc_dll_path(dll_name)
|
212
|
+
unless File.exist?(dll_path)
|
213
|
+
puts("#{dll_name} doesn't exist.")
|
214
|
+
next
|
215
|
+
end
|
216
|
+
cp(dll_path, destination_path)
|
217
|
+
chmod(0755, destination_path)
|
218
|
+
end
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|
222
|
+
end
|
223
|
+
end
|
224
|
+
|
225
|
+
def absolete_gcc_dll_path(dll_name)
|
226
|
+
build_host = @packages.first.windows.build_host
|
227
|
+
`#{build_host}-gcc -print-file-name=#{dll_name}`.strip
|
228
|
+
end
|
229
|
+
|
230
|
+
def define_source_download_task
|
231
|
+
namespace :source do
|
232
|
+
tasks = []
|
233
|
+
@packages.each do |package|
|
234
|
+
namespace package.name do
|
235
|
+
archive_path = downloaded_archive_path(package)
|
236
|
+
file archive_path.to_s do
|
237
|
+
mkdir_p(archive_path.dirname.to_s)
|
238
|
+
download(package, archive_path)
|
239
|
+
end
|
240
|
+
|
241
|
+
desc "Download #{package.name} source"
|
242
|
+
task :download => archive_path.to_s
|
243
|
+
tasks << join_task_name(Rake.application.current_scope, "download")
|
244
|
+
end
|
245
|
+
end
|
246
|
+
desc "Download sources"
|
247
|
+
task :download => tasks
|
248
|
+
end
|
249
|
+
end
|
250
|
+
|
251
|
+
def download(package, archive_path)
|
252
|
+
rake_output_message "Downloading... #{package.archive_url}"
|
253
|
+
open(package.archive_url) do |downloaded_archive|
|
254
|
+
begin
|
255
|
+
archive_path.open("wb") do |archive_file|
|
256
|
+
buffer = ""
|
257
|
+
while downloaded_archive.read(4096, buffer)
|
258
|
+
archive_file.print(buffer)
|
259
|
+
end
|
260
|
+
end
|
261
|
+
rescue Exception
|
262
|
+
rm_rf(archive_path.to_s)
|
263
|
+
raise
|
264
|
+
end
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
268
|
+
def define_build_task
|
269
|
+
namespace :windows do
|
270
|
+
tasks = []
|
271
|
+
@packages.each do |package|
|
272
|
+
namespace package.name do
|
273
|
+
built_file = install_dir + package.windows.built_file
|
274
|
+
file built_file.to_s do
|
275
|
+
Rake::Task["source:#{package.name}:download"].invoke
|
276
|
+
build(package)
|
277
|
+
end
|
278
|
+
|
279
|
+
desc "Build #{package.label} package"
|
280
|
+
task :build => built_file.to_s
|
281
|
+
tasks << join_task_name(Rake.application.current_scope, "build")
|
282
|
+
end
|
283
|
+
end
|
284
|
+
desc "Build packages"
|
285
|
+
task :build => ["windows:gcc:dll:bundle"] + tasks
|
286
|
+
end
|
287
|
+
end
|
288
|
+
|
289
|
+
def join_task_name(current_scope, task_name)
|
290
|
+
if Rake.const_defined?(:Scope)
|
291
|
+
current_scope.path_with_task_name(task_name)
|
292
|
+
else
|
293
|
+
(current_scope + [task_name]).join(":")
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
def build(package)
|
298
|
+
ENV["PATH"] = ["#{install_dir}/bin", ENV["PATH"]].join(File::PATH_SEPARATOR)
|
299
|
+
ENV["PKG_CONFIG_LIBDIR"] = "#{install_dir}/lib/pkgconfig"
|
300
|
+
ENV["PKG_CONFIG_PATH"] = [
|
301
|
+
ruby_glib2_pkg_config_path,
|
302
|
+
].join(":")
|
303
|
+
|
304
|
+
package_build_dir = build_dir + package.name
|
305
|
+
rm_rf(package_build_dir.to_s)
|
306
|
+
mkdir_p(package_build_dir.to_s)
|
307
|
+
|
308
|
+
archive_path = downloaded_archive_path(package).expand_path
|
309
|
+
|
310
|
+
Dir.chdir(package_build_dir.to_s) do
|
311
|
+
sh("tar", "xf", archive_path.to_s)
|
312
|
+
Dir.chdir(package.base_name.to_s) do
|
313
|
+
package.windows.patches.each do |patch|
|
314
|
+
sh("patch", "-p1", "--input", (patches_dir + patch).to_s)
|
315
|
+
end
|
316
|
+
sh("autoreconf", "--install") if package.windows.need_autoreconf?
|
317
|
+
custom_builder = package.windows.builder
|
318
|
+
if custom_builder
|
319
|
+
custom_builder.build(package, install_dir)
|
320
|
+
else
|
321
|
+
build_with_gnu_build_system(package)
|
322
|
+
end
|
323
|
+
package_license_dir = license_dir + package.name
|
324
|
+
package_license_files = Dir.glob("{README*,AUTHORS,COPYING*}")
|
325
|
+
mkdir_p(package_license_dir.to_s)
|
326
|
+
cp(package_license_files, package_license_dir.to_s)
|
327
|
+
end
|
328
|
+
end
|
329
|
+
end
|
330
|
+
|
331
|
+
def build_with_gnu_build_system(package)
|
332
|
+
configure_args = [
|
333
|
+
"CPPFLAGS=#{cppflags(package)}",
|
334
|
+
"LDFLAGS=#{ldflags(package)}",
|
335
|
+
"--prefix=#{install_dir}",
|
336
|
+
"--host=#{package.windows.build_host}",
|
337
|
+
]
|
338
|
+
configure_args += package.windows.configure_args
|
339
|
+
sh("./configure", *configure_args)
|
340
|
+
ENV["GREP_OPTIONS"] = "--text"
|
341
|
+
sh("nice", "make", *build_make_args(package))
|
342
|
+
sh("nice", "make", "install", *install_make_args(package))
|
343
|
+
end
|
344
|
+
|
345
|
+
def cppflags(package)
|
346
|
+
include_paths = [
|
347
|
+
install_dir + "include",
|
348
|
+
]
|
349
|
+
flags = include_paths.collect do |path|
|
350
|
+
"-I#{path}"
|
351
|
+
end
|
352
|
+
flags.join(" ")
|
353
|
+
end
|
354
|
+
|
355
|
+
def ldflags(package)
|
356
|
+
library_paths = [
|
357
|
+
install_dir + "lib",
|
358
|
+
]
|
359
|
+
flags = library_paths.collect do |path|
|
360
|
+
"-L#{path}"
|
361
|
+
end
|
362
|
+
flags.join(" ")
|
363
|
+
end
|
364
|
+
|
365
|
+
def build_make_args(package)
|
366
|
+
args = []
|
367
|
+
make_n_jobs = ENV["MAKE_N_JOBS"]
|
368
|
+
args << "-j#{make_n_jobs}" if make_n_jobs
|
369
|
+
args
|
370
|
+
end
|
371
|
+
|
372
|
+
def install_make_args(package)
|
373
|
+
[]
|
374
|
+
end
|
375
|
+
|
376
|
+
def tmp_dir
|
377
|
+
@base_dir + "tmp"
|
378
|
+
end
|
379
|
+
|
380
|
+
def download_dir
|
381
|
+
tmp_dir + "download"
|
382
|
+
end
|
383
|
+
|
384
|
+
def build_dir
|
385
|
+
tmp_dir + "build"
|
386
|
+
end
|
387
|
+
|
388
|
+
def install_dir
|
389
|
+
@base_dir + "vendor" + "local"
|
390
|
+
end
|
391
|
+
|
392
|
+
def license_dir
|
393
|
+
install_dir + "share" + "license"
|
394
|
+
end
|
395
|
+
|
396
|
+
def downloaded_archive_path(package)
|
397
|
+
download_dir + package.archive_path
|
398
|
+
end
|
399
|
+
|
400
|
+
def patches_dir
|
401
|
+
@base_dir + "patches"
|
402
|
+
end
|
403
|
+
|
404
|
+
def ruby_gnome2_dir
|
405
|
+
if RCairoBuild.for_64bit?
|
406
|
+
@base_dir.parent + "ruby-gnome2.win64"
|
407
|
+
else
|
408
|
+
@base_dir.parent + "ruby-gnome2.win32"
|
409
|
+
end
|
410
|
+
end
|
411
|
+
|
412
|
+
def ruby_glib2_pkg_config_path
|
413
|
+
ruby_gnome2_dir + "glib2/vendor/local/lib/pkgconfig"
|
414
|
+
end
|
415
|
+
end
|
416
|
+
|
417
|
+
class ZlibBuilder
|
418
|
+
include Rake::DSL
|
419
|
+
|
420
|
+
def build(package, install_dir)
|
421
|
+
sh("make",
|
422
|
+
"PREFIX=#{package.windows.build_host}-",
|
423
|
+
"-f",
|
424
|
+
"win32/Makefile.gcc")
|
425
|
+
include_path = install_dir + "include"
|
426
|
+
library_path = install_dir + "lib"
|
427
|
+
binary_path = install_dir + "bin"
|
428
|
+
sh("make",
|
429
|
+
"INCLUDE_PATH=#{include_path}",
|
430
|
+
"LIBRARY_PATH=#{library_path}",
|
431
|
+
"BINARY_PATH=#{binary_path}",
|
432
|
+
"SHARED_MODE=1",
|
433
|
+
"-f",
|
434
|
+
"win32/Makefile.gcc",
|
435
|
+
"install")
|
436
|
+
end
|
437
|
+
end
|
438
|
+
|
439
|
+
windows_task = WindowsTask.new(spec) do |task|
|
440
|
+
task.packages = [
|
441
|
+
{
|
442
|
+
:name => "zlib",
|
443
|
+
:version => "1.2.8",
|
444
|
+
:download_base_url => "http://sourceforge.net/projects/libpng/files/zlib/1.2.8",
|
445
|
+
:compression_method => "gz",
|
446
|
+
:windows => {
|
447
|
+
:builder => ZlibBuilder.new,
|
448
|
+
:built_file => "bin/zlib1.dll",
|
449
|
+
},
|
450
|
+
},
|
451
|
+
{
|
452
|
+
:name => "libpng",
|
453
|
+
:version => "1.6.14",
|
454
|
+
:download_base_url => "http://sourceforge.net/projects/libpng/files/libpng16/1.6.14",
|
455
|
+
:windows => {
|
456
|
+
:built_file => "bin/libpng16-16.dll",
|
457
|
+
},
|
458
|
+
},
|
459
|
+
{
|
460
|
+
:name => "freetype",
|
461
|
+
:version => "2.5.3",
|
462
|
+
:download_base_url => "http://sourceforge.net/projects/freetype/files/freetype2/2.5.3",
|
463
|
+
:compression_method => "bz2",
|
464
|
+
:windows => {
|
465
|
+
:built_file => "bin/libfreetype-6.dll",
|
466
|
+
},
|
467
|
+
},
|
468
|
+
{
|
469
|
+
:name => "libxml2",
|
470
|
+
:version => "2.9.2",
|
471
|
+
:download_base_url => "ftp://xmlsoft.org/libxml2",
|
472
|
+
:compression_method => "gz",
|
473
|
+
:windows => {
|
474
|
+
:built_file => "bin/libxml2-2.dll",
|
475
|
+
:configure_args => [
|
476
|
+
"--without-python",
|
477
|
+
],
|
478
|
+
:patches => [
|
479
|
+
"remove-empty-z_dir-ldflags.diff",
|
480
|
+
],
|
481
|
+
:need_autoreconf => true,
|
482
|
+
},
|
483
|
+
},
|
484
|
+
{
|
485
|
+
:name => "fontconfig",
|
486
|
+
:version => "2.11.1",
|
487
|
+
:download_base_url => "http://www.freedesktop.org/software/fontconfig/release",
|
488
|
+
:compression_method => "bz2",
|
489
|
+
:windows => {
|
490
|
+
:built_file => "bin/libfontconfig-1.dll",
|
491
|
+
:configure_args => [
|
492
|
+
"--enable-libxml2",
|
493
|
+
"--disable-docs",
|
494
|
+
],
|
495
|
+
:patches => [
|
496
|
+
"fontconfig-2.11.1-disable-mktemp-s.diff",
|
497
|
+
],
|
498
|
+
:need_autoreconf => true,
|
499
|
+
},
|
500
|
+
},
|
501
|
+
{
|
502
|
+
:name => "pixman",
|
503
|
+
:version => "0.32.6",
|
504
|
+
:download_site => :cairo,
|
505
|
+
:compression_method => "gz",
|
506
|
+
:windows => {
|
507
|
+
:built_file => "bin/libpixman-1-0.dll",
|
508
|
+
},
|
509
|
+
},
|
510
|
+
{
|
511
|
+
:name => "cairo",
|
512
|
+
:version => "1.14.0",
|
513
|
+
:download_site => :cairo,
|
514
|
+
:windows => {
|
515
|
+
:built_file => "bin/libcairo-2.dll",
|
516
|
+
:configure_args => [
|
517
|
+
"--enable-gobject",
|
518
|
+
],
|
519
|
+
:patches => [
|
520
|
+
"cairo-1.14-missing-exeext-float-m4.diff"
|
521
|
+
],
|
522
|
+
:need_autoreconf => true,
|
523
|
+
},
|
524
|
+
},
|
525
|
+
]
|
526
|
+
end
|
527
|
+
windows_task.define
|
528
|
+
|
529
|
+
# for releasing
|
530
|
+
task :dist do
|
531
|
+
sh "./dist.sh", spec.version.to_s
|
532
|
+
end
|
533
|
+
|
534
|
+
# for documentation
|
535
|
+
langs = [
|
536
|
+
["en", "English"],
|
537
|
+
["ja", "日本語"],
|
538
|
+
]
|
539
|
+
|
540
|
+
rcairo_doc_dir = File.expand_path(File.join(base_dir, "..", "rcairo-doc"))
|
541
|
+
rcairo_doc_css = File.join(rcairo_doc_dir, "doc.css")
|
542
|
+
rcairo_doc_title_image = File.join(rcairo_doc_dir, "rcairo-title.png")
|
543
|
+
doc_dir = "doc"
|
544
|
+
doc_index = File.join(doc_dir, "index.html")
|
545
|
+
doc_css = File.join(doc_dir, "doc.css")
|
546
|
+
doc_title_image = File.join(doc_dir, "rcairo-title.png")
|
547
|
+
task(doc_index).instance_variable_get("@actions").clear
|
548
|
+
|
549
|
+
file doc_dir do
|
550
|
+
mkdir_p doc_dir
|
551
|
+
end
|
552
|
+
|
553
|
+
file doc_title_image => [doc_dir, rcairo_doc_title_image] do
|
554
|
+
cp rcairo_doc_title_image, doc_title_image
|
555
|
+
end
|
556
|
+
|
557
|
+
file doc_css => [rcairo_doc_css, doc_title_image] do
|
558
|
+
cp rcairo_doc_css, doc_css
|
559
|
+
end
|
560
|
+
|
561
|
+
file doc_index => doc_css do
|
562
|
+
File.open(doc_index, "w") do |index|
|
563
|
+
index << <<-EOH
|
564
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
565
|
+
<html>
|
566
|
+
<head>
|
567
|
+
<title>rcairo reference manual</title>
|
568
|
+
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
569
|
+
</head>
|
570
|
+
|
571
|
+
<body>
|
572
|
+
<h1>rcairo reference manual</h1>
|
573
|
+
|
574
|
+
<ul>
|
575
|
+
EOH
|
576
|
+
|
577
|
+
langs.each do |lang, native_lang|
|
578
|
+
index << <<-EOH
|
579
|
+
<li><a href="#{lang}/">#{native_lang}</a></li>
|
580
|
+
EOH
|
581
|
+
end
|
582
|
+
|
583
|
+
index << <<-EOH
|
584
|
+
</ui>
|
585
|
+
|
586
|
+
<p><a href="../">Up</a></p>
|
587
|
+
</body>
|
588
|
+
</html>
|
589
|
+
EOH
|
590
|
+
end
|
591
|
+
end
|
592
|
+
|
593
|
+
langs.each do |lang,|
|
594
|
+
lang_doc_dir = File.join(doc_dir, lang)
|
595
|
+
directory lang_doc_dir
|
596
|
+
lang_doc_index = File.join(lang_doc_dir, "index.html")
|
597
|
+
file doc_index => lang_doc_index
|
598
|
+
file lang_doc_index => [lang_doc_dir] do
|
599
|
+
lang_doc_dir = File.join(doc_dir, lang)
|
600
|
+
lang_rcairo_doc_dir = File.join(rcairo_doc_dir, lang)
|
601
|
+
cp Dir[File.join(lang_rcairo_doc_dir, "*.rd")], lang_doc_dir
|
602
|
+
ruby File.join(rcairo_doc_dir, "update-html.rb"), lang_doc_dir
|
603
|
+
ruby File.join(rcairo_doc_dir, "update-html.rb"), lang_doc_dir
|
604
|
+
rm Dir[File.join(lang_doc_dir, "*.{rd,rdc,rbl}")]
|
605
|
+
end
|
606
|
+
end
|
607
|
+
|
608
|
+
file "Makefile" => ["extconf.rb", "ext/cairo/extconf.rb"] do
|
609
|
+
ruby("extconf.rb")
|
610
|
+
end
|
611
|
+
|
612
|
+
desc "Configure"
|
613
|
+
task :configure => "Makefile"
|
614
|
+
|
615
|
+
desc "Run test"
|
616
|
+
task :test => :configure do
|
617
|
+
ruby("test/run-test.rb")
|
618
|
+
end
|
619
|
+
|
620
|
+
task :default => :test
|