summaryrefslogtreecommitdiffstats
path: root/graphics/cairomm
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2006-07-06 12:40:57 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2006-07-06 12:40:57 +0800
commita5ad2ca2f40866b5b3ebdcf6ce69e0fa31a613b4 (patch)
tree6a64a147e0e89a4eccfd5520d0e5213f2ec62859 /graphics/cairomm
parent1e3bd81084e420c75c36ac53c06c2a53101c6bf1 (diff)
downloadmarcuscom-ports-a5ad2ca2f40866b5b3ebdcf6ce69e0fa31a613b4.tar
marcuscom-ports-a5ad2ca2f40866b5b3ebdcf6ce69e0fa31a613b4.tar.gz
marcuscom-ports-a5ad2ca2f40866b5b3ebdcf6ce69e0fa31a613b4.tar.bz2
marcuscom-ports-a5ad2ca2f40866b5b3ebdcf6ce69e0fa31a613b4.tar.lz
marcuscom-ports-a5ad2ca2f40866b5b3ebdcf6ce69e0fa31a613b4.tar.xz
marcuscom-ports-a5ad2ca2f40866b5b3ebdcf6ce69e0fa31a613b4.tar.zst
marcuscom-ports-a5ad2ca2f40866b5b3ebdcf6ce69e0fa31a613b4.zip
- Update to 1.1.10
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6512 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics/cairomm')
-rw-r--r--graphics/cairomm/Makefile12
-rw-r--r--graphics/cairomm/distinfo6
-rw-r--r--graphics/cairomm/files/patch-cairomm_surface.cc106
-rw-r--r--graphics/cairomm/files/patch-cairomm_surface.h139
-rw-r--r--graphics/cairomm/files/patch-docs_reference_Makefile.in11
-rw-r--r--graphics/cairomm/pkg-plist168
6 files changed, 21 insertions, 421 deletions
diff --git a/graphics/cairomm/Makefile b/graphics/cairomm/Makefile
index cf3e90088..17ebe7bde 100644
--- a/graphics/cairomm/Makefile
+++ b/graphics/cairomm/Makefile
@@ -3,14 +3,13 @@
# Whom: Michael Johnson <ahze@FreeBSD.org>
#
# $FreeBSD$
-# $MCom$
+# $MCom: ports/graphics/cairomm/Makefile,v 1.1 2006/06/27 17:11:24 marcus Exp $
#
PORTNAME= cairomm
-PORTVERSION= 0.6.0
-PORTREVISION= 1
+PORTVERSION= 1.1.10
CATEGORIES= graphics
-MASTER_SITES= http://cairographics.org/releases/
+MASTER_SITES= http://cairographics.org/snapshots/
MAINTAINER= gnome@FreeBSD.org
COMMENT= C++ interface to cairo
@@ -23,12 +22,13 @@ INSTALLS_SHLIB= yes
USE_GMAKE= yes
USE_GNOME= gnomehack gnometarget
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
+ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
+ AUTOMAKE="${TRUE}" AUTOCONF="${TRUE}" DOXYGEN="${TRUE}"
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
-BROKEN="Does not build"
+BROKEN= Does not build
.endif
.if defined(NOPORTDOCS)
diff --git a/graphics/cairomm/distinfo b/graphics/cairomm/distinfo
index 2a46bb524..14626cf07 100644
--- a/graphics/cairomm/distinfo
+++ b/graphics/cairomm/distinfo
@@ -1,3 +1,3 @@
-MD5 (cairomm-0.6.0.tar.gz) = 9d967cf486b0ac59d451d47922c99e6f
-SHA256 (cairomm-0.6.0.tar.gz) = 274d27e8d8644038ec9f9605627753cf2cbfa5c5a62240d67cbbb2d928d408e2
-SIZE (cairomm-0.6.0.tar.gz) = 442864
+MD5 (cairomm-1.1.10.tar.gz) = b418d2e22c02f6890b76354488f13447
+SHA256 (cairomm-1.1.10.tar.gz) = 57e748da69d15e74ff8e5c2194533a172b46e44f7c7e46f1c9661d2b31e19ac3
+SIZE (cairomm-1.1.10.tar.gz) = 566528
diff --git a/graphics/cairomm/files/patch-cairomm_surface.cc b/graphics/cairomm/files/patch-cairomm_surface.cc
deleted file mode 100644
index b6d1d6560..000000000
--- a/graphics/cairomm/files/patch-cairomm_surface.cc
+++ /dev/null
@@ -1,106 +0,0 @@
---- cairomm/surface.cc 2006/03/06 17:55:51 1.12
-+++ cairomm/surface.cc 2006/06/27 01:46:14 1.15
-@@ -76,6 +76,17 @@
- check_object_status_and_throw_exception(*this);
- }
-
-+void Surface::get_device_offset(double& x_offset, double& y_offset)
-+{
-+ cairo_surface_get_device_offset(m_cobject, &x_offset, &y_offset);
-+}
-+
-+void Surface::set_fallback_resolution(double x_pixels_per_inch, double y_pixels_per_inch)
-+{
-+ cairo_surface_set_fallback_resolution(m_cobject, x_pixels_per_inch, y_pixels_per_inch);
-+ check_object_status_and_throw_exception(*this);
-+}
-+
- #ifdef CAIRO_HAS_PNG_FUNCTIONS
- void Surface::write_to_png(const std::string& filename)
- {
-@@ -164,6 +175,25 @@
- return result;
- }
-
-+unsigned char* ImageSurface::get_data()
-+{
-+ return cairo_image_surface_get_data(m_cobject);
-+}
-+
-+const unsigned char* ImageSurface::get_data() const
-+{
-+ return cairo_image_surface_get_data(m_cobject);
-+}
-+
-+Format ImageSurface::get_format() const
-+{
-+ return static_cast<Format>(cairo_image_surface_get_format(m_cobject));
-+}
-+
-+int ImageSurface::get_stride() const
-+{
-+ return cairo_image_surface_get_stride(m_cobject);
-+}
-
-
- /*******************************************************************************
-@@ -195,9 +225,9 @@
- return RefPtr<PdfSurface>(new PdfSurface(cobject, true /* has reference */));
- }
-
--void PdfSurface::set_dpi(double x_dpi, double y_dpi)
-+void PdfSurface::set_size(double width_in_points, double height_in_points)
- {
-- cairo_pdf_surface_set_dpi(m_cobject, x_dpi, y_dpi);
-+ cairo_pdf_surface_set_size(m_cobject, width_in_points, height_in_points);
- check_object_status_and_throw_exception(*this);
- }
-
-@@ -231,12 +261,32 @@
- return RefPtr<PsSurface>(new PsSurface(cobject, true /* has reference */));
- }
-
--void PsSurface::set_dpi(double x_dpi, double y_dpi)
-+void PsSurface::set_size(double width_in_points, double height_in_points)
- {
-- cairo_ps_surface_set_dpi(m_cobject, x_dpi, y_dpi);
-+ cairo_ps_surface_set_size(m_cobject, width_in_points, height_in_points);
- check_object_status_and_throw_exception(*this);
- }
-
-+
-+void PsSurface::dsc_comment(std::string comment)
-+{
-+ cairo_ps_surface_dsc_comment(m_cobject, comment.c_str());
-+ check_object_status_and_throw_exception(*this);
-+}
-+
-+void PsSurface::dsc_begin_setup()
-+{
-+ cairo_ps_surface_dsc_begin_setup(m_cobject);
-+ check_object_status_and_throw_exception(*this);
-+}
-+
-+void PsSurface::dsc_begin_page_setup()
-+{
-+ cairo_ps_surface_dsc_begin_page_setup(m_cobject);
-+ check_object_status_and_throw_exception(*this);
-+}
-+
-+
- #endif // CAIRO_HAS_PS_SURFACE
-
-
-@@ -267,12 +317,6 @@
- return RefPtr<SvgSurface>(new SvgSurface(cobject, true /* has reference */));
- }
-
--void SvgSurface::set_dpi(double x_dpi, double y_dpi)
--{
-- cairo_svg_surface_set_dpi(m_cobject, x_dpi, y_dpi);
-- check_object_status_and_throw_exception(*this);
--}
--
- #endif // CAIRO_HAS_SVG_SURFACE
-
-
diff --git a/graphics/cairomm/files/patch-cairomm_surface.h b/graphics/cairomm/files/patch-cairomm_surface.h
deleted file mode 100644
index 024b5ed45..000000000
--- a/graphics/cairomm/files/patch-cairomm_surface.h
+++ /dev/null
@@ -1,139 +0,0 @@
---- cairomm/surface.h 2006/03/06 17:55:51 1.10
-+++ cairomm/surface.h 2006/06/27 01:46:14 1.13
-@@ -137,6 +137,17 @@
- */
- void set_device_offset(double x_offset, double y_offset);
-
-+ /** Returns a previous device offset set by set_device_offset().
-+ */
-+ void get_device_offset(double& x_offset, double& y_offset);
-+
-+ /** Sets the fallback resolution of the image in dots per inch
-+ *
-+ * @param x_pixels_per_inch Pixels per inch in the x direction
-+ * @param y_pixels_per_inch Pixels per inch in the y direction
-+ */
-+ void set_fallback_resolution(double x_pixels_per_inch, double y_pixels_per_inch);
-+
- #ifdef CAIRO_HAS_PNG_FUNCTIONS
-
- /** Writes the contents of surface to a new file filename as a PNG image.
-@@ -243,6 +254,29 @@
- */
- int get_height() const;
-
-+ /**
-+ * Get a pointer to the data of the image surface, for direct
-+ * inspection or modification.
-+ *
-+ * Return value: a pointer to the image data of this surface or NULL
-+ * if @surface is not an image surface.
-+ */
-+ unsigned char* get_data();
-+ const unsigned char* get_data() const;
-+
-+ /** gets the format of the surface
-+ */
-+ Format get_format() const;
-+
-+ /**
-+ * Return value: the stride of the image surface in bytes (or 0 if
-+ * @surface is not an image surface). The stride is the distance in
-+ * bytes from the beginning of one row of the image data to the
-+ * beginning of the next row.
-+ */
-+ int get_stride() const;
-+
-+
- /** Creates an image surface of the specified format and dimensions. The
- * initial contents of the surface is undefined; you must explicitely clear
- * the buffer, using, for example, Cairo::Context::rectangle() and
-@@ -367,12 +401,19 @@
- */
- static RefPtr<PdfSurface> create(cairo_write_func_t write_func, void *closure, double width_in_points, double height_in_points);
-
-- /** Sets the resolution of the image in dots per inch
-- *
-- * @param x_dpi The dpi in the x direction
-- * @param y_dpi The dpi in the y direction
-- */
-- void set_dpi(double x_dpi, double y_dpi);
-+/**
-+ * Changes the size of a PDF surface for the current (and subsequent) pages.
-+ *
-+ * This function should only be called before any drawing operations have been
-+ * performed on the current page. The simplest way to do this is to call this
-+ * function immediately after creating the surface or immediately after
-+ * completing a page with either Context::show_page() or Context::copy_page().
-+ *
-+ * \param width_in_points new surface width, in points (1 point == 1/72.0 inch)
-+ * \param height_in_points new surface height, in points (1 point == 1/72.0 inch)
-+ **/
-+ void set_size(double width_in_points, double height_in_points);
-+
- };
-
- #endif // CAIRO_HAS_PDF_SURFACE
-@@ -424,12 +465,45 @@
- */
- static RefPtr<PsSurface> create(cairo_write_func_t write_func, void *closure, double width_in_points, double height_in_points);
-
-- /** Sets the resolution of the image in dots per inch
-+ /**
-+ * Changes the size of a PostScript surface for the current (and
-+ * subsequent) pages.
-+ *
-+ * This function should only be called before any drawing operations have been
-+ * performed on the current page. The simplest way to do this is to call this
-+ * function immediately after creating the surface or immediately after
-+ * completing a page with either Context::show_page() or Context::copy_page().
-+ *
-+ * \param width_in_points new surface width, in points (1 point == 1/72.0 inch)
-+ * \param height_in_points new surface height, in points (1 point == 1/72.0 inch)
-+ */
-+ void set_size(double width_in_points, double height_in_points);
-+
-+ /** Emit a comment into the PostScript output for the given surface. See the
-+ * cairo reference documentation for more information.
-+ *
-+ * \param comment a comment string to be emitted into the PostScript output
-+ */
-+ void dsc_comment(std::string comment);
-+
-+ /**
-+ * This function indicates that subsequent calls to dsc_comment() should direct
-+ * comments to the Setup section of the PostScript output.
- *
-- * @param x_dpi The dpi in the x direction
-- * @param y_dpi The dpi in the y direction
-+ * This function should be called at most once per surface, and must be called
-+ * before any call to dsc_begin_page_setup() and before any drawing is performed
-+ * to the surface.
- */
-- void set_dpi(double x_dpi, double y_dpi);
-+ void dsc_begin_setup();
-+
-+ /** This function indicates that subsequent calls to dsc_comment() should
-+ * direct comments to the PageSetup section of the PostScript output.
-+ *
-+ * This function call is only needed for the first page of a surface. It
-+ * should be called after any call to dsc_begin_setup() and before any drawing
-+ * is performed to the surface.
-+ */
-+ void dsc_begin_page_setup();
-
- };
-
-@@ -483,12 +557,6 @@
- */
- static RefPtr<SvgSurface> create(cairo_write_func_t write_func, void *closure, double width_in_points, double height_in_points);
-
-- /** Sets the resolution of the image in dots per inch
-- *
-- * @param x_dpi The dpi in the x direction
-- * @param y_dpi The dpi in the y direction
-- */
-- void set_dpi(double x_dpi, double y_dpi);
- };
-
- #endif // CAIRO_HAS_SVG_SURFACE
diff --git a/graphics/cairomm/files/patch-docs_reference_Makefile.in b/graphics/cairomm/files/patch-docs_reference_Makefile.in
new file mode 100644
index 000000000..560b3dc7b
--- /dev/null
+++ b/graphics/cairomm/files/patch-docs_reference_Makefile.in
@@ -0,0 +1,11 @@
+--- docs/reference/Makefile.in.orig Thu Jul 6 00:29:26 2006
++++ docs/reference/Makefile.in Thu Jul 6 00:29:40 2006
+@@ -342,7 +342,7 @@
+
+ $(index_html): $(DOXYGEN_CONFIGFILE) $(wildcard $(top_srcdir)/cairomm/*.h) $(HTML_TEMPLATE_FILES)
+ -rm -rf html
+- doxygen $(DOXYGEN_CONFIGFILE) \
++ $(DOXYGEN) $(DOXYGEN_CONFIGFILE) \
+ 2> doxygen-warnings.txt | tee doxygen-output.txt && cat doxygen-warnings.txt
+
+ html: $(index_html)
diff --git a/graphics/cairomm/pkg-plist b/graphics/cairomm/pkg-plist
index bfb563b81..a53d8945d 100644
--- a/graphics/cairomm/pkg-plist
+++ b/graphics/cairomm/pkg-plist
@@ -7,6 +7,7 @@ include/cairomm-1.0/cairomm/fontoptions.h
include/cairomm-1.0/cairomm/path.h
include/cairomm-1.0/cairomm/pattern.h
include/cairomm-1.0/cairomm/refptr.h
+include/cairomm-1.0/cairomm/scaledfont.h
include/cairomm-1.0/cairomm/surface.h
include/cairomm-1.0/cairomm/win32_surface.h
include/cairomm-1.0/cairomm/xlib_surface.h
@@ -15,173 +16,6 @@ lib/libcairomm-1.0.la
lib/libcairomm-1.0.so
lib/libcairomm-1.0.so.0
libdata/pkgconfig/cairomm-1.0.pc
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/annotated.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/cairomm.css
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/cairomm_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/cairomm_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Context-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Context.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1FontFace-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1FontFace.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1FontOptions-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1FontOptions.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1GlitzSurface-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1GlitzSurface.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1GlitzSurface__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1GlitzSurface__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1GlitzSurface__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Gradient-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Gradient.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Gradient__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Gradient__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Gradient__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1ImageSurface-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1ImageSurface.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1ImageSurface__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1ImageSurface__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1ImageSurface__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1LinearGradient-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1LinearGradient.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1LinearGradient__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1LinearGradient__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1LinearGradient__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Path-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Path.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Pattern-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Pattern.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Pattern__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Pattern__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Pattern__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1PdfSurface-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1PdfSurface.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1PdfSurface__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1PdfSurface__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1PdfSurface__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1PsSurface-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1PsSurface.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1PsSurface__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1PsSurface__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1PsSurface__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1RadialGradient-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1RadialGradient.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1RadialGradient__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1RadialGradient__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1RadialGradient__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1RefPtr-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1RefPtr.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SolidPattern-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SolidPattern.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SolidPattern__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SolidPattern__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SolidPattern__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Surface-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Surface.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SurfacePattern-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SurfacePattern.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SurfacePattern__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SurfacePattern__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SurfacePattern__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Surface__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Surface__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Surface__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SvgSurface-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SvgSurface.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SvgSurface__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SvgSurface__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1SvgSurface__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Win32Surface-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Win32Surface.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Win32Surface__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Win32Surface__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1Win32Surface__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1XlibSurface-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1XlibSurface.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1XlibSurface__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1XlibSurface__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1XlibSurface__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1logic__error-members.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1logic__error.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1logic__error__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1logic__error__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classCairo_1_1logic__error__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classstd_1_1logic__error.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classstd_1_1logic__error__inherit__graph.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classstd_1_1logic__error__inherit__graph.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/classstd_1_1logic__error__inherit__graph.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/context_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/context_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/dir_000000.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/dir_000000_dep.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/dir_000000_dep.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/dirs.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/doxygen.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/enums_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/enums_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/exception_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/exception_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/files.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/fontface_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/fontface_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/fontoptions_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/fontoptions_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/functions.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/functions_func.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/functions_type.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/functions_vars.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/globals.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/globals_enum.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/globals_eval.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/globals_type.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/graph_legend.dot
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/graph_legend.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/graph_legend.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/hierarchy.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/index.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__0.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__0.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__0.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__1.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__1.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__1.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__2.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__2.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__2.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__3.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__3.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__3.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__4.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__4.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__4.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__5.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__5.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__5.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__6.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__6.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__6.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__7.map
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__7.md5
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherit__graph__7.png
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/inherits.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/introduction_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/introduction_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/namespaceCairo.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/namespacemembers.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/namespacemembers_enum.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/namespacemembers_eval.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/namespacemembers_type.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/namespaces.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/path_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/path_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/pattern_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/pattern_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/refptr_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/refptr_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/surface_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/surface_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/win32__surface_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/win32__surface_8h.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/xlib__surface_8h-source.html
-%%PORTDOCS%%share/doc/libcairomm-1.0/reference/html/xlib__surface_8h.html
%%PORTDOCS%%@dirrm share/doc/libcairomm-1.0/reference/html
%%PORTDOCS%%@dirrm share/doc/libcairomm-1.0/reference
%%PORTDOCS%%@dirrm share/doc/libcairomm-1.0