diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-03-24 13:30:51 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-03-24 13:30:51 +0800 |
commit | a6888a2a213b49d671bf658e58428d9a1d342f66 (patch) | |
tree | 73b4b8892d2a32df0f24d16b19046bc481baf971 /graphics | |
parent | a740241125f843ca61310f787f0eea0d5b40784f (diff) | |
download | marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.gz marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.bz2 marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.lz marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.xz marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.zst marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.zip |
Remove these ports now that they have been merged into the FreeBSD ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@10818 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics')
73 files changed, 0 insertions, 3982 deletions
diff --git a/graphics/cairo/Makefile b/graphics/cairo/Makefile deleted file mode 100644 index e87277cdf..000000000 --- a/graphics/cairo/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: cairo -# Date created: 2004-10-06 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/cairo/Makefile,v 1.68 2008/03/14 00:59:48 ahze Exp $ -# - -PORTNAME= cairo -PORTVERSION= 1.5.14 -PORTREVISION?= 0 -CATEGORIES= graphics -#MASTER_SITES= http://cairographics.org/releases/ -MASTER_SITES= http://cairographics.org/snapshots/ - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Vector graphics library with cross-device output support - -.if !defined(REFERENCE_PORT) - -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ - png.5:${PORTSDIR}/graphics/png \ - fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \ - pixman-1.9:${PORTSDIR}/x11/pixman - -CONFIGURE_ARGS= --with-html-dir=${DOCSDIR} \ - --enable-pdf \ - --enable-ps -USE_GNOME= gnometarget gnomehack ltverhack referencehack -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes - -CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${X11BASE}/include" \ - LDFLAGS="${PTHREAD_LIBS}" - -.if defined(WITHOUT_X11) -CONFIGURE_ARGS+=--disable-xlib -PLIST_SUB+= X11="@comment " -.else -USE_XORG+= xrender -PLIST_SUB+= X11="" -.endif - -OPTIONS+= GLITZ "Enable Glitz OpenGL Support" Off - -.include <bsd.port.pre.mk> - -.if defined(WITH_GLITZ) -LIB_DEPENDS+= glitz-glx.1:${PORTSDIR}/graphics/glitz -CONFIGURE_ARGS+= --enable-glitz -PLIST_SUB+= GLITZ="" -.else -CONFIGURE_ARGS+= --disable-glitz -PLIST_SUB+= GLITZ="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' \ - ${WRKSRC}/test/Makefile.in - @${REINPLACE_CMD} -e 's|-lcairo|-lcairo ${PTHREAD_LIBS}|' \ - ${WRKSRC}/src/*.pc.in - @${REINPLACE_CMD} -e 's|src test doc|src doc|; \ - s|@CAIRO_HAS_PNG_FUNCTIONS_TRUE@am__append_1 = test||' \ - ${WRKSRC}/Makefile.in - -.include <bsd.port.post.mk> - -.endif diff --git a/graphics/cairo/distinfo b/graphics/cairo/distinfo deleted file mode 100644 index 890b70458..000000000 --- a/graphics/cairo/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (cairo-1.5.14.tar.gz) = 9b5d250937375e53435cb5613416c030 -SHA256 (cairo-1.5.14.tar.gz) = fbca8a292b83cbf184835be0e6007c194d7bab3ce4ee2bced8ea7bf07a7e151b -SIZE (cairo-1.5.14.tar.gz) = 4877446 diff --git a/graphics/cairo/files/patch-src_cairo-ft-font.c b/graphics/cairo/files/patch-src_cairo-ft-font.c deleted file mode 100644 index 8cd60665f..000000000 --- a/graphics/cairo/files/patch-src_cairo-ft-font.c +++ /dev/null @@ -1,28 +0,0 @@ ---- src/cairo-ft-font.c.orig Tue Aug 16 14:46:46 2005 -+++ src/cairo-ft-font.c Tue Aug 16 14:46:59 2005 -@@ -44,6 +44,11 @@ - #include <fontconfig/fontconfig.h> - #include <fontconfig/fcfreetype.h> - -+#include <sys/types.h> -+#include <stdlib.h> -+#include <time.h> -+#include <unistd.h> -+ - #include <ft2build.h> - #include FT_FREETYPE_H - #include FT_OUTLINE_H -@@ -257,7 +262,12 @@ _cairo_ft_unscaled_font_init_key (cairo_ - key->id = id; - - /* 1607 is just an arbitrary prime. */ -- hash = _cairo_hash_string (filename); -+ if (filename != NULL) { -+ hash = _cairo_hash_string (filename); -+ } else { -+ srandom(time(NULL) * getpid()); -+ hash = random(); -+ } - hash += ((unsigned long) id) * 1607; - - key->base.hash_entry.hash = hash; diff --git a/graphics/cairo/files/patch-src_cairo-xlib-display.c b/graphics/cairo/files/patch-src_cairo-xlib-display.c deleted file mode 100644 index c5bec2cca..000000000 --- a/graphics/cairo/files/patch-src_cairo-xlib-display.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/cairo-xlib-display.c.orig 2008-03-13 20:52:38.000000000 -0400 -+++ src/cairo-xlib-display.c 2008-03-13 20:53:29.000000000 -0400 -@@ -302,6 +302,9 @@ - display->buggy_repeat = TRUE; - } - -+ /* XXX workaround; see https://bugzilla.mozilla.org/show_bug.cgi?id=413583 */ -+ display->buggy_repeat = TRUE; -+ - display->next = _cairo_xlib_display_list; - _cairo_xlib_display_list = display; - diff --git a/graphics/cairo/files/patch-src_cairoint.h b/graphics/cairo/files/patch-src_cairoint.h deleted file mode 100644 index a9b3ce480..000000000 --- a/graphics/cairo/files/patch-src_cairoint.h +++ /dev/null @@ -1,14 +0,0 @@ ---- src/cairoint.h.orig Sun Oct 15 18:02:35 2006 -+++ src/cairoint.h Sun Oct 15 18:10:11 2006 -@@ -50,6 +50,11 @@ - #include "config.h" - #endif - -+#ifndef INT16_MAX -+#define INT16_MAX 0x7fff -+#define INT16_MIN (-0x7fff-1) -+#endif -+ - #include <assert.h> - #include <stdlib.h> - #include <string.h> diff --git a/graphics/cairo/pkg-descr b/graphics/cairo/pkg-descr deleted file mode 100644 index 4fd137a19..000000000 --- a/graphics/cairo/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Cairo is a vector graphics library with cross-device output -support. Currently supported output targets include the X Window -System and in-memory image buffers. PostScript and PDF file output is -planned. Cairo is designed to produce identical output on all output -media while taking advantage of display hardware acceleration when -available (eg. through the X Render Extension). - -Cairo provides a stateful user-level API with capabilities similar to -the PDF 1.4 imaging model. Cairo provides operations including stroking -and filling Bezier cubic splines, transforming and compositing translucent -images, and antialiased text rendering. - -WWW: http://www.cairographics.org diff --git a/graphics/cairo/pkg-plist b/graphics/cairo/pkg-plist deleted file mode 100644 index c81b6e936..000000000 --- a/graphics/cairo/pkg-plist +++ /dev/null @@ -1,24 +0,0 @@ -include/cairo/cairo-deprecated.h -include/cairo/cairo-features.h -include/cairo/cairo-ft.h -%%GLITZ%%include/cairo/cairo-glitz.h -include/cairo/cairo-pdf.h -include/cairo/cairo-ps.h -include/cairo/cairo-svg.h -%%X11%%include/cairo/cairo-xlib-xrender.h -%%X11%%include/cairo/cairo-xlib.h -include/cairo/cairo.h -lib/libcairo.a -lib/libcairo.la -lib/libcairo.so -lib/libcairo.so.2 -libdata/pkgconfig/cairo.pc -libdata/pkgconfig/cairo-ft.pc -%%GLITZ%%libdata/pkgconfig/cairo-glitz.pc -libdata/pkgconfig/cairo-pdf.pc -libdata/pkgconfig/cairo-png.pc -libdata/pkgconfig/cairo-ps.pc -libdata/pkgconfig/cairo-svg.pc -%%X11%%libdata/pkgconfig/cairo-xlib.pc -%%X11%%libdata/pkgconfig/cairo-xlib-xrender.pc -@dirrm include/cairo diff --git a/graphics/cairomm/Makefile b/graphics/cairomm/Makefile deleted file mode 100644 index 323eb2e63..000000000 --- a/graphics/cairomm/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: cairomm -# Date created: 2005-12-07 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/cairomm/Makefile,v 1.6 2008/03/20 03:48:29 marcus Exp $ -# - -PORTNAME= cairomm -PORTVERSION= 1.4.8 -PORTREVISION= 1 -CATEGORIES= graphics -MASTER_SITES= http://cairographics.org/releases/ - -MAINTAINER= gnome@FreeBSD.org -COMMENT= C++ interface to cairo - -LIB_DEPENDS= xml\\+\\+-2.6:${PORTSDIR}/textproc/libxml++26 \ - cairo.2:${PORTSDIR}/graphics/cairo - -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -USE_GMAKE= yes -USE_GNOME= gnomehack gnometarget ltverhack -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \ - AUTOMAKE="${TRUE}" AUTOCONF="${TRUE}" DOXYGEN="${TRUE}" - -.if defined(NOPORTDOCS) -CONFIGURE_ARGS+= --disable-docs - -post-patch: - @${REINPLACE_CMD} -E '/^SUBDIRS = /s/(docs|examples)//g' ${WRKSRC}/Makefile.in -.else -post-configure: - @${TOUCH} -f ${WRKSRC}/docs/reference/html/index.html -.endif - -.include <bsd.port.mk> diff --git a/graphics/cairomm/distinfo b/graphics/cairomm/distinfo deleted file mode 100644 index 1d91365fa..000000000 --- a/graphics/cairomm/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (cairomm-1.4.8.tar.gz) = 2b2025b3555fa1665d92cf9f9be1a4d3 -SHA256 (cairomm-1.4.8.tar.gz) = 795a1c1f5aab72752cbce8d2c0502279ac999351726a5369bec737af0c834e92 -SIZE (cairomm-1.4.8.tar.gz) = 786851 diff --git a/graphics/cairomm/files/patch-cairomm_enums.h b/graphics/cairomm/files/patch-cairomm_enums.h deleted file mode 100644 index 4d0d6ed98..000000000 --- a/graphics/cairomm/files/patch-cairomm_enums.h +++ /dev/null @@ -1,11 +0,0 @@ ---- cairomm/enums.h.orig 2008-03-21 22:42:50.000000000 +0100 -+++ cairomm/enums.h 2008-03-21 22:43:38.000000000 +0100 -@@ -192,7 +192,7 @@ typedef enum - FONT_TYPE_TOY = CAIRO_FONT_TYPE_TOY, - FONT_TYPE_FT = CAIRO_FONT_TYPE_FT, - FONT_TYPE_WIN32 = CAIRO_FONT_TYPE_WIN32, -- FONT_TYPE_ATSUI = CAIRO_FONT_TYPE_ATSUI -+ FONT_TYPE_QUARTZ = CAIRO_FONT_TYPE_QUARTZ - } FontType; - - } // namespace Cairo diff --git a/graphics/cairomm/files/patch-docs_reference_Makefile.in b/graphics/cairomm/files/patch-docs_reference_Makefile.in deleted file mode 100644 index 560b3dc7b..000000000 --- a/graphics/cairomm/files/patch-docs_reference_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- 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-descr b/graphics/cairomm/pkg-descr deleted file mode 100644 index 4a85fd74a..000000000 --- a/graphics/cairomm/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -C++ interface to cairo - -WWW: http://cairographics.org diff --git a/graphics/cairomm/pkg-plist b/graphics/cairomm/pkg-plist deleted file mode 100644 index 37c9b105c..000000000 --- a/graphics/cairomm/pkg-plist +++ /dev/null @@ -1,254 +0,0 @@ -include/cairomm-1.0/cairomm/cairomm.h -include/cairomm-1.0/cairomm/cairommconfig.h -include/cairomm-1.0/cairomm/context.h -include/cairomm-1.0/cairomm/enums.h -include/cairomm-1.0/cairomm/exception.h -include/cairomm-1.0/cairomm/fontface.h -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/quartz_surface.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 -lib/libcairomm-1.0.a -lib/libcairomm-1.0.la -lib/libcairomm-1.0.so -lib/libcairomm-1.0.so.1 -libdata/pkgconfig/cairomm-1.0.pc -share/doc/libcairomm-1.0/reference/html/annotated.html -share/doc/libcairomm-1.0/reference/html/cairomm.css -share/doc/libcairomm-1.0/reference/html/cairomm_8h-source.html -share/doc/libcairomm-1.0/reference/html/cairomm_8h.html -share/doc/libcairomm-1.0/reference/html/cairommconfig_8h-source.html -share/doc/libcairomm-1.0/reference/html/cairommconfig_8h.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Context-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Context.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1FontFace-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1FontFace.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1FontOptions-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1FontOptions.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1GlitzSurface-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1GlitzSurface.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1GlitzSurface__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1GlitzSurface__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1GlitzSurface__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Gradient-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Gradient.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Gradient__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Gradient__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Gradient__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1ImageSurface-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1ImageSurface.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1ImageSurface__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1ImageSurface__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1ImageSurface__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1LinearGradient-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1LinearGradient.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1LinearGradient__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1LinearGradient__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1LinearGradient__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Path-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Path.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Pattern-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Pattern.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Pattern__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Pattern__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Pattern__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1PdfSurface-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1PdfSurface.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1PdfSurface__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1PdfSurface__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1PdfSurface__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1PsSurface-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1PsSurface.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1PsSurface__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1PsSurface__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1PsSurface__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1QuartzSurface-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1QuartzSurface.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1QuartzSurface__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1QuartzSurface__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1QuartzSurface__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1RadialGradient-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1RadialGradient.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1RadialGradient__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1RadialGradient__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1RadialGradient__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1RefPtr-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1RefPtr.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1ScaledFont-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1ScaledFont.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SolidPattern-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SolidPattern.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SolidPattern__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SolidPattern__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SolidPattern__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Surface-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Surface.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SurfacePattern-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SurfacePattern.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SurfacePattern__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SurfacePattern__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SurfacePattern__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Surface__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Surface__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Surface__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SvgSurface-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SvgSurface.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SvgSurface__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SvgSurface__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1SvgSurface__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Win32Surface-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Win32Surface.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Win32Surface__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Win32Surface__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1Win32Surface__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1XlibSurface-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1XlibSurface.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1XlibSurface__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1XlibSurface__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1XlibSurface__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classCairo_1_1logic__error-members.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1logic__error.html -share/doc/libcairomm-1.0/reference/html/classCairo_1_1logic__error__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classCairo_1_1logic__error__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classCairo_1_1logic__error__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/classstd_1_1logic__error.html -share/doc/libcairomm-1.0/reference/html/classstd_1_1logic__error__inherit__graph.map -share/doc/libcairomm-1.0/reference/html/classstd_1_1logic__error__inherit__graph.md5 -share/doc/libcairomm-1.0/reference/html/classstd_1_1logic__error__inherit__graph.png -share/doc/libcairomm-1.0/reference/html/context_8h-source.html -share/doc/libcairomm-1.0/reference/html/context_8h.html -share/doc/libcairomm-1.0/reference/html/dir_60681489e9d398c429ccaa1240ca56f5.html -share/doc/libcairomm-1.0/reference/html/dir_60681489e9d398c429ccaa1240ca56f5_dep.map -share/doc/libcairomm-1.0/reference/html/dir_60681489e9d398c429ccaa1240ca56f5_dep.png -share/doc/libcairomm-1.0/reference/html/dirs.html -share/doc/libcairomm-1.0/reference/html/doxygen.png -share/doc/libcairomm-1.0/reference/html/enums_8h-source.html -share/doc/libcairomm-1.0/reference/html/enums_8h.html -share/doc/libcairomm-1.0/reference/html/exception_8h-source.html -share/doc/libcairomm-1.0/reference/html/exception_8h.html -share/doc/libcairomm-1.0/reference/html/files.html -share/doc/libcairomm-1.0/reference/html/fontface_8h-source.html -share/doc/libcairomm-1.0/reference/html/fontface_8h.html -share/doc/libcairomm-1.0/reference/html/fontoptions_8h-source.html -share/doc/libcairomm-1.0/reference/html/fontoptions_8h.html -share/doc/libcairomm-1.0/reference/html/functions.html -share/doc/libcairomm-1.0/reference/html/functions_0x62.html -share/doc/libcairomm-1.0/reference/html/functions_0x63.html -share/doc/libcairomm-1.0/reference/html/functions_0x64.html -share/doc/libcairomm-1.0/reference/html/functions_0x65.html -share/doc/libcairomm-1.0/reference/html/functions_0x66.html -share/doc/libcairomm-1.0/reference/html/functions_0x67.html -share/doc/libcairomm-1.0/reference/html/functions_0x68.html -share/doc/libcairomm-1.0/reference/html/functions_0x69.html -share/doc/libcairomm-1.0/reference/html/functions_0x6c.html -share/doc/libcairomm-1.0/reference/html/functions_0x6d.html -share/doc/libcairomm-1.0/reference/html/functions_0x6f.html -share/doc/libcairomm-1.0/reference/html/functions_0x70.html -share/doc/libcairomm-1.0/reference/html/functions_0x71.html -share/doc/libcairomm-1.0/reference/html/functions_0x72.html -share/doc/libcairomm-1.0/reference/html/functions_0x73.html -share/doc/libcairomm-1.0/reference/html/functions_0x74.html -share/doc/libcairomm-1.0/reference/html/functions_0x75.html -share/doc/libcairomm-1.0/reference/html/functions_0x76.html -share/doc/libcairomm-1.0/reference/html/functions_0x77.html -share/doc/libcairomm-1.0/reference/html/functions_0x78.html -share/doc/libcairomm-1.0/reference/html/functions_0x7e.html -share/doc/libcairomm-1.0/reference/html/functions_func.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x62.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x63.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x64.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x65.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x66.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x67.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x68.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x69.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x6c.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x6d.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x6f.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x70.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x71.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x72.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x73.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x74.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x75.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x76.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x77.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x78.html -share/doc/libcairomm-1.0/reference/html/functions_func_0x7e.html -share/doc/libcairomm-1.0/reference/html/functions_type.html -share/doc/libcairomm-1.0/reference/html/functions_vars.html -share/doc/libcairomm-1.0/reference/html/globals.html -share/doc/libcairomm-1.0/reference/html/globals_defs.html -share/doc/libcairomm-1.0/reference/html/graph_legend.dot -share/doc/libcairomm-1.0/reference/html/graph_legend.html -share/doc/libcairomm-1.0/reference/html/graph_legend.png -share/doc/libcairomm-1.0/reference/html/hierarchy.html -share/doc/libcairomm-1.0/reference/html/index.html -share/doc/libcairomm-1.0/reference/html/inherit__graph__0.map -share/doc/libcairomm-1.0/reference/html/inherit__graph__0.md5 -share/doc/libcairomm-1.0/reference/html/inherit__graph__0.png -share/doc/libcairomm-1.0/reference/html/inherit__graph__1.map -share/doc/libcairomm-1.0/reference/html/inherit__graph__1.md5 -share/doc/libcairomm-1.0/reference/html/inherit__graph__1.png -share/doc/libcairomm-1.0/reference/html/inherit__graph__2.map -share/doc/libcairomm-1.0/reference/html/inherit__graph__2.md5 -share/doc/libcairomm-1.0/reference/html/inherit__graph__2.png -share/doc/libcairomm-1.0/reference/html/inherit__graph__3.map -share/doc/libcairomm-1.0/reference/html/inherit__graph__3.md5 -share/doc/libcairomm-1.0/reference/html/inherit__graph__3.png -share/doc/libcairomm-1.0/reference/html/inherit__graph__4.map -share/doc/libcairomm-1.0/reference/html/inherit__graph__4.md5 -share/doc/libcairomm-1.0/reference/html/inherit__graph__4.png -share/doc/libcairomm-1.0/reference/html/inherit__graph__5.map -share/doc/libcairomm-1.0/reference/html/inherit__graph__5.md5 -share/doc/libcairomm-1.0/reference/html/inherit__graph__5.png -share/doc/libcairomm-1.0/reference/html/inherit__graph__6.map -share/doc/libcairomm-1.0/reference/html/inherit__graph__6.md5 -share/doc/libcairomm-1.0/reference/html/inherit__graph__6.png -share/doc/libcairomm-1.0/reference/html/inherit__graph__7.map -share/doc/libcairomm-1.0/reference/html/inherit__graph__7.md5 -share/doc/libcairomm-1.0/reference/html/inherit__graph__7.png -share/doc/libcairomm-1.0/reference/html/inherit__graph__8.map -share/doc/libcairomm-1.0/reference/html/inherit__graph__8.md5 -share/doc/libcairomm-1.0/reference/html/inherit__graph__8.png -share/doc/libcairomm-1.0/reference/html/inherit__graph__9.map -share/doc/libcairomm-1.0/reference/html/inherit__graph__9.md5 -share/doc/libcairomm-1.0/reference/html/inherit__graph__9.png -share/doc/libcairomm-1.0/reference/html/inherits.html -share/doc/libcairomm-1.0/reference/html/namespaceCairo.html -share/doc/libcairomm-1.0/reference/html/namespacemembers.html -share/doc/libcairomm-1.0/reference/html/namespacemembers_enum.html -share/doc/libcairomm-1.0/reference/html/namespacemembers_eval.html -share/doc/libcairomm-1.0/reference/html/namespacemembers_type.html -share/doc/libcairomm-1.0/reference/html/namespaces.html -share/doc/libcairomm-1.0/reference/html/pages.html -share/doc/libcairomm-1.0/reference/html/path_8h-source.html -share/doc/libcairomm-1.0/reference/html/path_8h.html -share/doc/libcairomm-1.0/reference/html/pattern_8h-source.html -share/doc/libcairomm-1.0/reference/html/pattern_8h.html -share/doc/libcairomm-1.0/reference/html/quartz__surface_8h-source.html -share/doc/libcairomm-1.0/reference/html/quartz__surface_8h.html -share/doc/libcairomm-1.0/reference/html/refptr_8h-source.html -share/doc/libcairomm-1.0/reference/html/refptr_8h.html -share/doc/libcairomm-1.0/reference/html/scaledfont_8h-source.html -share/doc/libcairomm-1.0/reference/html/scaledfont_8h.html -share/doc/libcairomm-1.0/reference/html/structCairo_1_1ColorStop-members.html -share/doc/libcairomm-1.0/reference/html/structCairo_1_1ColorStop.html -share/doc/libcairomm-1.0/reference/html/surface_8h-source.html -share/doc/libcairomm-1.0/reference/html/surface_8h.html -share/doc/libcairomm-1.0/reference/html/tabs.css -share/doc/libcairomm-1.0/reference/html/todo.html -share/doc/libcairomm-1.0/reference/html/win32__surface_8h-source.html -share/doc/libcairomm-1.0/reference/html/win32__surface_8h.html -share/doc/libcairomm-1.0/reference/html/xlib__surface_8h-source.html -share/doc/libcairomm-1.0/reference/html/xlib__surface_8h.html -@dirrm share/doc/libcairomm-1.0/reference/html -@dirrm share/doc/libcairomm-1.0/reference -@dirrm share/doc/libcairomm-1.0 -@dirrm include/cairomm-1.0/cairomm -@dirrm include/cairomm-1.0 diff --git a/graphics/eog/Makefile b/graphics/eog/Makefile deleted file mode 100644 index aef397e72..000000000 --- a/graphics/eog/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: eog2 -# Date created: 21 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/eog/Makefile,v 1.73 2008/02/25 21:07:33 kwm Exp $ -# - -PORTNAME= eog -PORTVERSION= 2.22.0 -CATEGORIES= graphics gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= The Eye Of Gnome image viewer - -#USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack librsvg2 desktopfileutils \ - gnomedesktop -INSTALLS_ICONS= yes -USE_GETTEXT= yes -USE_XLIB= yes -INSTALLS_OMF= yes -GNU_CONFIGURE= yes -GNOME_DESKTOP_VERSION=2 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= eog.schemas - -.include <bsd.port.pre.mk> - -.if !defined(WITHOUT_EXIF) || (exists(${LOCALBASE}/lib/libexif.so.12) || \ - defined(WITH_EXIF)) -LIB_DEPENDS+= exif.12:${PORTSDIR}/graphics/libexif -.endif - -.if ${HAVE_GNOME:Mpygnome2}!="" -USE_GNOME+= pygnome2 -CONFIGURE_ARGS+=--enable-python -.else -CONFIGURE_ARGS+=--disable-python -.endif - -post-install: - @-update-desktop-database > /dev/null - -.include <bsd.port.post.mk> diff --git a/graphics/eog/distinfo b/graphics/eog/distinfo deleted file mode 100644 index 833452558..000000000 --- a/graphics/eog/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/eog-2.22.0.tar.gz) = 93feaa489b19c58b22ccebfaa37479d7 -SHA256 (gnome2/eog-2.22.0.tar.gz) = 36a19fb5127f629d17d14ad1918c700ee0c9fc9d028276f405bcf163c73d06ab -SIZE (gnome2/eog-2.22.0.tar.gz) = 2617900 diff --git a/graphics/eog/pkg-descr b/graphics/eog/pkg-descr deleted file mode 100644 index 920f1863a..000000000 --- a/graphics/eog/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -This is the Eye of Gnome, a GNOME 2 image viewer and cataloging -application. It provides inline image viewing support for -nautilus. - -WWW: http://www.gnome.org/gnome-office/eog.shtml diff --git a/graphics/eog/pkg-plist b/graphics/eog/pkg-plist deleted file mode 100644 index d42b43a18..000000000 --- a/graphics/eog/pkg-plist +++ /dev/null @@ -1,309 +0,0 @@ -bin/eog -include/eog-2.20/eog/eog-application.h -include/eog-2.20/eog/eog-debug.h -include/eog-2.20/eog/eog-dialog.h -include/eog-2.20/eog/eog-error-message-area.h -include/eog-2.20/eog/eog-file-chooser.h -include/eog-2.20/eog/eog-image-save-info.h -include/eog-2.20/eog/eog-image.h -include/eog-2.20/eog/eog-job-queue.h -include/eog-2.20/eog/eog-jobs.h -include/eog-2.20/eog/eog-list-store.h -include/eog-2.20/eog/eog-message-area.h -include/eog-2.20/eog/eog-plugin.h -include/eog-2.20/eog/eog-properties-dialog.h -include/eog-2.20/eog/eog-scroll-view.h -include/eog-2.20/eog/eog-sidebar.h -include/eog-2.20/eog/eog-statusbar.h -include/eog-2.20/eog/eog-thumb-nav.h -include/eog-2.20/eog/eog-thumb-view.h -include/eog-2.20/eog/eog-thumbnail.h -include/eog-2.20/eog/eog-transform.h -include/eog-2.20/eog/eog-window.h -libdata/pkgconfig/eog.pc -share/applications/eog.desktop -%%DATADIR%%/eog-image-properties-dialog.glade -%%DATADIR%%/eog-multiple-save-as-dialog.glade -%%DATADIR%%/eog-preferences-dialog.glade -%%DATADIR%%/eog-toolbar.xml -%%DATADIR%%/eog-ui.xml -%%DATADIR%%/gtkrc -%%DATADIR%%/icons/hicolor/16x16/actions/eog-image-collection.png -%%DATADIR%%/icons/hicolor/16x16/actions/eog-plugin.png -%%DATADIR%%/icons/hicolor/22x22/actions/eog-image-collection.png -%%DATADIR%%/icons/hicolor/22x22/actions/eog-plugin.png -%%DATADIR%%/icons/hicolor/24x24/actions/eog-image-collection.png -%%DATADIR%%/icons/hicolor/32x32/actions/eog-image-collection.png -%%DATADIR%%/icons/hicolor/32x32/actions/eog-plugin.png -%%DATADIR%%/icons/hicolor/scalable/actions/eog-image-collection.svg -%%DATADIR%%/icons/hicolor/scalable/actions/eog-plugin.svg -%%DATADIR%%/pixmaps/thumbnail-frame.png -share/gnome/help/eog/C/eog.xml -share/gnome/help/eog/C/figures/eog_save_as_window.png -share/gnome/help/eog/C/figures/eog_start_window.png -share/gnome/help/eog/C/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/C/legal.xml -share/gnome/help/eog/da/eog.xml -share/gnome/help/eog/da/figures/eog_save_as_window.png -share/gnome/help/eog/da/figures/eog_start_window.png -share/gnome/help/eog/da/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/de/eog.xml -share/gnome/help/eog/de/figures/eog_save_as_window.png -share/gnome/help/eog/de/figures/eog_start_window.png -share/gnome/help/eog/de/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/en_GB/eog.xml -share/gnome/help/eog/en_GB/figures/eog_save_as_window.png -share/gnome/help/eog/en_GB/figures/eog_start_window.png -share/gnome/help/eog/en_GB/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/es/eog.xml -share/gnome/help/eog/es/figures/eog_save_as_window.png -share/gnome/help/eog/es/figures/eog_start_window.png -share/gnome/help/eog/es/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/eu/eog.xml -share/gnome/help/eog/eu/figures/eog_save_as_window.png -share/gnome/help/eog/eu/figures/eog_start_window.png -share/gnome/help/eog/eu/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/fr/eog.xml -share/gnome/help/eog/fr/figures/eog_save_as_window.png -share/gnome/help/eog/fr/figures/eog_start_window.png -share/gnome/help/eog/fr/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/it/eog.xml -share/gnome/help/eog/it/figures/eog_save_as_window.png -share/gnome/help/eog/it/figures/eog_start_window.png -share/gnome/help/eog/it/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/ja/eog.xml -share/gnome/help/eog/ja/figures/eog_save_as_window.png -share/gnome/help/eog/ja/figures/eog_start_window.png -share/gnome/help/eog/ja/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/ko/eog.xml -share/gnome/help/eog/ko/figures/eog_save_as_window.png -share/gnome/help/eog/ko/figures/eog_start_window.png -share/gnome/help/eog/ko/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/oc/eog.xml -share/gnome/help/eog/oc/figures/eog_save_as_window.png -share/gnome/help/eog/oc/figures/eog_start_window.png -share/gnome/help/eog/oc/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/pa/eog.xml -share/gnome/help/eog/pa/figures/eog_save_as_window.png -share/gnome/help/eog/pa/figures/eog_start_window.png -share/gnome/help/eog/pa/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/pt_BR/eog.xml -share/gnome/help/eog/pt_BR/figures/eog_save_as_window.png -share/gnome/help/eog/pt_BR/figures/eog_start_window.png -share/gnome/help/eog/pt_BR/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/ru/eog.xml -share/gnome/help/eog/ru/figures/eog_save_as_window.png -share/gnome/help/eog/ru/figures/eog_start_window.png -share/gnome/help/eog/ru/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/sv/eog.xml -share/gnome/help/eog/sv/figures/eog_save_as_window.png -share/gnome/help/eog/sv/figures/eog_start_window.png -share/gnome/help/eog/sv/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/uk/eog.xml -share/gnome/help/eog/uk/figures/eog_save_as_window.png -share/gnome/help/eog/uk/figures/eog_start_window.png -share/gnome/help/eog/uk/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/zh_CN/eog.xml -share/gnome/help/eog/zh_CN/figures/eog_save_as_window.png -share/gnome/help/eog/zh_CN/figures/eog_start_window.png -share/gnome/help/eog/zh_CN/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/zh_TW/eog.xml -share/gnome/help/eog/zh_TW/figures/eog_save_as_window.png -share/gnome/help/eog/zh_TW/figures/eog_start_window.png -share/gnome/help/eog/zh_TW/figures/eog_toolbar_editor_window.png -share/icons/hicolor/16x16/apps/eog.png -share/icons/hicolor/22x22/apps/eog.png -share/icons/hicolor/24x24/apps/eog.png -share/icons/hicolor/32x32/apps/eog.png -share/icons/hicolor/scalable/apps/eog.svg -share/locale/af/LC_MESSAGES/eog.mo -share/locale/am/LC_MESSAGES/eog.mo -share/locale/ar/LC_MESSAGES/eog.mo -share/locale/as/LC_MESSAGES/eog.mo -share/locale/az/LC_MESSAGES/eog.mo -share/locale/be/LC_MESSAGES/eog.mo -share/locale/be@latin/LC_MESSAGES/eog.mo -share/locale/bg/LC_MESSAGES/eog.mo -share/locale/bn/LC_MESSAGES/eog.mo -share/locale/bn_IN/LC_MESSAGES/eog.mo -share/locale/bs/LC_MESSAGES/eog.mo -share/locale/ca/LC_MESSAGES/eog.mo -share/locale/cs/LC_MESSAGES/eog.mo -share/locale/cy/LC_MESSAGES/eog.mo -share/locale/da/LC_MESSAGES/eog.mo -share/locale/de/LC_MESSAGES/eog.mo -share/locale/dz/LC_MESSAGES/eog.mo -share/locale/el/LC_MESSAGES/eog.mo -share/locale/en_CA/LC_MESSAGES/eog.mo -share/locale/en_GB/LC_MESSAGES/eog.mo -share/locale/es/LC_MESSAGES/eog.mo -share/locale/et/LC_MESSAGES/eog.mo -share/locale/eu/LC_MESSAGES/eog.mo -share/locale/fa/LC_MESSAGES/eog.mo -share/locale/fi/LC_MESSAGES/eog.mo -share/locale/fr/LC_MESSAGES/eog.mo -share/locale/ga/LC_MESSAGES/eog.mo -share/locale/gl/LC_MESSAGES/eog.mo -share/locale/gu/LC_MESSAGES/eog.mo -share/locale/he/LC_MESSAGES/eog.mo -share/locale/hi/LC_MESSAGES/eog.mo -share/locale/hr/LC_MESSAGES/eog.mo -share/locale/hu/LC_MESSAGES/eog.mo -share/locale/id/LC_MESSAGES/eog.mo -share/locale/is/LC_MESSAGES/eog.mo -share/locale/it/LC_MESSAGES/eog.mo -share/locale/ja/LC_MESSAGES/eog.mo -share/locale/ka/LC_MESSAGES/eog.mo -share/locale/kn/LC_MESSAGES/eog.mo -share/locale/ko/LC_MESSAGES/eog.mo -share/locale/ku/LC_MESSAGES/eog.mo -share/locale/lt/LC_MESSAGES/eog.mo -share/locale/lv/LC_MESSAGES/eog.mo -share/locale/mg/LC_MESSAGES/eog.mo -share/locale/mk/LC_MESSAGES/eog.mo -share/locale/ml/LC_MESSAGES/eog.mo -share/locale/mn/LC_MESSAGES/eog.mo -share/locale/mr/LC_MESSAGES/eog.mo -share/locale/ms/LC_MESSAGES/eog.mo -share/locale/nb/LC_MESSAGES/eog.mo -share/locale/ne/LC_MESSAGES/eog.mo -share/locale/nl/LC_MESSAGES/eog.mo -share/locale/nn/LC_MESSAGES/eog.mo -share/locale/nso/LC_MESSAGES/eog.mo -share/locale/oc/LC_MESSAGES/eog.mo -share/locale/or/LC_MESSAGES/eog.mo -share/locale/pa/LC_MESSAGES/eog.mo -share/locale/pl/LC_MESSAGES/eog.mo -share/locale/pt/LC_MESSAGES/eog.mo -share/locale/pt_BR/LC_MESSAGES/eog.mo -share/locale/ro/LC_MESSAGES/eog.mo -share/locale/ru/LC_MESSAGES/eog.mo -share/locale/rw/LC_MESSAGES/eog.mo -share/locale/si/LC_MESSAGES/eog.mo -share/locale/sk/LC_MESSAGES/eog.mo -share/locale/sl/LC_MESSAGES/eog.mo -share/locale/sq/LC_MESSAGES/eog.mo -share/locale/sr/LC_MESSAGES/eog.mo -share/locale/sr@Latn/LC_MESSAGES/eog.mo -share/locale/sv/LC_MESSAGES/eog.mo -share/locale/ta/LC_MESSAGES/eog.mo -share/locale/te/LC_MESSAGES/eog.mo -share/locale/th/LC_MESSAGES/eog.mo -share/locale/tk/LC_MESSAGES/eog.mo -share/locale/tr/LC_MESSAGES/eog.mo -share/locale/ug/LC_MESSAGES/eog.mo -share/locale/uk/LC_MESSAGES/eog.mo -share/locale/vi/LC_MESSAGES/eog.mo -share/locale/wa/LC_MESSAGES/eog.mo -share/locale/xh/LC_MESSAGES/eog.mo -share/locale/zh_CN/LC_MESSAGES/eog.mo -share/locale/zh_HK/LC_MESSAGES/eog.mo -share/locale/zh_TW/LC_MESSAGES/eog.mo -share/locale/zu/LC_MESSAGES/eog.mo -share/omf/eog/eog-C.omf -share/omf/eog/eog-da.omf -share/omf/eog/eog-de.omf -share/omf/eog/eog-en_GB.omf -share/omf/eog/eog-es.omf -share/omf/eog/eog-eu.omf -share/omf/eog/eog-fr.omf -share/omf/eog/eog-it.omf -share/omf/eog/eog-ja.omf -share/omf/eog/eog-ko.omf -share/omf/eog/eog-oc.omf -share/omf/eog/eog-pa.omf -share/omf/eog/eog-pt_BR.omf -share/omf/eog/eog-ru.omf -share/omf/eog/eog-sv.omf -share/omf/eog/eog-uk.omf -share/omf/eog/eog-zh_CN.omf -share/omf/eog/eog-zh_TW.omf -@dirrm share/omf/eog -@dirrm share/gnome/help/eog/zh_TW/figures -@dirrm share/gnome/help/eog/zh_TW -@dirrm share/gnome/help/eog/zh_CN/figures -@dirrm share/gnome/help/eog/zh_CN -@dirrm share/gnome/help/eog/uk/figures -@dirrm share/gnome/help/eog/uk -@dirrm share/gnome/help/eog/sv/figures -@dirrm share/gnome/help/eog/sv -@dirrm share/gnome/help/eog/ru/figures -@dirrm share/gnome/help/eog/ru -@dirrm share/gnome/help/eog/pt_BR/figures -@dirrm share/gnome/help/eog/pt_BR -@dirrm share/gnome/help/eog/pa/figures -@dirrm share/gnome/help/eog/pa -@dirrm share/gnome/help/eog/oc/figures -@dirrm share/gnome/help/eog/oc -@dirrm share/gnome/help/eog/ko/figures -@dirrm share/gnome/help/eog/ko -@dirrm share/gnome/help/eog/ja/figures -@dirrm share/gnome/help/eog/ja -@dirrm share/gnome/help/eog/it/figures -@dirrm share/gnome/help/eog/it -@dirrm share/gnome/help/eog/fr/figures -@dirrm share/gnome/help/eog/fr -@dirrm share/gnome/help/eog/eu/figures -@dirrm share/gnome/help/eog/eu -@dirrm share/gnome/help/eog/es/figures -@dirrm share/gnome/help/eog/es -@dirrm share/gnome/help/eog/en_GB/figures -@dirrm share/gnome/help/eog/en_GB -@dirrm share/gnome/help/eog/de/figures -@dirrm share/gnome/help/eog/de -@dirrm share/gnome/help/eog/da/figures -@dirrm share/gnome/help/eog/da -@dirrm share/gnome/help/eog/C/figures -@dirrm share/gnome/help/eog/C -@dirrm share/gnome/help/eog -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/icons/hicolor/scalable/actions -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/32x32/actions -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm include/eog-2.20/eog -@dirrm include/eog-2.20 -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/graphics/evince/Makefile b/graphics/evince/Makefile deleted file mode 100644 index 4fa77f8e0..000000000 --- a/graphics/evince/Makefile +++ /dev/null @@ -1,123 +0,0 @@ -# New ports collection makefile for: evince -# Date created: 09 January 2005 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/evince/Makefile,v 1.96 2008/03/13 16:39:02 ahze Exp $ -# - -PORTNAME= evince -PORTVERSION= 2.22.0 -PORTREVISION= 3 -CATEGORIES= graphics print gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 2 multi-format document viewer - -LIB_DEPENDS= poppler-glib.2:${PORTSDIR}/graphics/poppler-gtk \ - spectre.1:${PORTSDIR}/print/libspectre - -USE_LDCONFIG= yes -USE_BZIP2= yes -USE_AUTOTOOLS= libtool:15 -INSTALLS_ICONS= yes -USE_GETTEXT= yes -USE_XLIB= yes -USE_GMAKE= yes -INSTALLS_OMF= yes -USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui desktopfileutils \ - gnomedocutils ltasneededhack -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-print=gtk - -GCONF_SCHEMAS= evince.schemas evince-thumbnailer.schemas \ - evince-thumbnailer-ps.schemas - -MAN1= evince.1 - -OPTIONS= DVI "Enable DVI viewer support" off \ - T1LIB "Enable T1LIB for TYPE1 fonts to DVI (Enables DVI)" off \ - NAUTILUS "Enable Nautilus plugin" on \ - DBUS "Enable D-BUS support" on \ - COMICS "Enable comic book archives support" on \ - IMPRESS "Enable Impress presentations support" off \ - DJVU "Enable DJVU support" off - -.include <bsd.port.pre.mk> - -.if defined(PACKAGE_BUILDING) || exists(${LOCALBASE}/lib/libdbus-glib-1.so) -WITH_DBUS= yes -.endif - -.if defined(WITH_DVI) || defined(WITH_T1LIB) || exists(${LOCALBASE}/lib/libkpathsea.a) -BUILD_DEPENDS+= tex:${PORTSDIR}/print/teTeX-base -RUN_DEPENDS+= tex:${PORTSDIR}/print/teTeX-base - -CONFIGURE_ARGS+= --enable-dvi -GCONF_SCHEMAS+= evince-thumbnailer-dvi.schemas -PLIST_SUB+= DVI="" -. if defined(WITH_T1LIB) -LIB_DEPENDS+= t1.5:${PORTSDIR}/devel/t1lib - -CONFIGURE_ARGS+= --enable-t1lib -. endif -.else -PLIST_SUB+= DVI="@comment " -.endif - -.if !defined(WITHOUT_NAUTILUS) -USE_GNOME+= nautilus2 -CONFIGURE_ARGS+= --enable-nautilus -PLIST_SUB+= NAUTILUS="" -.else -CONFIGURE_ARGS+= --disable-nautilus -PLIST_SUB+= NAUTILUS="@comment " -.endif - -.if defined(WITH_IMPRESS) -CONFIGURE_ARGS+= --enable-impress -.else -CONFIGURE_ARGS+= --disable-impress -.endif - -.if exists(${LOCALBASE}/bin/djview) -DJVU_DIR?= # empty -.else -DJVU_DIR?= -nox11 -.endif - -.if defined(WITH_DJVU) -LIB_DEPENDS+= djvulibre.20:${PORTSDIR}/graphics/djvulibre${DJVU_DIR} -CONFIGURE_ARGS+= --enable-djvu -GCONF_SCHEMAS+= evince-thumbnailer-djvu.schemas -PLIST_SUB+= DJVU="" -.else -CONFIGURE_ARGS+= --disable-djvu -PLIST_SUB+= DJVU="@comment " -.endif - -.if !defined(WITHOUT_DBUS) -LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib -.endif - -.if !defined(WITHOUT_COMICS) -RUN_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip -CONFIGURE_ARGS+= --enable-comics -GCONF_SCHEMAS+= evince-thumbnailer-comics.schemas -PLIST_SUB+= COMICS="" -.else -CONFIGURE_ARGS+= --disable-comics -PLIST_SUB+= COMICS="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|execinfo.h|#|g' \ - ${WRKSRC}/configure - -post-install: - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/graphics/evince/distinfo b/graphics/evince/distinfo deleted file mode 100644 index b498784dd..000000000 --- a/graphics/evince/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/evince-2.22.0.tar.bz2) = 9fc7eb5757549626b7515b853a5f6b97 -SHA256 (gnome2/evince-2.22.0.tar.bz2) = 293778da77d42d8474bb401dc1a50d8e7d67b40b84ddce5fd39f871fef06a7ca -SIZE (gnome2/evince-2.22.0.tar.bz2) = 1618429 diff --git a/graphics/evince/files/patch-configure b/graphics/evince/files/patch-configure deleted file mode 100644 index 9ca1314d6..000000000 --- a/graphics/evince/files/patch-configure +++ /dev/null @@ -1,29 +0,0 @@ ---- configure.orig 2007-08-27 23:27:26.000000000 -0400 -+++ configure 2007-08-27 23:29:35.000000000 -0400 -@@ -25411,7 +25411,7 @@ fi - - - --for ac_header in execinfo.h -+for ac_header in # - do - as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` - if eval "test \"\${$as_ac_Header+set}\" = set"; then -@@ -26204,7 +26204,7 @@ else - echo "${ECHO_T}yes" >&6 - enable_cairo_pdf=yes - fi -- if test x$enable_cairo_pdf == xyes; then -+ if test x$enable_cairo_pdf = xyes; then - - cat >>confdefs.h <<\_ACEOF - #define HAVE_CAIRO_PDF 1 -@@ -26283,7 +26283,7 @@ else - echo "${ECHO_T}yes" >&6 - enable_cairo_ps=yes - fi -- if test x$enable_cairo_ps == xyes; then -+ if test x$enable_cairo_ps = xyes; then - - cat >>confdefs.h <<\_ACEOF - #define HAVE_CAIRO_PS 1 diff --git a/graphics/evince/pkg-descr b/graphics/evince/pkg-descr deleted file mode 100644 index 800f6fcd3..000000000 --- a/graphics/evince/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Evince is a document viewer for multiple document formats including PDF and -Postscript. The goal of evince is to replace document viewers such as ggv and -gpdf with a single, simple application. - -WWW: http://www.gnome.org/projects/evince/ diff --git a/graphics/evince/pkg-plist b/graphics/evince/pkg-plist deleted file mode 100644 index 79fa10615..000000000 --- a/graphics/evince/pkg-plist +++ /dev/null @@ -1,357 +0,0 @@ -bin/evince -bin/evince-thumbnailer -include/evince-2.20/evince/ev-async-renderer.h -include/evince-2.20/evince/ev-attachment.h -include/evince-2.20/evince/ev-document-find.h -include/evince-2.20/evince/ev-document-fonts.h -include/evince-2.20/evince/ev-document-forms.h -include/evince-2.20/evince/ev-document-images.h -include/evince-2.20/evince/ev-document-info.h -include/evince-2.20/evince/ev-document-links.h -include/evince-2.20/evince/ev-document-misc.h -include/evince-2.20/evince/ev-document-security.h -include/evince-2.20/evince/ev-document-thumbnails.h -include/evince-2.20/evince/ev-document-transition.h -include/evince-2.20/evince/ev-document.h -include/evince-2.20/evince/ev-file-exporter.h -include/evince-2.20/evince/ev-file-helpers.h -include/evince-2.20/evince/ev-form-field.h -include/evince-2.20/evince/ev-image.h -include/evince-2.20/evince/ev-link-action.h -include/evince-2.20/evince/ev-link-dest.h -include/evince-2.20/evince/ev-link.h -include/evince-2.20/evince/ev-render-context.h -include/evince-2.20/evince/ev-selection.h -include/evince-2.20/evince/ev-transition-effect.h -%%COMICS%%lib/evince/backends/comicsdocument.evince-backend -%%DJVU%%lib/evince/backends/djvudocument.evince-backend -%%DVI%%lib/evince/backends/dvidocument.evince-backend -%%COMICS%%lib/evince/backends/libcomicsdocument.a -%%COMICS%%lib/evince/backends/libcomicsdocument.la -%%COMICS%%lib/evince/backends/libcomicsdocument.so -%%DJVU%%lib/evince/backends/libdjvudocument.a -%%DJVU%%lib/evince/backends/libdjvudocument.la -%%DJVU%%lib/evince/backends/libdjvudocument.so -%%DVI%%lib/evince/backends/libdvidocument.a -%%DVI%%lib/evince/backends/libdvidocument.la -%%DVI%%lib/evince/backends/libdvidocument.so -lib/evince/backends/libpdfdocument.a -lib/evince/backends/libpdfdocument.la -lib/evince/backends/libpdfdocument.so -lib/evince/backends/libpsdocument.a -lib/evince/backends/libpsdocument.la -lib/evince/backends/libpsdocument.so -lib/evince/backends/libtiffdocument.a -lib/evince/backends/libtiffdocument.la -lib/evince/backends/libtiffdocument.so -lib/evince/backends/pdfdocument.evince-backend -lib/evince/backends/psdocument.evince-backend -lib/evince/backends/tiffdocument.evince-backend -%%NAUTILUS%%lib/nautilus/extensions-2.0/libevince-properties-page.a -%%NAUTILUS%%lib/nautilus/extensions-2.0/libevince-properties-page.la -%%NAUTILUS%%lib/nautilus/extensions-2.0/libevince-properties-page.so -lib/libevbackend.a -lib/libevbackend.la -lib/libevbackend.so -lib/libevbackend.so.0 -share/applications/evince.desktop -%%DOCSDIR%%/EvAttachment.html -%%DOCSDIR%%/EvJobPrint.html -%%DOCSDIR%%/EvNavigationAction.html -%%DOCSDIR%%/EvNavigationActionWidget.html -%%DOCSDIR%%/EvPageAction.html -%%DOCSDIR%%/EvPageActionWidget.html -%%DOCSDIR%%/EvWindow.html -%%DOCSDIR%%/evince-EvHistory.html -%%DOCSDIR%%/evince-EvImage.html -%%DOCSDIR%%/evince-EvPasswordDialog.html -%%DOCSDIR%%/evince-EvPasswordView.html -%%DOCSDIR%%/evince-EvRenderContext.html -%%DOCSDIR%%/evince-EvSidebar.html -%%DOCSDIR%%/evince-EvSidebarAttachments.html -%%DOCSDIR%%/evince-EvSidebarLinks.html -%%DOCSDIR%%/evince-EvSidebarThumbnails.html -%%DOCSDIR%%/evince-EvTooltip.html -%%DOCSDIR%%/evince-ev-async-renderer.html -%%DOCSDIR%%/evince-ev-document-factory.html -%%DOCSDIR%%/evince-ev-document-find.html -%%DOCSDIR%%/evince-ev-document-fonts.html -%%DOCSDIR%%/evince-ev-document-images.html -%%DOCSDIR%%/evince-ev-document-info.html -%%DOCSDIR%%/evince-ev-document-links.html -%%DOCSDIR%%/evince-ev-document-misc.html -%%DOCSDIR%%/evince-ev-document-security.html -%%DOCSDIR%%/evince-ev-document-thumbnails.html -%%DOCSDIR%%/evince-ev-document-transition.html -%%DOCSDIR%%/evince-ev-document.html -%%DOCSDIR%%/evince-ev-file-exporter.html -%%DOCSDIR%%/evince-ev-file-helpers.html -%%DOCSDIR%%/evince-ev-job-queue.html -%%DOCSDIR%%/evince-ev-link-action.html -%%DOCSDIR%%/evince-ev-link-dest.html -%%DOCSDIR%%/evince-ev-link.html -%%DOCSDIR%%/evince-ev-metadata-manager.html -%%DOCSDIR%%/evince-ev-page-cache.html -%%DOCSDIR%%/evince-ev-pixbuf-cache.html -%%DOCSDIR%%/evince-ev-properties-dialog.html -%%DOCSDIR%%/evince-ev-properties-fonts.html -%%DOCSDIR%%/evince-ev-selection.html -%%DOCSDIR%%/evince-ev-sidebar-page.html -%%DOCSDIR%%/evince-ev-stock-icons.html -%%DOCSDIR%%/evince-ev-utils.html -%%DOCSDIR%%/evince-ev-view-accessible.html -%%DOCSDIR%%/evince-ev-view.html -%%DOCSDIR%%/evince-ev-window-title.html -%%DOCSDIR%%/evince.devhelp -%%DOCSDIR%%/evince.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/ix01.html -%%DOCSDIR%%/left.png -%%DOCSDIR%%/pt01.html -%%DOCSDIR%%/pt02.html -%%DOCSDIR%%/pt03.html -%%DOCSDIR%%/pt04.html -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -%%DATADIR%%/evince-password.glade -%%DATADIR%%/evince-properties.glade -%%DATADIR%%/evince-toolbar.xml -%%DATADIR%%/evince-ui.xml -%%DATADIR%%/hand-open.png -%%DATADIR%%/icons/hicolor/16x16/actions/view-page-continuous.png -%%DATADIR%%/icons/hicolor/16x16/actions/view-page-facing.png -%%DATADIR%%/icons/hicolor/16x16/actions/zoom-fit-page.png -%%DATADIR%%/icons/hicolor/16x16/actions/zoom-fit-width.png -%%DATADIR%%/icons/hicolor/16x16/actions/zoom.png -%%DATADIR%%/icons/hicolor/22x22/actions/view-page-continuous.png -%%DATADIR%%/icons/hicolor/22x22/actions/view-page-facing.png -%%DATADIR%%/icons/hicolor/22x22/actions/zoom-fit-page.png -%%DATADIR%%/icons/hicolor/22x22/actions/zoom-fit-width.png -%%DATADIR%%/icons/hicolor/22x22/actions/zoom.png -%%DATADIR%%/icons/hicolor/24x24/actions/view-page-continuous.png -%%DATADIR%%/icons/hicolor/24x24/actions/view-page-facing.png -%%DATADIR%%/icons/hicolor/24x24/actions/zoom-fit-page.png -%%DATADIR%%/icons/hicolor/24x24/actions/zoom-fit-width.png -%%DATADIR%%/icons/hicolor/24x24/actions/zoom.png -%%DATADIR%%/icons/hicolor/32x32/actions/view-page-continuous.png -%%DATADIR%%/icons/hicolor/32x32/actions/view-page-facing.png -%%DATADIR%%/icons/hicolor/48x48/actions/view-page-continuous.png -%%DATADIR%%/icons/hicolor/48x48/actions/view-page-facing.png -share/gnome/help/evince/C/evince.xml -share/gnome/help/evince/C/figures/evince_start_window.png -share/gnome/help/evince/C/legal.xml -share/gnome/help/evince/bg/evince.xml -share/gnome/help/evince/bg/figures/evince_start_window.png -share/gnome/help/evince/ca/evince.xml -share/gnome/help/evince/ca/figures/evince_start_window.png -share/gnome/help/evince/el/evince.xml -share/gnome/help/evince/el/figures/evince_start_window.png -share/gnome/help/evince/en_GB/evince.xml -share/gnome/help/evince/en_GB/figures/evince_start_window.png -share/gnome/help/evince/es/evince.xml -share/gnome/help/evince/es/figures/evince_start_window.png -share/gnome/help/evince/fi/evince.xml -share/gnome/help/evince/fi/figures/evince_start_window.png -share/gnome/help/evince/fr/evince.xml -share/gnome/help/evince/fr/figures/evince_start_window.png -share/gnome/help/evince/it/evince.xml -share/gnome/help/evince/it/figures/evince_start_window.png -share/gnome/help/evince/ja/evince.xml -share/gnome/help/evince/ja/figures/evince_start_window.png -share/gnome/help/evince/nl/evince.xml -share/gnome/help/evince/nl/figures/evince_start_window.png -share/gnome/help/evince/oc/evince.xml -share/gnome/help/evince/oc/figures/evince_start_window.png -share/gnome/help/evince/pt_BR/evince.xml -share/gnome/help/evince/pt_BR/figures/evince_start_window.png -share/gnome/help/evince/ru/evince.xml -share/gnome/help/evince/ru/figures/evince_start_window.png -share/gnome/help/evince/sr/evince.xml -share/gnome/help/evince/sr/figures/evince_start_window.png -share/gnome/help/evince/sv/evince.xml -share/gnome/help/evince/sv/figures/evince_start_window.png -share/gnome/help/evince/uk/evince.xml -share/gnome/help/evince/uk/figures/evince_start_window.png -share/gnome/help/evince/zh_CN/evince.xml -share/gnome/help/evince/zh_CN/figures/evince_start_window.png -share/icons/hicolor/16x16/apps/evince.png -share/icons/hicolor/22x22/apps/evince.png -share/icons/hicolor/24x24/apps/evince.png -share/icons/hicolor/48x48/apps/evince.png -share/icons/hicolor/scalable/apps/evince.svg -share/locale/ar/LC_MESSAGES/evince.mo -share/locale/as/LC_MESSAGES/evince.mo -share/locale/be/LC_MESSAGES/evince.mo -share/locale/be@latin/LC_MESSAGES/evince.mo -share/locale/bg/LC_MESSAGES/evince.mo -share/locale/bn/LC_MESSAGES/evince.mo -share/locale/bn_IN/LC_MESSAGES/evince.mo -share/locale/br/LC_MESSAGES/evince.mo -share/locale/ca/LC_MESSAGES/evince.mo -share/locale/cs/LC_MESSAGES/evince.mo -share/locale/cy/LC_MESSAGES/evince.mo -share/locale/da/LC_MESSAGES/evince.mo -share/locale/de/LC_MESSAGES/evince.mo -share/locale/dz/LC_MESSAGES/evince.mo -share/locale/el/LC_MESSAGES/evince.mo -share/locale/en_CA/LC_MESSAGES/evince.mo -share/locale/en_GB/LC_MESSAGES/evince.mo -share/locale/es/LC_MESSAGES/evince.mo -share/locale/et/LC_MESSAGES/evince.mo -share/locale/eu/LC_MESSAGES/evince.mo -share/locale/fa/LC_MESSAGES/evince.mo -share/locale/fi/LC_MESSAGES/evince.mo -share/locale/fr/LC_MESSAGES/evince.mo -share/locale/ga/LC_MESSAGES/evince.mo -share/locale/gl/LC_MESSAGES/evince.mo -share/locale/gu/LC_MESSAGES/evince.mo -share/locale/he/LC_MESSAGES/evince.mo -share/locale/hi/LC_MESSAGES/evince.mo -share/locale/hu/LC_MESSAGES/evince.mo -share/locale/id/LC_MESSAGES/evince.mo -share/locale/it/LC_MESSAGES/evince.mo -share/locale/ja/LC_MESSAGES/evince.mo -share/locale/ka/LC_MESSAGES/evince.mo -share/locale/ko/LC_MESSAGES/evince.mo -share/locale/kn/LC_MESSAGES/evince.mo -share/locale/ku/LC_MESSAGES/evince.mo -share/locale/lt/LC_MESSAGES/evince.mo -share/locale/lv/LC_MESSAGES/evince.mo -share/locale/mg/LC_MESSAGES/evince.mo -share/locale/mk/LC_MESSAGES/evince.mo -share/locale/ml/LC_MESSAGES/evince.mo -share/locale/mr/LC_MESSAGES/evince.mo -share/locale/nb/LC_MESSAGES/evince.mo -share/locale/ne/LC_MESSAGES/evince.mo -share/locale/nl/LC_MESSAGES/evince.mo -share/locale/nn/LC_MESSAGES/evince.mo -share/locale/oc/LC_MESSAGES/evince.mo -share/locale/or/LC_MESSAGES/evince.mo -share/locale/pa/LC_MESSAGES/evince.mo -share/locale/pl/LC_MESSAGES/evince.mo -share/locale/pt/LC_MESSAGES/evince.mo -share/locale/pt_BR/LC_MESSAGES/evince.mo -share/locale/ro/LC_MESSAGES/evince.mo -share/locale/ru/LC_MESSAGES/evince.mo -share/locale/rw/LC_MESSAGES/evince.mo -share/locale/sk/LC_MESSAGES/evince.mo -share/locale/sl/LC_MESSAGES/evince.mo -share/locale/si/LC_MESSAGES/evince.mo -share/locale/sq/LC_MESSAGES/evince.mo -share/locale/sr/LC_MESSAGES/evince.mo -share/locale/sr@Latn/LC_MESSAGES/evince.mo -share/locale/sv/LC_MESSAGES/evince.mo -share/locale/ta/LC_MESSAGES/evince.mo -share/locale/te/LC_MESSAGES/evince.mo -share/locale/th/LC_MESSAGES/evince.mo -share/locale/tr/LC_MESSAGES/evince.mo -share/locale/uk/LC_MESSAGES/evince.mo -share/locale/vi/LC_MESSAGES/evince.mo -share/locale/wa/LC_MESSAGES/evince.mo -share/locale/zh_CN/LC_MESSAGES/evince.mo -share/locale/zh_HK/LC_MESSAGES/evince.mo -share/locale/zh_TW/LC_MESSAGES/evince.mo -share/omf/evince/evince-C.omf -share/omf/evince/evince-bg.omf -share/omf/evince/evince-ca.omf -share/omf/evince/evince-el.omf -share/omf/evince/evince-en_GB.omf -share/omf/evince/evince-es.omf -share/omf/evince/evince-fi.omf -share/omf/evince/evince-fr.omf -share/omf/evince/evince-it.omf -share/omf/evince/evince-ja.omf -share/omf/evince/evince-nl.omf -share/omf/evince/evince-oc.omf -share/omf/evince/evince-pt_BR.omf -share/omf/evince/evince-ru.omf -share/omf/evince/evince-sr.omf -share/omf/evince/evince-sv.omf -share/omf/evince/evince-uk.omf -share/omf/evince/evince-zh_CN.omf -@dirrm share/omf/evince -@dirrm share/gnome/help/evince/zh_CN/figures -@dirrm share/gnome/help/evince/zh_CN -@dirrm share/gnome/help/evince/uk/figures -@dirrm share/gnome/help/evince/uk -@dirrm share/gnome/help/evince/sv/figures -@dirrm share/gnome/help/evince/sv -@dirrm share/gnome/help/evince/sr/figures -@dirrm share/gnome/help/evince/sr -@dirrm share/gnome/help/evince/ru/figures -@dirrm share/gnome/help/evince/ru -@dirrm share/gnome/help/evince/pt_BR/figures -@dirrm share/gnome/help/evince/pt_BR -@dirrm share/gnome/help/evince/oc/figures -@dirrm share/gnome/help/evince/oc -@dirrm share/gnome/help/evince/nl/figures -@dirrm share/gnome/help/evince/nl -@dirrm share/gnome/help/evince/ja/figures -@dirrm share/gnome/help/evince/ja -@dirrm share/gnome/help/evince/it/figures -@dirrm share/gnome/help/evince/it -@dirrm share/gnome/help/evince/fr/figures -@dirrm share/gnome/help/evince/fr -@dirrm share/gnome/help/evince/fi/figures -@dirrm share/gnome/help/evince/fi -@dirrm share/gnome/help/evince/es/figures -@dirrm share/gnome/help/evince/es -@dirrm share/gnome/help/evince/en_GB/figures -@dirrm share/gnome/help/evince/en_GB -@dirrm share/gnome/help/evince/el/figures -@dirrm share/gnome/help/evince/el -@dirrm share/gnome/help/evince/ca/figures -@dirrm share/gnome/help/evince/ca -@dirrm share/gnome/help/evince/bg/figures -@dirrm share/gnome/help/evince/bg -@dirrm share/gnome/help/evince/C/figures -@dirrm share/gnome/help/evince/C -@dirrm share/gnome/help/evince -@dirrm %%DATADIR%%/icons/hicolor/48x48/actions -@dirrm %%DATADIR%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/icons/hicolor/32x32/actions -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrm %%DOCSDIR%% -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/applications -@dirrm lib/evince/backends -@dirrm lib/evince -@dirrm include/evince-2.20/evince -@dirrm include/evince-2.20 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/graphics/goocanvas/Makefile b/graphics/goocanvas/Makefile deleted file mode 100644 index 2ebbbfbcd..000000000 --- a/graphics/goocanvas/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# New ports collection makefile for: goocanvas -# Date created: 2006-09-20 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/goocanvas/Makefile,v 1.1 2006/09/21 00:08:36 ahze Exp $ - -PORTNAME= goocanvas -PORTVERSION= 0.9 -CATEGORIES= graphics -MASTER_SITES= SOURCEFORGE - -MAINTAINER= ahze@FreeBSD.org -COMMENT= Canvas widget for GTK+ - -USE_GNOME= gtk20 gnomehack ltverhack -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes - -post-patch: - @${REINPLACE_CMD} -e 's|$${datadir}/gtk-doc/html|${DOCSDIR}|' \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/graphics/goocanvas/distinfo b/graphics/goocanvas/distinfo deleted file mode 100644 index 554b76e2d..000000000 --- a/graphics/goocanvas/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (goocanvas-0.9.tar.gz) = 600f28e51736b9d768108c32172b0726 -SHA256 (goocanvas-0.9.tar.gz) = d9435a02e1aea2317ed73106f12c803400679f4e43bf4af54ba419c48e6ea27b -SIZE (goocanvas-0.9.tar.gz) = 749439 diff --git a/graphics/goocanvas/pkg-descr b/graphics/goocanvas/pkg-descr deleted file mode 100644 index 76cfd7e47..000000000 --- a/graphics/goocanvas/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Canvas widget for GTK+ via cairo rendering - -WWW: http://sourceforge.net/projects/goocanvas diff --git a/graphics/goocanvas/pkg-plist b/graphics/goocanvas/pkg-plist deleted file mode 100644 index d71962945..000000000 --- a/graphics/goocanvas/pkg-plist +++ /dev/null @@ -1,67 +0,0 @@ -include/goocanvas-1.0/goocanvas.h -include/goocanvas-1.0/goocanvasellipse.h -include/goocanvas-1.0/goocanvasenumtypes.h -include/goocanvas-1.0/goocanvasgroup.h -include/goocanvas-1.0/goocanvasimage.h -include/goocanvas-1.0/goocanvasitem.h -include/goocanvas-1.0/goocanvasitemmodel.h -include/goocanvas-1.0/goocanvasitemsimple.h -include/goocanvas-1.0/goocanvasmarshal.h -include/goocanvas-1.0/goocanvaspath.h -include/goocanvas-1.0/goocanvaspolyline.h -include/goocanvas-1.0/goocanvasrect.h -include/goocanvas-1.0/goocanvasstyle.h -include/goocanvas-1.0/goocanvastable.h -include/goocanvas-1.0/goocanvastext.h -include/goocanvas-1.0/goocanvasutils.h -include/goocanvas-1.0/goocanvaswidget.h -lib/libgoocanvas.a -lib/libgoocanvas.la -lib/libgoocanvas.so -lib/libgoocanvas.so.3 -libdata/pkgconfig/goocanvas.pc -%%DOCSDIR%%/goocanvas/GooCanvas.html -%%DOCSDIR%%/goocanvas/GooCanvasEllipse.html -%%DOCSDIR%%/goocanvas/GooCanvasEllipseModel.html -%%DOCSDIR%%/goocanvas/GooCanvasGroup.html -%%DOCSDIR%%/goocanvas/GooCanvasGroupModel.html -%%DOCSDIR%%/goocanvas/GooCanvasImage.html -%%DOCSDIR%%/goocanvas/GooCanvasImageModel.html -%%DOCSDIR%%/goocanvas/GooCanvasItemModelSimple.html -%%DOCSDIR%%/goocanvas/GooCanvasItemSimple.html -%%DOCSDIR%%/goocanvas/GooCanvasPath.html -%%DOCSDIR%%/goocanvas/GooCanvasPathModel.html -%%DOCSDIR%%/goocanvas/GooCanvasPolyline.html -%%DOCSDIR%%/goocanvas/GooCanvasPolylineModel.html -%%DOCSDIR%%/goocanvas/GooCanvasRect.html -%%DOCSDIR%%/goocanvas/GooCanvasRectModel.html -%%DOCSDIR%%/goocanvas/GooCanvasStyle.html -%%DOCSDIR%%/goocanvas/GooCanvasTable.html -%%DOCSDIR%%/goocanvas/GooCanvasTableModel.html -%%DOCSDIR%%/goocanvas/GooCanvasText.html -%%DOCSDIR%%/goocanvas/GooCanvasTextModel.html -%%DOCSDIR%%/goocanvas/GooCanvasWidget.html -%%DOCSDIR%%/goocanvas/ch01.html -%%DOCSDIR%%/goocanvas/ch02.html -%%DOCSDIR%%/goocanvas/ch03.html -%%DOCSDIR%%/goocanvas/ch04.html -%%DOCSDIR%%/goocanvas/ch05.html -%%DOCSDIR%%/goocanvas/goocanvas-GooCanvas-Types.html -%%DOCSDIR%%/goocanvas/goocanvas-creating-items.html -%%DOCSDIR%%/goocanvas/goocanvas-goocanvasitem.html -%%DOCSDIR%%/goocanvas/goocanvas-goocanvasitemmodel.html -%%DOCSDIR%%/goocanvas/goocanvas-model-view-canvas.html -%%DOCSDIR%%/goocanvas/goocanvas-overview.html -%%DOCSDIR%%/goocanvas/goocanvas-simple-canvas.html -%%DOCSDIR%%/goocanvas/goocanvas.devhelp -%%DOCSDIR%%/goocanvas/goocanvas.devhelp2 -%%DOCSDIR%%/goocanvas/home.png -%%DOCSDIR%%/goocanvas/index.html -%%DOCSDIR%%/goocanvas/index.sgml -%%DOCSDIR%%/goocanvas/left.png -%%DOCSDIR%%/goocanvas/right.png -%%DOCSDIR%%/goocanvas/style.css -%%DOCSDIR%%/goocanvas/up.png -@dirrm %%DOCSDIR%%/goocanvas -@dirrm %%DOCSDIR%% -@dirrm include/goocanvas-1.0 diff --git a/graphics/gstreamer-plugins-aalib/Makefile b/graphics/gstreamer-plugins-aalib/Makefile deleted file mode 100644 index 32d3d4c0a..000000000 --- a/graphics/gstreamer-plugins-aalib/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-aalib -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/gstreamer-plugins-aalib/Makefile,v 1.4 2008/03/15 21:09:32 ahze Exp $ -# - -PORTREVISION= 2 -CATEGORIES= graphics - -COMMENT= Gstreamer ascii art plugin - -GST_PLUGIN= aalib - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/gstreamer-plugins-cairo/Makefile b/graphics/gstreamer-plugins-cairo/Makefile deleted file mode 100644 index 7ce6162a6..000000000 --- a/graphics/gstreamer-plugins-cairo/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-cairo -# Date created: Mar 8 2005 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/gstreamer-plugins-cairo/Makefile,v 1.5 2008/03/15 21:09:33 ahze Exp $ -# - -PORTREVISION= 2 -CATEGORIES= graphics - -COMMENT= Gstreamer vector graphics plugin - -GST_PLUGIN= cairo - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/gstreamer-plugins-gdkpixbuf/Makefile b/graphics/gstreamer-plugins-gdkpixbuf/Makefile deleted file mode 100644 index b2a88f7f6..000000000 --- a/graphics/gstreamer-plugins-gdkpixbuf/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-gdkpixbuf -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/gstreamer-plugins-gdkpixbuf/Makefile,v 1.4 2008/03/15 21:09:33 ahze Exp $ -# - -PORTREVISION= 2 -CATEGORIES= graphics - -COMMENT= Gstreamer image decoder plugin - -GST_PLUGIN= gdk_pixbuf - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/gstreamer-plugins-jpeg/Makefile b/graphics/gstreamer-plugins-jpeg/Makefile deleted file mode 100644 index fbbd4ddc0..000000000 --- a/graphics/gstreamer-plugins-jpeg/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-jpeg -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/gstreamer-plugins-jpeg/Makefile,v 1.4 2008/03/15 21:09:33 ahze Exp $ -# - -PORTREVISION= 2 -CATEGORIES= graphics - -COMMENT= Gstreamer jpeg encoder/decoder plugin - -GST_PLUGIN= jpeg - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/gstreamer-plugins-libcaca/Makefile b/graphics/gstreamer-plugins-libcaca/Makefile deleted file mode 100644 index d8f98087d..000000000 --- a/graphics/gstreamer-plugins-libcaca/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-libcaca -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/gstreamer-plugins-libcaca/Makefile,v 1.4 2008/03/15 21:09:33 ahze Exp $ -# - -PORTREVISION= 2 -CATEGORIES= graphics - -COMMENT= Gstreamer color ascii art plugin - -GST_PLUGIN= libcaca - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/gstreamer-plugins-libpng/Makefile b/graphics/gstreamer-plugins-libpng/Makefile deleted file mode 100644 index 692a30f3b..000000000 --- a/graphics/gstreamer-plugins-libpng/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-libpng -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/gstreamer-plugins-libpng/Makefile,v 1.4 2008/03/15 21:09:33 ahze Exp $ - -PORTREVISION= 2 -CATEGORIES= graphics - -COMMENT= Gstreamer png plugin - -GST_PLUGIN= libpng - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/gstreamer-plugins-libvisual/Makefile b/graphics/gstreamer-plugins-libvisual/Makefile deleted file mode 100644 index 45236d97a..000000000 --- a/graphics/gstreamer-plugins-libvisual/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-libvisual -# Date created: 4 Dec 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/gstreamer-plugins-libvisual/Makefile,v 1.5 2008/03/19 14:05:35 ahze Exp $ -# - -PORTREVISION= 0 -CATEGORIES= graphics - -COMMENT= Gstreamer libvisual plugin - -GST_PLUGIN= libvisual - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/gstreamer-plugins-swfdec/Makefile b/graphics/gstreamer-plugins-swfdec/Makefile deleted file mode 100644 index 6ded5777a..000000000 --- a/graphics/gstreamer-plugins-swfdec/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-swfdec -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/gstreamer-plugins-swfdec/Makefile,v 1.4 2008/03/15 21:09:34 ahze Exp $ -# - -PORTREVISION= 2 -CATEGORIES= graphics - -COMMENT= Gstreamer flash redering plugin - -GST_PLUGIN= swfdec - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -BROKEN= Does not compile - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile deleted file mode 100644 index 413a57b34..000000000 --- a/graphics/inkscape/Makefile +++ /dev/null @@ -1,69 +0,0 @@ -# New ports collection makefile for: inkscape -# Date created: 17 Nov 2003 -# Whom: Alexander Nedotsukov <bland@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= inkscape -PORTVERSION= 0.45.1 -PORTREVISION= 1 -CATEGORIES= graphics gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A program seeks to become a full featured open source SVG editor - -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ - gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 \ - gc.1:${PORTSDIR}/devel/boehm-gc \ - gtkspell.0:${PORTSDIR}/textproc/gtkspell \ - lcms.1:${PORTSDIR}/graphics/lcms -RUN_DEPENDS= ${SITE_PERL}/XML/XQL.pm:${PORTSDIR}/textproc/p5-XML-XQL - -#USE_BZIP2= yes -USE_GMAKE= yes -WANT_GNOME= yes -USE_GNOME= gnomehack desktopfileutils intlhack libxslt -USE_GETTEXT= yes -GNU_CONFIGURE= yes -USE_GCC= 3.4+ -USE_PERL5= yes -CONFIGURE_ARGS= --with-popt -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}" - -MAN1= inkscape.1 -MAN1_EN= inkview.1 -MANLANG= "" fr - -.include <bsd.port.pre.mk> - -.if ${HAVE_GNOME:Mlibgnomeprintui} != "" -USE_GNOME+= libgnomeprintui -CONFIGURE_ARGS+= --with-gnome-print -.else -CONFIGURE_ARGS+= --without-gnome-print -.endif -.if ${HAVE_GNOME:Mgnomevfs2} != "" -USE_GNOME+= gnomevfs2 -CONFIGURE_ARGS+= --with-gnome-vfs -.else -CONFIGURE_ARGS+= --without-gnome-vfs -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|ieefp.h|ieeefp.h|' \ - ${WRKSRC}/src/display/bezier-utils.cpp - @${REINPLACE_CMD} -e 's|libpng >= 1.2|libpng12 >= 1.2|g' \ - ${WRKSRC}/configure - @${FIND} ${WRKSRC} -name "*.h" -o -name "*.cpp" | ${XARGS} \ - ${REINPLACE_CMD} -e 's|glib/gmessages.h|glib/gtestutils.h|g' - @${REINPLACE_CMD} -e 's|SigC::Connection|sigc::connection|g' \ - ${WRKSRC}/src/seltrans.h - -post-install: - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/graphics/inkscape/distinfo b/graphics/inkscape/distinfo deleted file mode 100644 index 22035b7a4..000000000 --- a/graphics/inkscape/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (inkscape-0.45.1.tar.gz) = 1ac63dfd5d78a676599bf5cf6d22e493 -SHA256 (inkscape-0.45.1.tar.gz) = 0d4c6277a599a3d18182e1947d8cf50805f06023b2a574a350c64286ea4a0bf8 -SIZE (inkscape-0.45.1.tar.gz) = 13244235 diff --git a/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp b/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp deleted file mode 100644 index e8da0f994..000000000 --- a/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/libnr/nr-matrix.cpp.org Sun Feb 15 09:45:06 2004 -+++ src/libnr/nr-matrix.cpp Sun Feb 15 09:44:32 2004 -@@ -9,6 +9,7 @@ - * This code is in public domain - */ - -+#include <cstdio> - #include "nr-matrix.h" - - NRMatrix * diff --git a/graphics/inkscape/files/patch-src::livarot::Path.cpp b/graphics/inkscape/files/patch-src::livarot::Path.cpp deleted file mode 100644 index 587ec22c4..000000000 --- a/graphics/inkscape/files/patch-src::livarot::Path.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/livarot/Path.cpp.orig Sat Apr 10 03:53:47 2004 -+++ src/livarot/Path.cpp Sat Apr 10 03:53:52 2004 -@@ -7,6 +7,7 @@ - */ - - #include <glib.h> -+#include <cstdio> - #include "Path.h" - #include <libnr/nr-point.h> - #include <libnr/nr-point-ops.h> diff --git a/graphics/inkscape/files/patch-src::remove-last.h b/graphics/inkscape/files/patch-src::remove-last.h deleted file mode 100644 index 059f14ac7..000000000 --- a/graphics/inkscape/files/patch-src::remove-last.h +++ /dev/null @@ -1,19 +0,0 @@ ---- src/remove-last.h.orig Mon Apr 12 09:56:06 2004 -+++ src/remove-last.h Mon Apr 12 09:56:47 2004 -@@ -2,6 +2,7 @@ - #define __REMOVE_LAST_H__ - - #include <vector> -+#include <algorithm> - #include <glib.h> - - template<class T> -@@ -9,7 +10,7 @@ - { - using std::vector; - -- typename vector<T>::reverse_iterator i(find(seq.rbegin(), seq.rend(), elem)); -+ typename vector<T>::reverse_iterator i(std::find(seq.rbegin(), seq.rend(), elem)); - g_assert( i != seq.rend() ); - typename vector<T>::iterator ii(&*i); - seq.erase(ii); diff --git a/graphics/inkscape/files/patch-src_trace_potrace_inkscape-potrace.cpp b/graphics/inkscape/files/patch-src_trace_potrace_inkscape-potrace.cpp deleted file mode 100644 index 832ff9757..000000000 --- a/graphics/inkscape/files/patch-src_trace_potrace_inkscape-potrace.cpp +++ /dev/null @@ -1,124 +0,0 @@ ---- src/trace/potrace/inkscape-potrace.cpp.orig Sat Jun 24 22:46:26 2006 -+++ src/trace/potrace/inkscape-potrace.cpp Sun Jun 25 01:29:20 2006 -@@ -54,6 +54,121 @@ static void potraceStatusCallback(double - // (Inkscape::Trace::Potrace::PotraceTracingEngine *)userData; - } - -+#ifndef log2 -+static const double -+ln2 = 0.6931471805599452862268, -+two54 = 1.80143985094819840000e+16, /* 43500000 00000000 */ -+Lg1 = 6.666666666666735130e-01, /* 3FE55555 55555593 */ -+Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ -+Lg3 = 2.857142874366239149e-01, /* 3FD24924 94229359 */ -+Lg4 = 2.222219843214978396e-01, /* 3FCC71C5 1D8E78AF */ -+Lg5 = 1.818357216161805012e-01, /* 3FC74664 96CB03DE */ -+Lg6 = 1.531383769920937332e-01, /* 3FC39A09 D078C69F */ -+Lg7 = 1.479819860511658591e-01; /* 3FC2F112 DF3E5244 */ -+ -+static const double zero = 0.0; -+ -+#if BYTE_ORDER == BIG_ENDIAN -+ -+typedef union -+{ -+ double value; -+ struct -+ { -+ u_int32_t msw; -+ u_int32_t lsw; -+ } parts; -+} ieee_double_shape_type; -+ -+#endif -+ -+#if BYTE_ORDER == LITTLE_ENDIAN -+ -+typedef union -+{ -+ double value; -+ struct -+ { -+ u_int32_t lsw; -+ u_int32_t msw; -+ } parts; -+} ieee_double_shape_type; -+ -+#endif -+ -+#define EXTRACT_WORDS(ix0,ix1,d) \ -+ do { \ -+ ieee_double_shape_type ew_u; \ -+ ew_u.value = (d); \ -+ (ix0) = ew_u.parts.msw; \ -+ (ix1) = ew_u.parts.lsw; \ -+ } while (0) -+ -+#define GET_HIGH_WORD(i,d) \ -+ do { \ -+ ieee_double_shape_type gh_u; \ -+ gh_u.value = (d); \ -+ (i) = gh_u.parts.msw; \ -+ } while (0) -+ -+#define SET_HIGH_WORD(d,v) \ -+ do { \ -+ ieee_double_shape_type sh_u; \ -+ sh_u.value = (d); \ -+ sh_u.parts.msw = (v); \ -+ (d) = sh_u.value; \ -+ } while (0) -+ -+static double -+_log2(double x) -+{ -+ double hfsq,f,s,z,R,w,t1,t2,dk; -+ int32_t k,hx,i,j; -+ u_int32_t lx; -+ -+ EXTRACT_WORDS(hx,lx,x); -+ -+ k=0; -+ if (hx < 0x00100000) { /* x < 2**-1022 */ -+ if (((hx&0x7fffffff)|lx)==0) -+ return -two54/zero; /* log(+-0)=-inf */ -+ if (hx<0) return (x-x)/zero; /* log(-#) = NaN */ -+ k -= 54; x *= two54; /* subnormal number, scale up x */ -+ GET_HIGH_WORD(hx,x); -+ } -+ if (hx >= 0x7ff00000) return x+x; -+ k += (hx>>20)-1023; -+ hx &= 0x000fffff; -+ i = (hx+0x95f64)&0x100000; -+ SET_HIGH_WORD(x,hx|(i^0x3ff00000)); /* normalize x or x/2 */ -+ k += (i>>20); -+ f = x-1.0; -+ dk = (double)k; -+ if((0x000fffff&(2+hx))<3) { /* |f| < 2**-20 */ -+ if (f==zero) -+ return (dk); -+ R = f*f*(0.5-0.33333333333333333*f); -+ return (dk-(R-f)/ln2); -+ } -+ s = f/(2.0+f); -+ z = s*s; -+ i = hx-0x6147a; -+ w = z*z; -+ j = 0x6b851-hx; -+ t1= w*(Lg2+w*(Lg4+w*Lg6)); -+ t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); -+ i |= j; -+ R = t2+t1; -+ if(i>0) { -+ hfsq=0.5*f*f; -+ return (dk-(hfsq-s*(hfsq+R)-f)/ln2); -+ } else -+ return (dk-((s*(f-R))-f)/ln2); -+} -+ -+#define log2(x) _log2(x) -+#endif -+ - - - diff --git a/graphics/inkscape/pkg-descr b/graphics/inkscape/pkg-descr deleted file mode 100644 index fbd138147..000000000 --- a/graphics/inkscape/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Inkscape seeks to become a full featured open source SVG editor. -Derived from the highly popular Sodipodi codebase, Inkscape strives -to build full XML, SVG, and CSS2 compliance. - -Features include alpha blending, node editing, svg-to-png export, -and more. Project aims for capabilities similar to Illustrator, -CorelDraw, Visio, etc. - -WWW: http://www.inkscape.org diff --git a/graphics/inkscape/pkg-plist b/graphics/inkscape/pkg-plist deleted file mode 100644 index 71832c2f3..000000000 --- a/graphics/inkscape/pkg-plist +++ /dev/null @@ -1,426 +0,0 @@ -bin/inkscape -bin/inkview -share/applications/inkscape.desktop -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -%%DATADIR%%/clipart/README -%%DATADIR%%/clipart/README-ribbon.txt -%%DATADIR%%/clipart/inkscape.logo.svg -%%DATADIR%%/clipart/orav.svg -%%DATADIR%%/clipart/ribbon.svg -%%DATADIR%%/clipart/tux.png -%%DATADIR%%/clipart/tux.svg -%%DATADIR%%/examples/README -%%DATADIR%%/examples/animated-clock.svg -%%DATADIR%%/examples/art-nouveau-P3.svg -%%DATADIR%%/examples/car.svgz -%%DATADIR%%/examples/data_uri.svg -%%DATADIR%%/examples/eastern-motive-P4G.svg -%%DATADIR%%/examples/flowsample.svg -%%DATADIR%%/examples/gallardo.svgz -%%DATADIR%%/examples/glass.svg -%%DATADIR%%/examples/gradient-mesh-experimental.svgz -%%DATADIR%%/examples/gradient.svg -%%DATADIR%%/examples/i18n.svg -%%DATADIR%%/examples/istest.pov -%%DATADIR%%/examples/l-systems.svgz -%%DATADIR%%/examples/markers.svg -%%DATADIR%%/examples/rope-3D.svg -%%DATADIR%%/examples/stars.svgz -%%DATADIR%%/examples/tesselation-P3.svg -%%DATADIR%%/examples/text-on-path.svg -%%DATADIR%%/examples/tiger.svgz -%%DATADIR%%/extensions/SpSVG.pm -%%DATADIR%%/extensions/addnodes.inx -%%DATADIR%%/extensions/addnodes.py -%%DATADIR%%/extensions/ai_input.inx -%%DATADIR%%/extensions/ai_output.inx -%%DATADIR%%/extensions/aisvg.inx -%%DATADIR%%/extensions/aisvg.xslt -%%DATADIR%%/extensions/bezmisc.py -%%DATADIR%%/extensions/color_brighter.inx -%%DATADIR%%/extensions/color_brighter.py -%%DATADIR%%/extensions/color_custom.inx -%%DATADIR%%/extensions/color_custom.py -%%DATADIR%%/extensions/color_darker.inx -%%DATADIR%%/extensions/color_darker.py -%%DATADIR%%/extensions/color_desaturate.inx -%%DATADIR%%/extensions/color_desaturate.py -%%DATADIR%%/extensions/color_grayscale.inx -%%DATADIR%%/extensions/color_grayscale.py -%%DATADIR%%/extensions/color_lesshue.inx -%%DATADIR%%/extensions/color_lesshue.py -%%DATADIR%%/extensions/color_lesslight.inx -%%DATADIR%%/extensions/color_lesslight.py -%%DATADIR%%/extensions/color_lesssaturation.inx -%%DATADIR%%/extensions/color_lesssaturation.py -%%DATADIR%%/extensions/color_morehue.inx -%%DATADIR%%/extensions/color_morehue.py -%%DATADIR%%/extensions/color_morelight.inx -%%DATADIR%%/extensions/color_morelight.py -%%DATADIR%%/extensions/color_moresaturation.inx -%%DATADIR%%/extensions/color_moresaturation.py -%%DATADIR%%/extensions/color_negative.inx -%%DATADIR%%/extensions/color_negative.py -%%DATADIR%%/extensions/color_removeblue.inx -%%DATADIR%%/extensions/color_removeblue.py -%%DATADIR%%/extensions/color_removegreen.inx -%%DATADIR%%/extensions/color_removegreen.py -%%DATADIR%%/extensions/color_removered.inx -%%DATADIR%%/extensions/color_removered.py -%%DATADIR%%/extensions/color_rgbbarrel.inx -%%DATADIR%%/extensions/color_rgbbarrel.py -%%DATADIR%%/extensions/coloreffect.py -%%DATADIR%%/extensions/cspsubdiv.py -%%DATADIR%%/extensions/cubicsuperpath.py -%%DATADIR%%/extensions/dia.inx -%%DATADIR%%/extensions/dia2svg.sh -%%DATADIR%%/extensions/dots.inx -%%DATADIR%%/extensions/dots.py -%%DATADIR%%/extensions/dxf_input.inx -%%DATADIR%%/extensions/dxf_outlines.inx -%%DATADIR%%/extensions/dxf_outlines.py -%%DATADIR%%/extensions/dxf_output.inx -%%DATADIR%%/extensions/embed_raster_in_svg.pl -%%DATADIR%%/extensions/embedimage.inx -%%DATADIR%%/extensions/embedimage.py -%%DATADIR%%/extensions/eps_input.inx -%%DATADIR%%/extensions/epsi_output.inx -%%DATADIR%%/extensions/eqtexsvg.inx -%%DATADIR%%/extensions/eqtexsvg.py -%%DATADIR%%/extensions/export_gimp_palette.inx -%%DATADIR%%/extensions/export_gimp_palette.py -%%DATADIR%%/extensions/extractimage.inx -%%DATADIR%%/extensions/extractimage.py -%%DATADIR%%/extensions/ffgeom.py -%%DATADIR%%/extensions/fig2svg.sh -%%DATADIR%%/extensions/fig_input.inx -%%DATADIR%%/extensions/flatten.inx -%%DATADIR%%/extensions/flatten.py -%%DATADIR%%/extensions/fractalize.inx -%%DATADIR%%/extensions/fractalize.py -%%DATADIR%%/extensions/funcplot.inx -%%DATADIR%%/extensions/funcplot.py -%%DATADIR%%/extensions/g2pngs.inx -%%DATADIR%%/extensions/g2pngs.py -%%DATADIR%%/extensions/gimp_xcf.inx -%%DATADIR%%/extensions/gimp_xcf.py -%%DATADIR%%/extensions/handles.inx -%%DATADIR%%/extensions/handles.py -%%DATADIR%%/extensions/ill2svg.pl -%%DATADIR%%/extensions/inkex.py -%%DATADIR%%/extensions/inkscape-shadow-white.sh -%%DATADIR%%/extensions/inkscape-shadow.sh -%%DATADIR%%/extensions/inkscape_help_commandline.inx -%%DATADIR%%/extensions/inkscape_help_faq.inx -%%DATADIR%%/extensions/inkscape_help_manual.inx -%%DATADIR%%/extensions/inkscape_help_relnotes.inx -%%DATADIR%%/extensions/inkscape_help_reportabug.inx -%%DATADIR%%/extensions/inkscape_help_svgspec.inx -%%DATADIR%%/extensions/interp.inx -%%DATADIR%%/extensions/interp.py -%%DATADIR%%/extensions/lindenmayer.inx -%%DATADIR%%/extensions/lindenmayer.py -%%DATADIR%%/extensions/lorem_ipsum.inx -%%DATADIR%%/extensions/lorem_ipsum.py -%%DATADIR%%/extensions/markers_strokepaint.inx -%%DATADIR%%/extensions/markers_strokepaint.py -%%DATADIR%%/extensions/measure.inx -%%DATADIR%%/extensions/measure.py -%%DATADIR%%/extensions/motion.inx -%%DATADIR%%/extensions/motion.py -%%DATADIR%%/extensions/outline2svg.inx -%%DATADIR%%/extensions/outline2svg.pl -%%DATADIR%%/extensions/pathalongpath.inx -%%DATADIR%%/extensions/pathalongpath.py -%%DATADIR%%/extensions/pathmodifier.py -%%DATADIR%%/extensions/pdf_output.inx.txt -%%DATADIR%%/extensions/pdf_output_via_gs_on_win32.inx.txt -%%DATADIR%%/extensions/perspective.inx -%%DATADIR%%/extensions/perspective.py -%%DATADIR%%/extensions/ps2dxf.sh -%%DATADIR%%/extensions/ps2epsi.sh -%%DATADIR%%/extensions/ps2pdf.cmd -%%DATADIR%%/extensions/ps2pdf.sh -%%DATADIR%%/extensions/ps_input.inx -%%DATADIR%%/extensions/pturtle.py -%%DATADIR%%/extensions/radiusrand.inx -%%DATADIR%%/extensions/radiusrand.py -%%DATADIR%%/extensions/randompnt.inx -%%DATADIR%%/extensions/randompos.inx -%%DATADIR%%/extensions/rtree.inx -%%DATADIR%%/extensions/rtree.py -%%DATADIR%%/extensions/rubberstretch.py -%%DATADIR%%/extensions/simplepath.py -%%DATADIR%%/extensions/simplepath.rb -%%DATADIR%%/extensions/simplestyle.py -%%DATADIR%%/extensions/sk2svg.sh -%%DATADIR%%/extensions/sk_input.inx -%%DATADIR%%/extensions/straightseg.inx -%%DATADIR%%/extensions/straightseg.py -%%DATADIR%%/extensions/summersnight.inx -%%DATADIR%%/extensions/summersnight.py -%%DATADIR%%/extensions/svg_and_media_zip_output.inx -%%DATADIR%%/extensions/svg_and_media_zip_output.py -%%DATADIR%%/extensions/svg_dropshadow -%%DATADIR%%/extensions/svg_dropshadow.inx -%%DATADIR%%/extensions/svgz_input.inx -%%DATADIR%%/extensions/svgz_output.inx -%%DATADIR%%/extensions/txt2svg.inx -%%DATADIR%%/extensions/txt2svg.pl -%%DATADIR%%/extensions/webbrowser_commandline.py -%%DATADIR%%/extensions/webbrowser_faq.py -%%DATADIR%%/extensions/webbrowser_manual.py -%%DATADIR%%/extensions/webbrowser_relnotes.py -%%DATADIR%%/extensions/webbrowser_reportabug.py -%%DATADIR%%/extensions/webbrowser_svgspec.py -%%DATADIR%%/extensions/whirl.inx -%%DATADIR%%/extensions/whirl.py -%%DATADIR%%/extensions/wmf_input.inx -%%DATADIR%%/fonts/README -%%DATADIR%%/gradients/README -%%DATADIR%%/icons/David_icons.svg -%%DATADIR%%/icons/README.David_icons -%%DATADIR%%/icons/README.icon_themes -%%DATADIR%%/icons/README.legacy_icons -%%DATADIR%%/icons/icons.svg -%%DATADIR%%/icons/inkscape.file.png -%%DATADIR%%/icons/inkscape.file.svg -%%DATADIR%%/icons/inkscape.svg -%%DATADIR%%/icons/legacy_icons.svg -%%DATADIR%%/keys/adobe-illustrator-cs2.xml -%%DATADIR%%/keys/default.xml -%%DATADIR%%/keys/inkscape.xml -%%DATADIR%%/keys/macromedia-freehand-mx.xml -%%DATADIR%%/keys/right-handed-illustration.xml -%%DATADIR%%/keys/xara.xml -%%DATADIR%%/markers/markers.svg -%%DATADIR%%/palettes/Blues.gpl -%%DATADIR%%/palettes/Gold.gpl -%%DATADIR%%/palettes/Gray.gpl -%%DATADIR%%/palettes/Greens.gpl -%%DATADIR%%/palettes/Hilite.gpl -%%DATADIR%%/palettes/Khaki.gpl -%%DATADIR%%/palettes/README -%%DATADIR%%/palettes/Reds.gpl -%%DATADIR%%/palettes/Royal.gpl -%%DATADIR%%/palettes/Tango-Palette.gpl -%%DATADIR%%/palettes/Topographic.gpl -%%DATADIR%%/palettes/Ubuntu.gpl -%%DATADIR%%/palettes/inkscape.gpl -%%DATADIR%%/palettes/svg.gpl -%%DATADIR%%/palettes/webhex.gpl -%%DATADIR%%/palettes/websafe22.gpl -%%DATADIR%%/palettes/windows.gpl -%%DATADIR%%/patterns/README -%%DATADIR%%/screens/about.bg.svg -%%DATADIR%%/screens/about.svg -%%DATADIR%%/screens/keys.de.svg -%%DATADIR%%/screens/keys.fr.svg -%%DATADIR%%/screens/keys.sl.svg -%%DATADIR%%/screens/keys.svg -%%DATADIR%%/templates/A4.svg -%%DATADIR%%/templates/A4_landscape.svg -%%DATADIR%%/templates/CD_cover_300dpi.svg -%%DATADIR%%/templates/DVD_cover_regular_300dpi.svg -%%DATADIR%%/templates/DVD_cover_slim_300dpi.svg -%%DATADIR%%/templates/DVD_cover_superslim_300dpi.svg -%%DATADIR%%/templates/DVD_cover_ultraslim_300dpi.svg -%%DATADIR%%/templates/Letter.svg -%%DATADIR%%/templates/Letter_landscape.svg -%%DATADIR%%/templates/README -%%DATADIR%%/templates/black_opaque.svg -%%DATADIR%%/templates/business_card_85x54mm.svg -%%DATADIR%%/templates/business_card_90x50mm.svg -%%DATADIR%%/templates/default.ca.svg -%%DATADIR%%/templates/default.cs.svg -%%DATADIR%%/templates/default.de.svg -%%DATADIR%%/templates/default.eo.svg -%%DATADIR%%/templates/default.es.svg -%%DATADIR%%/templates/default.fi.svg -%%DATADIR%%/templates/default.fr.svg -%%DATADIR%%/templates/default.hu.svg -%%DATADIR%%/templates/default.it.svg -%%DATADIR%%/templates/default.lt.svg -%%DATADIR%%/templates/default.pl.svg -%%DATADIR%%/templates/default.pt_BR.svg -%%DATADIR%%/templates/default.sk.svg -%%DATADIR%%/templates/default.svg -%%DATADIR%%/templates/default_mm.svg -%%DATADIR%%/templates/default_pt.svg -%%DATADIR%%/templates/desktop_1024x768.svg -%%DATADIR%%/templates/desktop_1600x1200.svg -%%DATADIR%%/templates/desktop_640x480.svg -%%DATADIR%%/templates/desktop_800x600.svg -%%DATADIR%%/templates/icon_16x16.svg -%%DATADIR%%/templates/icon_32x32.svg -%%DATADIR%%/templates/icon_48x48.svg -%%DATADIR%%/templates/icon_64x64.svg -%%DATADIR%%/templates/no_borders.svg -%%DATADIR%%/templates/no_layers.svg -%%DATADIR%%/templates/video_HDTV_1920_1080.svg -%%DATADIR%%/templates/video_NTSC_720_486.svg -%%DATADIR%%/templates/video_PAL_720_576.svg -%%DATADIR%%/templates/web_banner_468x60.svg -%%DATADIR%%/templates/web_banner_728x90.svg -%%DATADIR%%/templates/white_opaque.svg -%%DATADIR%%/tutorials/README -%%DATADIR%%/tutorials/gpl-2.svg -%%DATADIR%%/tutorials/making_markers.svg -%%DATADIR%%/tutorials/oldguitar.jpg -%%DATADIR%%/tutorials/potrace-de.png -%%DATADIR%%/tutorials/potrace-fr.png -%%DATADIR%%/tutorials/potrace-pt_BR.png -%%DATADIR%%/tutorials/potrace-ru.png -%%DATADIR%%/tutorials/potrace.png -%%DATADIR%%/tutorials/tutorial-advanced.ca.svg -%%DATADIR%%/tutorials/tutorial-advanced.cs.svg -%%DATADIR%%/tutorials/tutorial-advanced.de.svg -%%DATADIR%%/tutorials/tutorial-advanced.es.svg -%%DATADIR%%/tutorials/tutorial-advanced.fr.svg -%%DATADIR%%/tutorials/tutorial-advanced.ja.svg -%%DATADIR%%/tutorials/tutorial-advanced.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-advanced.ru.svg -%%DATADIR%%/tutorials/tutorial-advanced.sl.svg -%%DATADIR%%/tutorials/tutorial-advanced.svg -%%DATADIR%%/tutorials/tutorial-basic.bg.svg -%%DATADIR%%/tutorials/tutorial-basic.ca.svg -%%DATADIR%%/tutorials/tutorial-basic.cs.svg -%%DATADIR%%/tutorials/tutorial-basic.da.svg -%%DATADIR%%/tutorials/tutorial-basic.de.svg -%%DATADIR%%/tutorials/tutorial-basic.es.svg -%%DATADIR%%/tutorials/tutorial-basic.fr.svg -%%DATADIR%%/tutorials/tutorial-basic.it.svg -%%DATADIR%%/tutorials/tutorial-basic.ja.svg -%%DATADIR%%/tutorials/tutorial-basic.nn.svg -%%DATADIR%%/tutorials/tutorial-basic.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-basic.ru.svg -%%DATADIR%%/tutorials/tutorial-basic.sl.svg -%%DATADIR%%/tutorials/tutorial-basic.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.ca.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.cs.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.de.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.es.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.fr.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.ru.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.sl.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.svg -%%DATADIR%%/tutorials/tutorial-elements.ca.svg -%%DATADIR%%/tutorials/tutorial-elements.de.svg -%%DATADIR%%/tutorials/tutorial-elements.es.svg -%%DATADIR%%/tutorials/tutorial-elements.fr.svg -%%DATADIR%%/tutorials/tutorial-elements.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-elements.ru.svg -%%DATADIR%%/tutorials/tutorial-elements.sl.svg -%%DATADIR%%/tutorials/tutorial-elements.svg -%%DATADIR%%/tutorials/tutorial-shapes.ca.svg -%%DATADIR%%/tutorials/tutorial-shapes.cs.svg -%%DATADIR%%/tutorials/tutorial-shapes.de.svg -%%DATADIR%%/tutorials/tutorial-shapes.es.svg -%%DATADIR%%/tutorials/tutorial-shapes.fr.svg -%%DATADIR%%/tutorials/tutorial-shapes.it.svg -%%DATADIR%%/tutorials/tutorial-shapes.ja.svg -%%DATADIR%%/tutorials/tutorial-shapes.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-shapes.ru.svg -%%DATADIR%%/tutorials/tutorial-shapes.sl.svg -%%DATADIR%%/tutorials/tutorial-shapes.svg -%%DATADIR%%/tutorials/tutorial-tips.ca.svg -%%DATADIR%%/tutorials/tutorial-tips.de.svg -%%DATADIR%%/tutorials/tutorial-tips.es.svg -%%DATADIR%%/tutorials/tutorial-tips.fr.svg -%%DATADIR%%/tutorials/tutorial-tips.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-tips.ru.svg -%%DATADIR%%/tutorials/tutorial-tips.sl.svg -%%DATADIR%%/tutorials/tutorial-tips.svg -%%DATADIR%%/tutorials/tutorial-tracing.ca.svg -%%DATADIR%%/tutorials/tutorial-tracing.de.svg -%%DATADIR%%/tutorials/tutorial-tracing.es.svg -%%DATADIR%%/tutorials/tutorial-tracing.fr.svg -%%DATADIR%%/tutorials/tutorial-tracing.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-tracing.ru.svg -%%DATADIR%%/tutorials/tutorial-tracing.sl.svg -%%DATADIR%%/tutorials/tutorial-tracing.svg -%%DATADIR%%/tutorials/tux.png -%%DATADIR%%/ui/keybindings.rc -%%DATADIR%%/ui/menus-bars.xml -%%DATADIR%%/ui/toolbox.xml -%%DATADIR%%/ui/units.txt -%%DATADIR%%/ui/units.xml -share/locale/am/LC_MESSAGES/inkscape.mo -share/locale/az/LC_MESSAGES/inkscape.mo -share/locale/be/LC_MESSAGES/inkscape.mo -share/locale/bg/LC_MESSAGES/inkscape.mo -share/locale/ca/LC_MESSAGES/inkscape.mo -share/locale/cs/LC_MESSAGES/inkscape.mo -share/locale/da/LC_MESSAGES/inkscape.mo -share/locale/de/LC_MESSAGES/inkscape.mo -share/locale/dz/LC_MESSAGES/inkscape.mo -share/locale/el/LC_MESSAGES/inkscape.mo -share/locale/en_CA/LC_MESSAGES/inkscape.mo -share/locale/en_GB/LC_MESSAGES/inkscape.mo -share/locale/en_US@piglatin/LC_MESSAGES/inkscape.mo -share/locale/eo/LC_MESSAGES/inkscape.mo -share/locale/es/LC_MESSAGES/inkscape.mo -share/locale/es_MX/LC_MESSAGES/inkscape.mo -share/locale/et/LC_MESSAGES/inkscape.mo -share/locale/fi/LC_MESSAGES/inkscape.mo -share/locale/fr/LC_MESSAGES/inkscape.mo -share/locale/ga/LC_MESSAGES/inkscape.mo -share/locale/gl/LC_MESSAGES/inkscape.mo -share/locale/hr/LC_MESSAGES/inkscape.mo -share/locale/hu/LC_MESSAGES/inkscape.mo -share/locale/it/LC_MESSAGES/inkscape.mo -share/locale/ja/LC_MESSAGES/inkscape.mo -share/locale/km/LC_MESSAGES/inkscape.mo -share/locale/ko/LC_MESSAGES/inkscape.mo -share/locale/lt/LC_MESSAGES/inkscape.mo -share/locale/mk/LC_MESSAGES/inkscape.mo -share/locale/mn/LC_MESSAGES/inkscape.mo -share/locale/nb/LC_MESSAGES/inkscape.mo -share/locale/ne/LC_MESSAGES/inkscape.mo -share/locale/nl/LC_MESSAGES/inkscape.mo -share/locale/nn/LC_MESSAGES/inkscape.mo -share/locale/pa/LC_MESSAGES/inkscape.mo -share/locale/pl/LC_MESSAGES/inkscape.mo -share/locale/pt/LC_MESSAGES/inkscape.mo -share/locale/pt_BR/LC_MESSAGES/inkscape.mo -share/locale/ru/LC_MESSAGES/inkscape.mo -share/locale/rw/LC_MESSAGES/inkscape.mo -share/locale/sk/LC_MESSAGES/inkscape.mo -share/locale/sl/LC_MESSAGES/inkscape.mo -share/locale/sq/LC_MESSAGES/inkscape.mo -share/locale/sr/LC_MESSAGES/inkscape.mo -share/locale/sr@Latn/LC_MESSAGES/inkscape.mo -share/locale/sv/LC_MESSAGES/inkscape.mo -share/locale/th/LC_MESSAGES/inkscape.mo -share/locale/tr/LC_MESSAGES/inkscape.mo -share/locale/uk/LC_MESSAGES/inkscape.mo -share/locale/vi/LC_MESSAGES/inkscape.mo -share/locale/zh_CN/LC_MESSAGES/inkscape.mo -share/locale/zh_TW/LC_MESSAGES/inkscape.mo -share/pixmaps/inkscape.png -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/tutorials -@dirrm %%DATADIR%%/templates -@dirrm %%DATADIR%%/screens -@dirrm %%DATADIR%%/patterns -@dirrm %%DATADIR%%/palettes -@dirrm %%DATADIR%%/markers -@dirrm %%DATADIR%%/keys -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%%/gradients -@dirrm %%DATADIR%%/fonts -@dirrm %%DATADIR%%/extensions -@dirrm %%DATADIR%%/examples -@dirrm %%DATADIR%%/clipart -@dirrm %%DATADIR%% -@dirrmtry share/applications -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km -@dirrmtry share/locale/en_US@piglatin/LC_MESSAGES -@dirrmtry share/locale/en_US@piglatin -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz diff --git a/graphics/libgnomecanvasmm26/Makefile b/graphics/libgnomecanvasmm26/Makefile deleted file mode 100644 index 9ab68d5b2..000000000 --- a/graphics/libgnomecanvasmm26/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: libgnomecanvasmm -# Date created: 22 May 2003 -# Whom: Alexander Nedotsukov <bland@mail.ru> -# -# $FreeBSD$ -# $MCom: ports/graphics/libgnomecanvasmm26/Makefile,v 1.16 2007/09/17 16:42:56 marcus Exp $ -# - -PORTNAME= libgnomecanvasmm -PORTVERSION= 2.22.0 -CATEGORIES= graphics gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= bland@FreeBSD.org -COMMENT= C++ wrapper for libgnomecanvas library - -LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -LATEST_LINK= libgnomecanvasmm26 - -USE_BZIP2= yes -USE_XLIB= yes -USE_GMAKE= yes -USE_GCC= 3.4+ -USE_GNOME= gnomehack libgnomecanvas -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-static - -PLIST_SUB= VERSION="2.6" API_VERSION="2.6" - -post-patch: - @${REINPLACE_CMD} -e '/^SUBDIRS =/s/examples//' \ - ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e "s|\(-lglibmm\)|-L\$$(GMM_PROCDIR)/../.. \1|" \ - ${WRKSRC}/tools/extra_defs_gen/Makefile.in - -.include <bsd.port.mk> diff --git a/graphics/libgnomecanvasmm26/distinfo b/graphics/libgnomecanvasmm26/distinfo deleted file mode 100644 index e1f92bfc1..000000000 --- a/graphics/libgnomecanvasmm26/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgnomecanvasmm-2.22.0.tar.bz2) = d5b08af567fe1df9752fbdae980bf23c -SHA256 (gnome2/libgnomecanvasmm-2.22.0.tar.bz2) = 45fa2424d2fc9340bfb071801de1f3b30f6f093b8bd9254e3a59d3ce0ba635f8 -SIZE (gnome2/libgnomecanvasmm-2.22.0.tar.bz2) = 319048 diff --git a/graphics/libgnomecanvasmm26/pkg-descr b/graphics/libgnomecanvasmm26/pkg-descr deleted file mode 100644 index c310245ea..000000000 --- a/graphics/libgnomecanvasmm26/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -libgnomecanvasmm provides C++ wrappers for libgnomecanvas, for use with gtkmm. - -WWW: http://gtkmm.sourceforge.net/ diff --git a/graphics/libgnomecanvasmm26/pkg-plist b/graphics/libgnomecanvasmm26/pkg-plist deleted file mode 100644 index a3e29ab2c..000000000 --- a/graphics/libgnomecanvasmm26/pkg-plist +++ /dev/null @@ -1,51 +0,0 @@ -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/affinetrans.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/bpath.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/canvas.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/ellipse.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/group.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/init.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/item.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/line.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/path-def.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/pixbuf.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/point.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/polygon.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/bpath_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/canvas_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/ellipse_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/group_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/item_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/line_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/path-def_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/pixbuf_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/polygon_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/rect-ellipse_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/rect_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/rich-text_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/shape_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/text_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/widget_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/properties.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/rect-ellipse.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/rect.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/rich-text.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/shape.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/text.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/widget.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/wrap_init.h -lib/libgnomecanvasmm-%%VERSION%%.a -lib/libgnomecanvasmm-%%VERSION%%.la -lib/libgnomecanvasmm-%%VERSION%%.so -lib/libgnomecanvasmm-%%VERSION%%.so.1 -lib/libgnomecanvasmm-%%API_VERSION%%/include/libgnomecanvasmmconfig.h -lib/libgnomecanvasmm-%%API_VERSION%%/proc/m4/convert.m4 -lib/libgnomecanvasmm-%%API_VERSION%%/proc/m4/convert_libgnomecanvasmm.m4 -libdata/pkgconfig/libgnomecanvasmm-%%API_VERSION%%.pc -@dirrm lib/libgnomecanvasmm-%%API_VERSION%%/proc/m4 -@dirrm lib/libgnomecanvasmm-%%API_VERSION%%/proc -@dirrm lib/libgnomecanvasmm-%%API_VERSION%%/include -@dirrm lib/libgnomecanvasmm-%%API_VERSION%% -@dirrm include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private -@dirrm include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm -@dirrm include/libgnomecanvasmm-%%API_VERSION%% diff --git a/graphics/librsvg2/Makefile b/graphics/librsvg2/Makefile deleted file mode 100644 index 391df1cf7..000000000 --- a/graphics/librsvg2/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -# New ports collection makefile for: librsvg2 -# Date created: 8th May 2001 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/librsvg2/Makefile,v 1.120 2008/02/24 18:20:05 marcus Exp $ -# - -PORTNAME= librsvg2 -PORTVERSION= 2.22.2 -CATEGORIES= graphics gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DISTNAME= librsvg-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Library for parsing and rendering SVG vector-graphic files - -BUILD_DEPENDS= freetype-config:${PORTSDIR}/print/freetype2 -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ - croco-${CROCO_VERSION}.3:${PORTSDIR}/textproc/libcroco -RUN_DEPENDS= gtk-engines2>=2.7.5_1:${PORTSDIR}/x11-themes/gtk-engines2 - -USE_BZIP2= yes -USE_GMAKE= yes -USE_XLIB= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME= gnomehack gnomeprefix libgsf gtk20 ltverhack -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-svgz \ - --without-gimp \ - --with-croco \ - --disable-gnome-vfs \ - --enable-gtk-theme \ - --disable-gnome-print - -CROCO_VERSION= 0.6 - -MAN1= rsvg.1 - -OPTIONS= MOZILLA_PLUGIN "Enable the SVG browser plug-in" no - -.include <bsd.port.pre.mk> - -.if defined(WITH_MOZILLA_PLUGIN) -USE_GECKO= firefox mozilla seamonkey xulrunner firefox15 -.include "${PORTSDIR}/www/mozilla/bsd.gecko.mk" -CONFIGURE_ENV+= MOZILLA_CONFIG=no -CONFIGURE_ARGS+=--enable-mozilla-plugin=yes - -PLIST_SUB+= PLUGIN="" -.else -CONFIGURE_ARGS+=--enable-mozilla-plugin=no - -PLIST_SUB+= PLUGIN="@comment " -.endif - -post-patch: -.if defined(WITH_MOZILLA_PLUGIN) - @${REINPLACE_CMD} -e 's|mozilla-plugin|${GECKO}-plugin|g' \ - ${WRKSRC}/configure -.endif - -.include <bsd.port.post.mk> diff --git a/graphics/librsvg2/distinfo b/graphics/librsvg2/distinfo deleted file mode 100644 index 3bd793ec5..000000000 --- a/graphics/librsvg2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/librsvg-2.22.2.tar.bz2) = aae602677ce201b1a0ed6a0c18c207f2 -SHA256 (gnome2/librsvg-2.22.2.tar.bz2) = 2bfc1853ecdc545bf3767ed92c93b8796f2075f522c8eab1693c96f11d55a59e -SIZE (gnome2/librsvg-2.22.2.tar.bz2) = 464857 diff --git a/graphics/librsvg2/files/patch-moz-plugin_Makefile.in b/graphics/librsvg2/files/patch-moz-plugin_Makefile.in deleted file mode 100644 index 5db06266c..000000000 --- a/graphics/librsvg2/files/patch-moz-plugin_Makefile.in +++ /dev/null @@ -1,20 +0,0 @@ ---- moz-plugin/Makefile.in.orig Thu Jul 27 11:13:53 2006 -+++ moz-plugin/Makefile.in Thu Jul 27 11:14:38 2006 -@@ -241,7 +241,7 @@ sbindir = @sbindir@ - sharedstatedir = @sharedstatedir@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ --plugindir = $(libdir)/mozilla/plugins -+plugindir = $(libdir)/browser_plugins - @WITH_MOZILLA_FALSE@plugin_LTLIBRARIES = - @WITH_MOZILLA_TRUE@plugin_LTLIBRARIES = libmozsvgdec.la - INCLUDES = $(MOZILLA_CFLAGS) -DBINDIR=\"$(bindir)/\" $(GLIB_CFLAGS) $(GDK_X11_CFLAGS) -@@ -284,7 +284,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $( - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES) - @$(NORMAL_INSTALL) -- test -z "$(plugindir)" || $(mkdir_p) "$(DESTDIR)$(plugindir)" -+@WITH_MOZILLA_TRUE@ test -z "$(plugindir)" || $(mkdir_p) -p "$(DESTDIR)$(plugindir)" - @list='$(plugin_LTLIBRARIES)'; for p in $$list; do \ - if test -f $$p; then \ - f=$(am__strip_dir) \ diff --git a/graphics/librsvg2/pkg-descr b/graphics/librsvg2/pkg-descr deleted file mode 100644 index 9e39343a5..000000000 --- a/graphics/librsvg2/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -The librsvg library is a lightweight library for parsing and rendering -vector-graphic files in SVG format (like the ones made by sodipodi). It also -includes functions that render anti-aliased fonts using freetype, including -caching of glyphs. It is used by Nautilus for drawing vector icons and -anti-aliased text. - -WWW: http://librsvg.sourceforge.net/ diff --git a/graphics/librsvg2/pkg-plist b/graphics/librsvg2/pkg-plist deleted file mode 100644 index e437b5ef6..000000000 --- a/graphics/librsvg2/pkg-plist +++ /dev/null @@ -1,44 +0,0 @@ -bin/rsvg -bin/rsvg-convert -bin/rsvg-view -include/librsvg-2/librsvg/librsvg-enum-types.h -include/librsvg-2/librsvg/librsvg-features.h -include/librsvg-2/librsvg/rsvg-cairo.h -include/librsvg-2/librsvg/rsvg.h -%%PLUGIN%%lib/browser_plugins/libmozsvgdec.a -%%PLUGIN%%lib/browser_plugins/libmozsvgdec.la -%%PLUGIN%%lib/browser_plugins/libmozsvgdec.so -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libsvg.a -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libsvg.la -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libsvg.so -lib/gtk-2.0/%%GTK2_VERSION%%/loaders/svg_loader.a -lib/gtk-2.0/%%GTK2_VERSION%%/loaders/svg_loader.la -lib/gtk-2.0/%%GTK2_VERSION%%/loaders/svg_loader.so -lib/librsvg-2.a -lib/librsvg-2.la -lib/librsvg-2.so -lib/librsvg-2.so.2 -libdata/pkgconfig/librsvg-2.0.pc -share/doc/rsvg/home.png -share/doc/rsvg/index.html -share/doc/rsvg/index.sgml -share/doc/rsvg/ix01.html -share/doc/rsvg/left.png -share/doc/rsvg/pt02.html -share/doc/rsvg/pt03.html -share/doc/rsvg/pt04.html -share/doc/rsvg/right.png -share/doc/rsvg/rsvg-Cairo.html -share/doc/rsvg/rsvg-Core-API.html -share/doc/rsvg/rsvg-GdkPixbuf.html -share/doc/rsvg/rsvg.devhelp -share/doc/rsvg/rsvg.devhelp2 -share/doc/rsvg/rsvg.html -share/doc/rsvg/style.css -share/doc/rsvg/up.png -share/pixmaps/svg-viewer.svg -@dirrm share/doc/rsvg -@dirrm include/librsvg-2/librsvg -@dirrm include/librsvg-2 -@exec %D/bin/gdk-pixbuf-query-loaders > /dev/null 2>&1 && %D/bin/gdk-pixbuf-query-loaders > %D/etc/gtk-2.0/gdk-pixbuf.loaders 2>/dev/null || /usr/bin/true -@unexec %D/bin/gdk-pixbuf-query-loaders > /dev/null 2>&1 && %D/bin/gdk-pixbuf-query-loaders > %D/etc/gtk-2.0/gdk-pixbuf.loaders 2>/dev/null || /usr/bin/true diff --git a/graphics/py-goocanvas/Makefile b/graphics/py-goocanvas/Makefile deleted file mode 100644 index 8960ec85f..000000000 --- a/graphics/py-goocanvas/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: py-goocanvas -# Date created: 2006-09-20 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/py-goocanvas/Makefile,v 1.2 2006/10/13 05:28:57 ahze Exp $ - -PORTNAME= goocanvas -PORTVERSION= 0.9.0 -CATEGORIES= graphics -MASTER_SITES= BERLIOS -MASTER_SITE_SUBDIR= py${PORTNAME} -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= py${PORTNAME}-${PORTVERSION} - -MAINTAINER= ahze@FreeBSD.org -COMMENT= GooCanvas python bindings - -LIB_DEPENDS= goocanvas.3:${PORTSDIR}/graphics/goocanvas - -PLIST_FILES= %%PYTHON_SITELIBDIR%%/goocanvasmodule.la \ - %%PYTHON_SITELIBDIR%%/goocanvasmodule.so -USE_PYTHON= yes -USE_GNOME= gnomehack pygtk2 -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-docs -USE_GMAKE= yes - -post-patch: - @${REINPLACE_CMD} -e 's|$$(PYGOBJECT_PYGDOCS)/style.css||; \ - s|demo docs|demo|' \ - ${WRKSRC}/Makefile.in \ - ${WRKSRC}/docs/Makefile.in - -.include <bsd.port.mk> diff --git a/graphics/py-goocanvas/distinfo b/graphics/py-goocanvas/distinfo deleted file mode 100644 index 63e62b0ac..000000000 --- a/graphics/py-goocanvas/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (pygoocanvas-0.9.0.tar.gz) = 1988b7572d553d954ffd159e7e61cb17 -SHA256 (pygoocanvas-0.9.0.tar.gz) = 3fa0944b57253b9981a1ea1baa92fc03a0d746a49d779b9c5f51080959c7e011 -SIZE (pygoocanvas-0.9.0.tar.gz) = 430723 diff --git a/graphics/py-goocanvas/pkg-descr b/graphics/py-goocanvas/pkg-descr deleted file mode 100644 index 433c0d1a8..000000000 --- a/graphics/py-goocanvas/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -GooCanvas python bindings - -WWW: http://developer.berlios.de/projects/pygoocanvas/ diff --git a/graphics/ruby-cairo/Makefile b/graphics/ruby-cairo/Makefile deleted file mode 100644 index 8d4e4b56d..000000000 --- a/graphics/ruby-cairo/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: rcairo -# Date created: 16 October 2005 -# Whom: Mezz <mezz@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= cairo -PORTVERSION= 1.5.1 -CATEGORIES= graphics ruby -MASTER_SITES= http://cairographics.org/releases/ -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= r${PORTNAME}-${PORTVERSION} - -MAINTAINER= mezz@FreeBSD.org -COMMENT= Ruby binding for Cairo - -LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo - -USE_GNOME= pkgconfig -USE_RUBY= yes -USE_RUBY_EXTCONF=yes -CONFIGURE_ARGS+=--ruby=${RUBY} - -DOCS= AUTHORS COPYING ChangeLog GPL NEWS README - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${RUBY_MODEXAMPLESDIR}/agg - @${INSTALL_DATA} ${WRKSRC}/samples/*.rb ${RUBY_MODEXAMPLESDIR}/ - @${INSTALL_DATA} ${WRKSRC}/samples/agg/*.rb ${RUBY_MODEXAMPLESDIR}/agg/ - @${MKDIR} ${RUBY_MODDOCDIR} -.for f in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ -.endfor -.endif - -.include <bsd.port.mk> diff --git a/graphics/ruby-cairo/distinfo b/graphics/ruby-cairo/distinfo deleted file mode 100644 index 24c7a0ba2..000000000 --- a/graphics/ruby-cairo/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (rcairo-1.5.1.tar.gz) = 6778eaa1a32e289c47adcd40ef0f2595 -SHA256 (rcairo-1.5.1.tar.gz) = de937298cf8ffa129e452946ba52aa2614e930a77346895da2eec72c7700ef3b -SIZE (rcairo-1.5.1.tar.gz) = 68494 diff --git a/graphics/ruby-cairo/pkg-descr b/graphics/ruby-cairo/pkg-descr deleted file mode 100644 index d8193052e..000000000 --- a/graphics/ruby-cairo/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Ruby/Cairo is a Ruby binding for Cairo. - -WWW: http://cairographics.org/ diff --git a/graphics/ruby-cairo/pkg-plist b/graphics/ruby-cairo/pkg-plist deleted file mode 100644 index c22f4815a..000000000 --- a/graphics/ruby-cairo/pkg-plist +++ /dev/null @@ -1,34 +0,0 @@ -%%RUBY_SITELIBDIR%%/cairo.rb -%%RUBY_SITELIBDIR%%/cairo/color.rb -%%RUBY_SITELIBDIR%%/cairo/colors.rb -%%RUBY_SITELIBDIR%%/cairo/constants.rb -%%RUBY_SITELIBDIR%%/cairo/context.rb -%%RUBY_SITELIBDIR%%/cairo/context/blur.rb -%%RUBY_SITELIBDIR%%/cairo/context/circle.rb -%%RUBY_SITELIBDIR%%/cairo/context/color.rb -%%RUBY_SITELIBDIR%%/cairo/context/path.rb -%%RUBY_SITELIBDIR%%/cairo/context/rectangle.rb -%%RUBY_SITELIBDIR%%/cairo/context/triangle.rb -%%RUBY_SITELIBDIR%%/cairo/path.rb -%%RUBY_SITELIBDIR%%/cairo/point.rb -%%RUBY_SITEARCHLIBDIR%%/cairo.so -%%RUBY_SITEARCHLIBDIR%%/rb_cairo.h -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/AUTHORS -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/COPYING -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ChangeLog -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/GPL -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/NEWS -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/agg/aa_test.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/blur.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/pac.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/pac2.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/png.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/scalable.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/text-on-path.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/text2.rb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/agg -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%% -%%PORTDOCS%%@dirrm %%RUBY_SITELIBDIR%%/cairo/context -%%PORTDOCS%%@dirrm %%RUBY_SITELIBDIR%%/cairo diff --git a/graphics/swfdec/Makefile b/graphics/swfdec/Makefile deleted file mode 100644 index cce4ee5d2..000000000 --- a/graphics/swfdec/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: swfdec -# Date created: Apr 5, 2003 -# Whom: ijliao -# -# $FreeBSD$ -# - -PORTNAME= swfdec -PORTVERSION= 0.6.0 -PORTREVISION= 1 -CATEGORIES= graphics -MASTER_SITES= http://swfdec.freedesktop.org/download/swfdec/0.6/ - -MAINTAINER= alexbl@FreeBSD.org -COMMENT= Flash Rendering Library - -LIB_DEPENDS= oil-0.3.0:${PORTSDIR}/devel/liboil \ - soup-2.4.1:${PORTSDIR}/devel/libsoup - -USE_GNOME= gnomehack gtk20 -USE_AUTOTOOLS= libtool:15:env automake:19:env autoconf:261 -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-Wl,-Bsymbolic -L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-audio=oss -USE_LDCONFIG= yes -INSTALLS_ICONS= yes - -OPTIONS= GSTREAMER "Support for decoding some codecs with GStreamer" off - -PLIST_SUB= VERSION=${PORTVERSION:R} - -.if defined(WITH_GSTREAMER) -USE_GSTREAMER= yes -.else -LIB_DEPENDS+= avcodec.1:${PORTSDIR}/multimedia/ffmpeg \ - mad.2:${PORTSDIR}/audio/libmad -CONFIGURE_ARGS+= --disable-gstreamer --enable-ffmpeg --enable-mad -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|SWFDEC_LIBVERSION="0:0:0"|SWFDEC_LIBVERSION="1:0:0"|' ${WRKSRC}/configure.ac -.include <bsd.port.mk> diff --git a/graphics/swfdec/distinfo b/graphics/swfdec/distinfo deleted file mode 100644 index 8359a495c..000000000 --- a/graphics/swfdec/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (swfdec-0.6.0.tar.gz) = c012a5e6dd23558b86d2e08e2e43857b -SHA256 (swfdec-0.6.0.tar.gz) = bd7c9068ce545ef75f8820b94f6b0954194ca5b106a53463bf9a6ed448fa057f -SIZE (swfdec-0.6.0.tar.gz) = 8762575 diff --git a/graphics/swfdec/files/patch-swfdec-gtk_swfdec_gtk_system.c b/graphics/swfdec/files/patch-swfdec-gtk_swfdec_gtk_system.c deleted file mode 100644 index 2a62e63de..000000000 --- a/graphics/swfdec/files/patch-swfdec-gtk_swfdec_gtk_system.c +++ /dev/null @@ -1,16 +0,0 @@ ---- swfdec-gtk/swfdec_gtk_system.c.orig 2008-02-22 15:38:09.000000000 -0500 -+++ swfdec-gtk/swfdec_gtk_system.c 2008-02-22 15:38:13.000000000 -0500 -@@ -114,8 +114,12 @@ swfdec_gtk_system_get_language (void) - static int - swfdec_gtk_system_get_utc_offset (void) - { -+ struct tm *t; -+ time_t tt; - tzset (); -- return timezone / 60; -+ tt = time (NULL); -+ t = localtime (&tt); -+ return t->tm_gmtoff / 60; - } - - /*** PUBLIC API ***/ diff --git a/graphics/swfdec/pkg-descr b/graphics/swfdec/pkg-descr deleted file mode 100644 index 7e094c545..000000000 --- a/graphics/swfdec/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Swfdec is a library for rendering Flash animations and games. It was -originally designed as a basis library for creating Flash plugins for -GStreamer, but it is a fully standalone library which only use the -libart library for drawing. - -WWW: http://www.schleef.org/swfdec/ diff --git a/graphics/swfdec/pkg-plist b/graphics/swfdec/pkg-plist deleted file mode 100644 index 4bece92d5..000000000 --- a/graphics/swfdec/pkg-plist +++ /dev/null @@ -1,85 +0,0 @@ -include/swfdec-%%VERSION%%/swfdec-gtk/swfdec-gtk.h -include/swfdec-%%VERSION%%/swfdec-gtk/swfdec_gtk_keys.h -include/swfdec-%%VERSION%%/swfdec-gtk/swfdec_gtk_loader.h -include/swfdec-%%VERSION%%/swfdec-gtk/swfdec_gtk_player.h -include/swfdec-%%VERSION%%/swfdec-gtk/swfdec_gtk_socket.h -include/swfdec-%%VERSION%%/swfdec-gtk/swfdec_gtk_system.h -include/swfdec-%%VERSION%%/swfdec-gtk/swfdec_gtk_widget.h -include/swfdec-%%VERSION%%/swfdec/swfdec.h -include/swfdec-%%VERSION%%/swfdec/swfdec_as_array.h -include/swfdec-%%VERSION%%/swfdec/swfdec_as_context.h -include/swfdec-%%VERSION%%/swfdec/swfdec_as_debugger.h -include/swfdec-%%VERSION%%/swfdec/swfdec_as_frame.h -include/swfdec-%%VERSION%%/swfdec/swfdec_as_function.h -include/swfdec-%%VERSION%%/swfdec/swfdec_as_native_function.h -include/swfdec-%%VERSION%%/swfdec/swfdec_as_object.h -include/swfdec-%%VERSION%%/swfdec/swfdec_as_types.h -include/swfdec-%%VERSION%%/swfdec/swfdec_audio.h -include/swfdec-%%VERSION%%/swfdec/swfdec_buffer.h -include/swfdec-%%VERSION%%/swfdec/swfdec_enums.h -include/swfdec-%%VERSION%%/swfdec/swfdec_file_loader.h -include/swfdec-%%VERSION%%/swfdec/swfdec_keys.h -include/swfdec-%%VERSION%%/swfdec/swfdec_loader.h -include/swfdec-%%VERSION%%/swfdec/swfdec_player.h -include/swfdec-%%VERSION%%/swfdec/swfdec_player_scripting.h -include/swfdec-%%VERSION%%/swfdec/swfdec_rectangle.h -include/swfdec-%%VERSION%%/swfdec/swfdec_script.h -include/swfdec-%%VERSION%%/swfdec/swfdec_socket.h -include/swfdec-%%VERSION%%/swfdec/swfdec_stream.h -include/swfdec-%%VERSION%%/swfdec/swfdec_system.h -include/swfdec-%%VERSION%%/swfdec/swfdec_url.h -lib/libswfdec-%%VERSION%%.a -lib/libswfdec-%%VERSION%%.la -lib/libswfdec-%%VERSION%%.so -lib/libswfdec-%%VERSION%%.so.90 -lib/libswfdec-gtk-%%VERSION%%.a -lib/libswfdec-gtk-%%VERSION%%.la -lib/libswfdec-gtk-%%VERSION%%.so -lib/libswfdec-gtk-%%VERSION%%.so.90 -libdata/pkgconfig/swfdec-%%VERSION%%.pc -libdata/pkgconfig/swfdec-gtk-%%VERSION%%.pc -share/gtk-doc/html/swfdec/SwfdecAsArray.html -share/gtk-doc/html/swfdec/SwfdecAsContext.html -share/gtk-doc/html/swfdec/SwfdecAsDebugger.html -share/gtk-doc/html/swfdec/SwfdecAsFrame.html -share/gtk-doc/html/swfdec/SwfdecAsFunction.html -share/gtk-doc/html/swfdec/SwfdecAsObject.html -share/gtk-doc/html/swfdec/SwfdecAudio.html -share/gtk-doc/html/swfdec/SwfdecGtkPlayer.html -share/gtk-doc/html/swfdec/SwfdecGtkWidget.html -share/gtk-doc/html/swfdec/SwfdecLoader.html -share/gtk-doc/html/swfdec/SwfdecPlayer.html -share/gtk-doc/html/swfdec/SwfdecPlayerScripting.html -share/gtk-doc/html/swfdec/SwfdecSocket.html -share/gtk-doc/html/swfdec/SwfdecStream.html -share/gtk-doc/html/swfdec/SwfdecSystem.html -share/gtk-doc/html/swfdec/ch01.html -share/gtk-doc/html/swfdec/ch02.html -share/gtk-doc/html/swfdec/ch03.html -share/gtk-doc/html/swfdec/ch04.html -share/gtk-doc/html/swfdec/home.png -share/gtk-doc/html/swfdec/index.html -share/gtk-doc/html/swfdec/index.sgml -share/gtk-doc/html/swfdec/left.png -share/gtk-doc/html/swfdec/right.png -share/gtk-doc/html/swfdec/style.css -share/gtk-doc/html/swfdec/swfdec-Enumerations-and-Types.html -share/gtk-doc/html/swfdec/swfdec-Gtk-extension-objects.html -share/gtk-doc/html/swfdec/swfdec-Internals.html -share/gtk-doc/html/swfdec/swfdec-SwfdecAsValue.html -share/gtk-doc/html/swfdec/swfdec-SwfdecBuffer.html -share/gtk-doc/html/swfdec/swfdec-SwfdecRectangle.html -share/gtk-doc/html/swfdec/swfdec-SwfdecURL.html -share/gtk-doc/html/swfdec/swfdec.devhelp -share/gtk-doc/html/swfdec/swfdec.devhelp2 -share/gtk-doc/html/swfdec/up.png -share/icons/hicolor/16x16/apps/swfdec.png -share/icons/hicolor/22x22/apps/swfdec.png -share/icons/hicolor/24x24/apps/swfdec.png -share/icons/hicolor/32x32/apps/swfdec.png -share/icons/hicolor/48x48/apps/swfdec.png -share/icons/hicolor/scalable/apps/swfdec.svg -@dirrm share/gtk-doc/html/swfdec -@dirrm include/swfdec-%%VERSION%%/swfdec-gtk -@dirrm include/swfdec-%%VERSION%%/swfdec -@dirrm include/swfdec-%%VERSION%% diff --git a/graphics/vips/Makefile b/graphics/vips/Makefile deleted file mode 100644 index 026a95ac4..000000000 --- a/graphics/vips/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# New ports collection makefile for: vips -# Date created: 19 December 2003 -# Whom: Lev Serebryakov <lev@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= vips -PORTVERSION= 7.12.4 -PORTREVISION= 2 -CATEGORIES= graphics -MASTER_SITES= http://www.vips.ecs.soton.ac.uk/vips-${PORTVERSION:R}/ - -MAINTAINER= mi@aldan.algebra.com -COMMENT= Free image processing system - -OPTIONS= MAGICK "Use ImageMagick for more image-types" ${IMPRESENT} -OPTIONS+= LIBOIL "Use liboil for CPU-optimized primitives" on -# Making Python a proper option awaits portmgr's resolving the current -# chicken-and-egg problem of OPTIONS vs. USE_* knobs -#OPTIONS+= PYTHON "Create Python bindings" ${PYPRESENT} - -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser -LIB_DEPENDS= fftw3:${PORTSDIR}/math/fftw3 \ - jpeg:${PORTSDIR}/graphics/jpeg \ - tiff:${PORTSDIR}/graphics/tiff \ - IlmImf:${PORTSDIR}/graphics/OpenEXR \ - png:${PORTSDIR}/graphics/png \ - lcms:${PORTSDIR}/graphics/lcms - -IMPRESENT!= which mogrify > /dev/null && echo on || echo off -PYPRESENT!= which python > /dev/null && echo on || echo off -USE_GMAKE= yes -USE_GETTEXT= yes -USE_PERL5_BUILD= yes -USE_GNOME= gnomehack glib20 pkgconfig pango libxml2 -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -ALL_TARGET= -j`${SYSCTL} -n hw.ncpu` -.if defined(NOPORTDOCS) -# Don't extract doc/ subdirectory - the simplest way: -EXTRACT_AFTER_ARGS= | ${TAR} -xpf - --exclude doc -post-install: - ${RMDIR} ${DOCSDIR} -.else -# Don't extract html-ized man-pages in either case: -EXTRACT_AFTER_ARGS= | ${TAR} -xpf - --exclude doc/html/man -.endif -PLIST_SUB+= VERSION=${PORTVERSION:R} - -CONFIGURE_ARGS= --without-x --mandir=${PREFIX}/man - -# This is used to generate the list of man-pages and MLINKS. It -# looks through the available man-pages and filters out those, -# which consist of ``.so another/page''. Instead of installing -# these stubs, we handle them as MLINKS. -# Only use this target, if upgrading the port. -.PHONY: Makefile.man -Makefile.man: - @${ECHO_MSG} "# This file is auto-generated" > $@ - ${FIND} ${WRKSRC} -name '*.[13]' | ${XARGS} ${AWK} ' \ - /\.so/ { \ - page=substr($$2, 6, 100); \ - sub(".*/", "", FILENAME); \ - print "MLINKS+=\t" page "\t" FILENAME; \ - nextfile; \ - } { \ - sub(".*/", "", FILENAME); \ - ext = FILENAME; \ - sub(".*\\.", "", ext); \ - print "MAN" ext "+=\t" FILENAME; \ - nextfile; \ - }' >> $@ - -.include "Makefile.man" - -.include <bsd.port.pre.mk> - -.if defined(WITH_MAGICK) -LIB_DEPENDS+= Magick:${PORTSDIR}/graphics/ImageMagick -.else -CONFIGURE_ARGS+= --without-magick -.endif - -.if defined(WITH_LIBOIL) -LIB_DEPENDS+= oil:${PORTSDIR}/devel/liboil -.else -CONFIGURE_ARGS+= --without-liboil -.endif - -.include <bsd.port.post.mk> diff --git a/graphics/vips/Makefile.man b/graphics/vips/Makefile.man deleted file mode 100644 index 888615ee2..000000000 --- a/graphics/vips/Makefile.man +++ /dev/null @@ -1,549 +0,0 @@ -# This file is auto-generated -MAN1+= batch_image_convert.1 -MAN1+= light_correct.1 -MAN1+= batch_rubber_sheet.1 -MAN1+= batch_crop.1 -MLINKS+= sines.1 squares.1 -MLINKS+= cooc.1 cooc_features.1 -MAN1+= cooc.1 -MAN1+= simcontr.1 -MAN1+= glds.1 -MAN1+= sines.1 -MLINKS+= glds.1 glds_features.1 -MAN1+= edvips.1 -MLINKS+= debugim.1 printlines.1 -MAN1+= vips.1 -MAN1+= debugim.1 -MAN1+= header.1 -MAN1+= binfile.1 -MAN1+= vdump.1 -MAN3+= im_maplut.3 -MLINKS+= im_histgr.3 im_identity.3 -MAN3+= im_histplot.3 -MLINKS+= im_tone_build.3 im_tone_map.3 -MAN3+= im_stdif.3 -MLINKS+= im_heq.3 im_hsp.3 -MAN3+= im_project.3 -MAN3+= im_tone_build.3 -MAN3+= im_invertlut.3 -MAN3+= im_histgr.3 -MAN3+= im_gammacorrect.3 -MAN3+= im_heq.3 -MLINKS+= im_tone_build.3 im_tone_analyse.3 -MLINKS+= im_histgr.3 im_histcum.3 -MLINKS+= im_histgr.3 im_histeq.3 -MAN3+= im_buildlut.3 -MLINKS+= im_histgr.3 im_histnD.3 -MLINKS+= im_histgr.3 im_identity_ushort.3 -MAN3+= im_hist.3 -MLINKS+= im_heq.3 im_lhisteq.3 -MLINKS+= im_histgr.3 im_histnorm.3 -MLINKS+= im_heq.3 im_lhisteq_raw.3 -MLINKS+= im_histgr.3 im_histspec.3 -MAN3+= im_lrmosaic.3 -MAN3+= im_match_linear_search.3 -MLINKS+= im_match_linear_search.3 im_match_linear.3 -MAN3+= im_similarity_area.3 -MLINKS+= im_similarity_area.3 im_similarity.3 -MLINKS+= im_global_balance.3 im_global_balance_float.3 -MAN3+= im_remosaic.3 -MLINKS+= im_lrmosaic.3 im_tbmosaic.3 -MAN3+= im_correl.3 -MAN3+= im_affine.3 -MLINKS+= im_lrmerge.3 im_tbmerge.3 -MAN3+= im_global_balance.3 -MAN3+= im_lrmerge.3 -MLINKS+= im_matinv.3 im_matmul.3 -MAN3+= im_matinv.3 -MAN3+= im_lu_decomp.3 -MLINKS+= im_matinv.3 im_mattrn.3 -MLINKS+= im_matinv.3 im_matcat.3 -MLINKS+= im_matinv.3 im_matinv_inplace.3 -MLINKS+= im_lu_decomp.3 im_lu_solve.3 -MLINKS+= im_offsets45.3 im_rotate_imask45.3 -MAN3+= im_lowpass.3 -MLINKS+= im_conv.3 im_shrink.3 -MAN3+= im_rank.3 -MLINKS+= im_conv.3 im_convsep.3 -MLINKS+= im_create_dmask.3 im_print_dmask.3 -MLINKS+= im_offsets45.3 im_rotate_dmask90.3 -MLINKS+= im_create_dmask.3 im_write_dmask.3 -MLINKS+= im_conv.3 im_convsepf_raw.3 -MAN3+= im_mpercent.3 -MLINKS+= im_offsets45.3 im_offsets90.3 -MLINKS+= im_create_dmask.3 im_free_dmask.3 -MAN3+= im_addgnoise.3 -MAN3+= im_gaussnoise.3 -MLINKS+= im_create_dmask.3 im_read_imask.3 -MLINKS+= im_conv.3 im_convsepf.3 -MLINKS+= im_create_dmask.3 im_dup_dmask.3 -MAN3+= im_conv.3 -MAN3+= im_sharpen.3 -MLINKS+= im_log_imask.3 im_log_dmask.3 -MAN3+= im_create_dmask.3 -MLINKS+= im_compass.3 im_maxvalue.3 -MLINKS+= im_conv.3 im_convf_raw.3 -MLINKS+= im_compass.3 im_gradient.3 -MLINKS+= im_create_dmask.3 im_write_dmask_name.3 -MLINKS+= im_create_dmask.3 im_write_imask.3 -MLINKS+= im_create_dmask.3 im_print_imask.3 -MLINKS+= im_create_dmask.3 im_dup_imask.3 -MLINKS+= im_create_dmask.3 im_scale_dmask.3 -MLINKS+= im_compass.3 im_lindetect.3 -MAN3+= im_stretch3.3 -MLINKS+= im_conv.3 im_convsub.3 -MLINKS+= im_create_dmask.3 im_free_imask.3 -MAN3+= im_embed.3 -MLINKS+= im_conv.3 im_convsep_raw.3 -MLINKS+= im_conv.3 im_convf.3 -MLINKS+= im_create_dmask.3 im_read_dmask.3 -MAN3+= im_log_imask.3 -MLINKS+= im_fastcor.3 im_spcor.3 -MAN3+= im_fastcor.3 -MLINKS+= im_create_dmask.3 im_write_imask_name.3 -MAN3+= im_compass.3 -MLINKS+= im_offsets45.3 im_rotate_dmask45.3 -MAN3+= im_gauss_dmask.3 -MAN3+= im_contrast_surface.3 -MLINKS+= im_offsets45.3 im_rotate_imask90.3 -MAN3+= im_zerox.3 -MAN3+= im_offsets45.3 -MLINKS+= im_compass.3 im_rank_image.3 -MLINKS+= im_gauss_dmask.3 im_gauss_imask.3 -MLINKS+= im_create_dmask.3 im_create_imask.3 -MLINKS+= im_create_dmask.3 im_norm_dmask.3 -MAN3+= im_conv_raw.3 -MLINKS+= im_contrast_surface.3 im_contrast_surface_raw.3 -MAN3+= im_zone.3 -MLINKS+= im_eye.3 im_feye.3 -MLINKS+= im_equal.3 im_glds_asm.3 -MLINKS+= im_quantim.3 im_spatres.3 -MAN3+= im_sines.3 -MLINKS+= im_cooc_matrix.3 im_cooc_correlation.3 -MAN3+= im_grey.3 -MAN3+= im_simcontr.3 -MLINKS+= im_zone.3 im_fzone.3 -MLINKS+= im_equal.3 im_glds_contrast.3 -MLINKS+= im_cooc_matrix.3 im_cooc_entropy.3 -MLINKS+= im_mean_std_int_buffer.3 im_mean_std_double_buffer.3 -MLINKS+= im_cooc_matrix.3 im_cooc_contrast.3 -MAN3+= im_benchmark.3 -MAN3+= im_mean_std_int_buffer.3 -MAN3+= im_cooc_matrix.3 -MAN3+= im_quantim.3 -MAN3+= im_eye.3 -MAN3+= im_glds_matrix.3 -MLINKS+= im_quantim.3 im_quantlut.3 -MLINKS+= im_grey.3 im_fgrey.3 -MLINKS+= im_grey.3 im_make_xy.3 -MLINKS+= im_equal.3 im_glds_entropy.3 -MLINKS+= im_cooc_matrix.3 im_cooc_asm.3 -MAN3+= im_dif_std.3 -MLINKS+= im_equal.3 im_glds_mean.3 -MLINKS+= im_region_buffer.3 im_region_position.3 -MLINKS+= im_meta.3 im_meta_get_int.3 -MAN3+= im_demand_hint.3 -MAN3+= im_setupout.3 -MLINKS+= im_iscomplex.3 im_istifftiled.3 -MLINKS+= im_meta.3 im_meta_set_int.3 -MLINKS+= im_list_add.3 im_list_map.3 -MLINKS+= im_render.3 im_cache.3 -MLINKS+= im_iocheck.3 im_incheck.3 -MLINKS+= im_list_add.3 im_list_remove.3 -MLINKS+= IM_REGION_ADDR.3 IM_REGION_N_ELEMENTS.3 -MLINKS+= im_malloc.3 im_add_evalend_callback.3 -MLINKS+= im_iscomplex.3 im_isMSBfirst.3 -MLINKS+= im_list_add.3 im_list_eq.3 -MAN3+= im_prepare.3 -MLINKS+= im_printdesc.3 im_Compression2char.3 -MLINKS+= im_init_world.3 im_get_option_group.3 -MAN3+= im_render.3 -MAN3+= im_printdesc.3 -MAN3+= im_image_sanity.3 -MLINKS+= im_list_add.3 im_list_append.3 -MAN3+= im_init_world.3 -MLINKS+= im_cp_desc.3 im_cp_descv.3 -MLINKS+= im_error.3 im_error_buffer.3 -MAN3+= im_iterate.3 -MLINKS+= im_error.3 im_error_clear.3 -MLINKS+= im_list_add.3 im_list_member.3 -MLINKS+= im_debugim.3 im_printlines.3 -MLINKS+= im_header.3 im_header_string.3 -MAN3+= im_mmapinrw.3 -MLINKS+= IM_REGION_ADDR.3 IM_REGION_LSKIP.3 -MLINKS+= im_header.3 im_header_get.3 -MLINKS+= im_iscomplex.3 im_isint.3 -MLINKS+= im_iscomplex.3 im_isfloat.3 -MLINKS+= im_wrapone.3 im_wrapmany.3 -MLINKS+= im_list_add.3 im_list_pos.3 -MAN3+= im_piocheck.3 -MLINKS+= im_header.3 im_header_int.3 -MAN3+= im_region_buffer.3 -MAN3+= im_iscomplex.3 -MLINKS+= im_printdesc.3 im_char2Compression.3 -MAN3+= IM_ARRAY.3 -MAN3+= im_cp_desc.3 -MAN3+= im_bits_of_fmt.3 -MLINKS+= im_header.3 im_header_map.3 -MLINKS+= IM_IMAGE_ADDR.3 IM_IMAGE_N_ELEMENTS.3 -MAN3+= im_error.3 -MLINKS+= im_iscomplex.3 im_ispartial.3 -MLINKS+= im_meta.3 im_meta_set_area.3 -MAN3+= im_makerw.3 -MAN3+= im_invalidate.3 -MLINKS+= im_open.3 im_open_local_array.3 -MLINKS+= im_list_add.3 im_list_fix.3 -MLINKS+= im_cp_desc.3 im_cp_desc_array.3 -MLINKS+= im_list_add.3 im_list_fold.3 -MAN3+= im_generate.3 -MLINKS+= im_region_buffer.3 im_region_region.3 -MLINKS+= im_header.3 im_header_double.3 -MLINKS+= im_list_add.3 im_list_free.3 -MLINKS+= im_meta.3 im_meta_get_double.3 -MLINKS+= IM_IMAGE_ADDR.3 IM_IMAGE_SIZEOF_LINE.3 -MLINKS+= im_iscomplex.3 im_ispng.3 -MAN3+= im_header.3 -MLINKS+= im_piocheck.3 im_poutcheck.3 -MAN3+= im_binfile.3 -MLINKS+= im_list_add.3 im_list_len.3 -MAN3+= im_open.3 -MLINKS+= im_rect_marginadjust.3 IM_RECT_HCENTRE.3 -MAN3+= im_malloc.3 -MLINKS+= im_error.3 error_exit.3 -MLINKS+= im_rect_marginadjust.3 im_rect_includesrect.3 -MLINKS+= im_rect_marginadjust.3 IM_RECT_BOTTOM.3 -MLINKS+= im_printdesc.3 im_BandFmt2char.3 -MLINKS+= im_render.3 im_render_fade.3 -MLINKS+= im_header.3 im_header_get_type.3 -MLINKS+= im_rect_marginadjust.3 im_rect_unionrect.3 -MLINKS+= im_iscomplex.3 im_amiMSBfirst.3 -MAN3+= im_meta.3 -MLINKS+= im_generate.3 im_stop_one.3 -MLINKS+= im_piocheck.3 im_pincheck.3 -MLINKS+= im_rect_marginadjust.3 im_rect_isempty.3 -MAN3+= im_setbuf.3 -MLINKS+= im_malloc.3 im_free.3 -MLINKS+= im_meta.3 im_meta_get_area.3 -MLINKS+= im_generate.3 im_start_one.3 -MLINKS+= im_malloc.3 im_add_close_callback.3 -MLINKS+= im_error.3 im_diag.3 -MLINKS+= im_meta.3 im_meta_get_type.3 -MLINKS+= im_meta.3 im_meta_get_blob.3 -MLINKS+= im_meta.3 im_meta_set_blob.3 -MLINKS+= im_rect_marginadjust.3 IM_RECT_VCENTRE.3 -MAN3+= im_iocheck.3 -MAN3+= im_openout.3 -MAN3+= im_debugim.3 -MLINKS+= im_rect_marginadjust.3 im_rect_includespoint.3 -MLINKS+= im_generate.3 im_stop_many.3 -MLINKS+= im_list_add.3 im_list_insert.3 -MLINKS+= im_iocheck.3 im_outcheck.3 -MLINKS+= im_meta.3 im_meta_get.3 -MLINKS+= im_prepare.3 im_prepare_many.3 -MAN3+= im_wrapone.3 -MLINKS+= im_meta.3 im_meta_set_string.3 -MAN3+= im_initdesc.3 -MLINKS+= IM_RINT.3 IM_MIN.3 -MLINKS+= im_concurrency_set.3 im_concurrency_get.3 -MLINKS+= im_open.3 im_open_local.3 -MLINKS+= im_list_add.3 im_list_index.3 -MLINKS+= IM_ARRAY.3 IM_NEW.3 -MAN3+= IM_REGION_ADDR.3 -MLINKS+= im_version.3 im_version_string.3 -MAN3+= im_init.3 -MLINKS+= im_list_add.3 im_list_map_rev.3 -MLINKS+= im_histlin.3 im_history_get.3 -MLINKS+= IM_IMAGE_ADDR.3 IM_IMAGE_SIZEOF_PEL.3 -MLINKS+= IM_IMAGE_ADDR.3 IM_IMAGE_SIZEOF_ELEMENT.3 -MLINKS+= im_iscomplex.3 im_isvips.3 -MLINKS+= im_iscomplex.3 im_isuint.3 -MLINKS+= im_demand_hint.3 im_demand_hint_array.3 -MLINKS+= im_printdesc.3 im_char2Coding.3 -MLINKS+= im_prepare.3 im_prepare_to.3 -MLINKS+= im_meta.3 im_meta_set_double.3 -MAN3+= im_histlin.3 -MLINKS+= im_rect_marginadjust.3 im_rect_equalsrect.3 -MAN3+= im_region_create.3 -MLINKS+= im_printdesc.3 im_Type2char.3 -MLINKS+= im_histlin.3 im_updatehist.3 -MLINKS+= im_generate.3 im_start_many.3 -MLINKS+= im_rect_marginadjust.3 im_rect_normalise.3 -MLINKS+= im_rect_marginadjust.3 im_rect_dup.3 -MLINKS+= im_rect_marginadjust.3 im_rect_intersectrect.3 -MLINKS+= im_error.3 im_warn.3 -MLINKS+= im_iscomplex.3 im_isjpeg.3 -MAN3+= im_partial.3 -MLINKS+= im_rect_marginadjust.3 IM_RECT_RIGHT.3 -MLINKS+= IM_RINT.3 IM_MAX.3 -MLINKS+= im_printdesc.3 im_char2BandFmt.3 -MAN3+= IM_RINT.3 -MAN3+= im_concurrency_set.3 -MAN3+= im_writeline.3 -MLINKS+= IM_ARRAY.3 IM_NUMBER.3 -MLINKS+= IM_REGION_ADDR.3 IM_REGION_SIZEOF_LINE.3 -MAN3+= im_close.3 -MAN3+= im_list_add.3 -MLINKS+= im_iscomplex.3 im_isppm.3 -MLINKS+= im_binfile.3 im_image.3 -MLINKS+= im_printdesc.3 im_char2Type.3 -MLINKS+= im_meta.3 im_meta_get_string.3 -MLINKS+= im_iscomplex.3 im_isscalar.3 -MLINKS+= im_iscomplex.3 im_isfile.3 -MLINKS+= im_generate.3 im_allocate_input_array.3 -MLINKS+= im_error.3 im_verror.3 -MAN3+= im_mmapin.3 -MAN3+= IM_IMAGE_ADDR.3 -MAN3+= im_rect_marginadjust.3 -MLINKS+= im_printdesc.3 im_Coding2char.3 -MLINKS+= im_malloc.3 im_add_eval_callback.3 -MAN3+= im_version.3 -MLINKS+= im_meta.3 im_meta_set.3 -MLINKS+= im_region_buffer.3 im_region_image.3 -MAN3+= im_guess_prefix.3 -MLINKS+= im_region_create.3 im_region_free.3 -MAN3+= im_dilate.3 -MLINKS+= im_dilate.3 im_dilate_raw.3 -MAN3+= im_cntlines.3 -MLINKS+= im_cntlines.3 im_profile.3 -MLINKS+= im_dilate.3 im_erode.3 -MLINKS+= im_dilate.3 im_erode_raw.3 -MAN3+= im_video_v4l1.3 -MLINKS+= im_equal.3 im_moreeqconst.3 -MLINKS+= im_equal.3 im_less.3 -MLINKS+= im_equal.3 im_equalconst.3 -MLINKS+= im_equal.3 im_moreeq_vec.3 -MLINKS+= im_equal.3 im_moreeq.3 -MLINKS+= im_equal.3 im_less_vec.3 -MLINKS+= im_equal.3 im_notequal.3 -MLINKS+= im_equal.3 im_lesseqconst.3 -MLINKS+= im_equal.3 im_more_vec.3 -MLINKS+= im_equal.3 im_notequal_vec.3 -MLINKS+= im_equal.3 im_notequalconst.3 -MLINKS+= im_equal.3 im_lesseq.3 -MAN3+= im_equal.3 -MLINKS+= im_equal.3 im_lesseq_vec.3 -MLINKS+= im_equal.3 im_lessconst.3 -MLINKS+= im_equal.3 im_more.3 -MLINKS+= im_equal.3 im_moreconst.3 -MLINKS+= im_equal.3 im_equal_vec.3 -MLINKS+= im_ifthenelse.3 im_blend.3 -MAN3+= im_ifthenelse.3 -MLINKS+= im_add.3 im_gaddim.3 -MLINKS+= im_exp10tra.3 im_exptra.3 -MLINKS+= im_remainder.3 im_remainderconst.3 -MLINKS+= im_exp10tra.3 im_logtra.3 -MLINKS+= im_costra.3 im_atantra.3 -MAN3+= im_bandmean.3 -MAN3+= im_floor.3 -MAN3+= im_costra.3 -MAN3+= im_avg.3 -MLINKS+= im_avg.3 im_maxpos.3 -MLINKS+= im_avg.3 im_deviate.3 -MLINKS+= im_exp10tra.3 im_expntra_vec.3 -MLINKS+= im_maxpos_vec.3 im_minpos_vec.3 -MLINKS+= im_avg.3 im_min.3 -MLINKS+= im_exp10tra.3 im_expntra.3 -MLINKS+= im_avg.3 im_max.3 -MAN3+= im_stats.3 -MAN3+= im_invert.3 -MAN3+= im_measure.3 -MAN3+= im_maxpos_vec.3 -MAN3+= im_lintra.3 -MAN3+= im_rint.3 -MLINKS+= im_add.3 im_gadd.3 -MLINKS+= im_exp10tra.3 im_log10tra.3 -MAN3+= im_exp10tra.3 -MLINKS+= im_lintra.3 im_lintra_vec.3 -MAN3+= im_ceil.3 -MLINKS+= im_cmulnorm.3 im_multiply.3 -MLINKS+= im_exp10tra.3 im_powtra_vec.3 -MAN3+= im_litecor.3 -MLINKS+= im_avg.3 im_minpos.3 -MLINKS+= im_costra.3 im_sintra.3 -MAN3+= im_add.3 -MAN3+= im_remainder.3 -MAN3+= im_abs.3 -MLINKS+= im_costra.3 im_asintra.3 -MAN3+= im_sign.3 -MLINKS+= im_costra.3 im_tantra.3 -MAN3+= im_subtract.3 -MLINKS+= im_costra.3 im_acostra.3 -MLINKS+= im_add.3 im_gfadd.3 -MAN3+= im_fav4.3 -MAN3+= im_cmulnorm.3 -MAN3+= im_divide.3 -MLINKS+= im_exp10tra.3 im_powtra.3 -MAN3+= im_andimage.3 -MLINKS+= im_andimage.3 im_eorimage.3 -MLINKS+= im_andimage.3 im_orimage.3 -MLINKS+= im_shiftleft.3 im_shiftright.3 -MLINKS+= im_andimage.3 im_andconst.3 -MLINKS+= im_andimage.3 im_orconst.3 -MLINKS+= im_andimage.3 im_eorconst.3 -MLINKS+= im_andimage.3 im_eor_vec.3 -MLINKS+= im_andimage.3 im_or_vec.3 -MAN3+= im_shiftleft.3 -MLINKS+= im_andimage.3 im_and_vec.3 -MLINKS+= im_paintrect.3 im_readpoint.3 -MLINKS+= im_flood.3 im_flood_blob.3 -MLINKS+= im_paintrect.3 im_lineset.3 -MLINKS+= im_paintrect.3 im_fastlineuser.3 -MAN3+= im_line.3 -MAN3+= im_insertplace.3 -MLINKS+= im_smudge.3 im_smear.3 -MLINKS+= im_paintrect.3 im_fastline.3 -MLINKS+= im_paintrect.3 im_plotmask.3 -MAN3+= im_smudge.3 -MAN3+= im_flood.3 -MAN3+= im_paintrect.3 -MAN3+= im_circle.3 -MLINKS+= im_paintrect.3 im_plotpoint.3 -MLINKS+= im_Lab2UCS.3 im_UCS2XYZ.3 -MAN3+= im_dE_fromdisp.3 -MLINKS+= im_Lab2UCS.3 im_XYZ2UCS.3 -MLINKS+= im_Lab2LabQ.3 im_LabS2Lab.3 -MAN3+= im_LabQ2disp.3 -MLINKS+= im_XYZ2disp.3 im_Yxy2XYZ.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_display.3 -MLINKS+= im_dE_fromdisp.3 im_dE_fromXYZ.3 -MLINKS+= im_icc_transform.3 im_icc_ac2rc.3 -MLINKS+= im_Lab2LabQ.3 im_Lab2LabS.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_Ch2ab.3 -MLINKS+= im_dE_fromLab.3 im_dE00_fromLab.3 -MLINKS+= im_LabQ2disp.3 im_LabQ2disp_table.3 -MAN3+= im_col_XYZ2rgb.3 -MLINKS+= im_XYZ2disp.3 im_LCh2UCS.3 -MLINKS+= im_XYZ2disp.3 im_Lab2LCh.3 -MLINKS+= im_Lab2UCS.3 im_LabQ2XYZ.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_Cucs2C.3 -MLINKS+= im_Lab2UCS.3 im_UCS2Lab.3 -MLINKS+= im_dE_fromdisp.3 im_dECMC_fromdisp.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_dECMC.3 -MAN3+= im_Lab2UCS.3 -MLINKS+= im_icc_transform.3 im_icc_present.3 -MLINKS+= im_icc_transform.3 im_icc_export.3 -MLINKS+= im_Lab2LabQ.3 im_LabQ2Lab.3 -MAN3+= im_dE_fromLab.3 -MAN3+= im_icc_transform.3 -MLINKS+= im_Lab2LabQ.3 im_LabQ2LabS.3 -MLINKS+= im_XYZ2disp.3 im_disp2XYZ.3 -MLINKS+= im_Lab2UCS.3 im_Lab2disp.3 -MLINKS+= im_LabQ2disp.3 im_LabQ2disp_build_table.3 -MAN3+= im_Lab2LabQ.3 -MLINKS+= im_Lab2LabQ.3 im_LabS2LabQ.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_XYZ2Lab.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_Ch2hucs.3 -MLINKS+= im_XYZ2disp.3 im_Lab2XYZ.3 -MLINKS+= im_XYZ2disp.3 im_LCh2Lab.3 -MLINKS+= im_icc_transform.3 im_icc_import.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_Lab2XYZ.3 -MLINKS+= im_XYZ2disp.3 im_UCS2LCh.3 -MLINKS+= im_XYZ2disp.3 im_XYZ2Yxy.3 -MAN3+= im_lab_morph.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_rgb2XYZ.3 -MLINKS+= im_icc_transform.3 im_icc_import_embedded.3 -MLINKS+= im_XYZ2disp.3 im_XYZ2sRGB.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_pythagoras.3 -MLINKS+= im_icc_transform.3 im_icc_export_depth.3 -MLINKS+= im_XYZ2disp.3 im_sRGB2XYZ.3 -MLINKS+= im_XYZ2disp.3 im_XYZ2Lab.3 -MAN3+= im_XYZ2disp.3 -MLINKS+= im_Lab2UCS.3 im_disp2Lab.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_ab2Ch.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_L2Lucs.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_C2Cucs.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_Chucs2h.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_Lucs2L.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_make_tables_UCS.3 -MLINKS+= im_col_XYZ2rgb.3 im_col_make_tables_RGB.3 -MLINKS+= im_dE_fromLab.3 im_dECMC_fromLab.3 -MAN3+= im_raw2vips.3 -MLINKS+= im_msb.3 im_msb_band.3 -MLINKS+= im_rot180.3 im_flipver.3 -MLINKS+= im_tiff2vips.3 im_tiff2vips_header.3 -MLINKS+= im_vips2mask.3 im_mask2vips.3 -MLINKS+= im_clip.3 im_clip2s.3 -MAN3+= im_print.3 -MLINKS+= im_jpeg2vips.3 im_vips2jpeg.3 -MLINKS+= im_jpeg2vips.3 im_vips2bufjpeg.3 -MAN3+= im_msb.3 -MAN3+= im_copy.3 -MAN3+= im_recomb.3 -MLINKS+= im_clip.3 im_ri2c.3 -MLINKS+= im_clip.3 im_clip2us.3 -MLINKS+= im_png2vips.3 im_png2vips_header.3 -MAN3+= im_system.3 -MAN3+= im_lrjoin.3 -MAN3+= im_zoom.3 -MAN3+= im_rot180.3 -MLINKS+= im_clip.3 im_clip2d.3 -MLINKS+= im_thresh.3 im_slice.3 -MAN3+= im_text.3 -MLINKS+= im_ppm2vips.3 im_ppm2vips_header.3 -MAN3+= im_csv2vips.3 -MLINKS+= im_csv2vips.3 im_vips2csv.3 -MLINKS+= im_magick2vips.3 im_magick2vips_header.3 -MAN3+= im_extract.3 -MAN3+= im_png2vips.3 -MLINKS+= im_copy.3 im_copy_from.3 -MAN3+= im_thresh.3 -MLINKS+= im_exr2vips.3 im_exr2vips_header.3 -MLINKS+= im_jpeg2vips.3 im_vips2mimejpeg.3 -MAN3+= im_tile_cache.3 -MLINKS+= im_rot180.3 im_rot90.3 -MAN3+= im_clip.3 -MLINKS+= im_clip.3 im_clip2ui.3 -MAN3+= im_bandjoin.3 -MAN3+= im_subsample.3 -MLINKS+= im_clip.3 im_clip2fmt.3 -MAN3+= im_tiff2vips.3 -MLINKS+= im_bandjoin.3 im_gbandjoin.3 -MAN3+= im_ppm2vips.3 -MAN3+= im_black.3 -MLINKS+= im_rot180.3 im_rot270.3 -MLINKS+= im_clip.3 im_c2ps.3 -MAN3+= im_insert.3 -MLINKS+= im_copy.3 im_copy_swap.3 -MAN3+= im_exr2vips.3 -MAN3+= im_magick2vips.3 -MLINKS+= im_copy.3 im_copy_set_meta.3 -MLINKS+= im_iscomplex.3 im_istiff.3 -MLINKS+= im_copy.3 im_copy_morph.3 -MLINKS+= im_clip.3 im_clip2cm.3 -MLINKS+= im_copy.3 im_copy_set.3 -MLINKS+= im_rot180.3 im_fliphor.3 -MLINKS+= im_clip.3 im_c2rect.3 -MAN3+= im_rightshift_size.3 -MLINKS+= im_clip.3 im_c2imag.3 -MLINKS+= im_clip.3 im_c2real.3 -MLINKS+= im_extract.3 im_extract_bands.3 -MAN3+= im_analyze2vips.3 -MLINKS+= im_clip.3 im_clip2c.3 -MLINKS+= im_clip.3 im_clip2i.3 -MLINKS+= im_csv2vips.3 im_csv2vips_header.3 -MLINKS+= im_scale.3 im_scaleps.3 -MLINKS+= im_lrjoin.3 im_tbjoin.3 -MAN3+= im_falsecolour.3 -MAN3+= im_scale.3 -MLINKS+= im_ppm2vips.3 im_vips2ppm.3 -MLINKS+= im_clip.3 im_clip2f.3 -MLINKS+= im_tiff2vips.3 im_vips2tiff.3 -MAN3+= im_grid.3 -MLINKS+= im_jpeg2vips.3 im_jpeg2vips_header.3 -MLINKS+= im_extract.3 im_extract_areabands.3 -MAN3+= im_vips2mask.3 -MAN3+= im_jpeg2vips.3 -MLINKS+= im_clip.3 im_c2amph.3 -MAN3+= im_replicate.3 -MLINKS+= im_clip.3 im_clip2dcm.3 -MLINKS+= im_extract.3 im_extract_area.3 -MLINKS+= im_png2vips.3 im_vips2png.3 -MLINKS+= im_fwfft.3 im_invfft.3 -MLINKS+= im_fwfft.3 im_invfftr.3 -MAN3+= im_fwfft.3 -MAN3+= im_fractsurf.3 -MAN3+= im_flt_imag_freq.3 -MAN3+= im_disp_ps.3 -MAN3+= im_freqflt.3 -MAN3+= im_rotquad.3 -MAN3+= im_create_fmask.3 diff --git a/graphics/vips/distinfo b/graphics/vips/distinfo deleted file mode 100644 index b1d4a7d73..000000000 --- a/graphics/vips/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (vips-7.12.4.tar.gz) = 5399e1355172964f503ce1422e648ffd -SHA256 (vips-7.12.4.tar.gz) = 82c4b1ae2299e1c63c50f549a2964d5cc5d4e9fdff8e95107bad3ff73a102e1e -SIZE (vips-7.12.4.tar.gz) = 3469526 diff --git a/graphics/vips/files/patch-configure b/graphics/vips/files/patch-configure deleted file mode 100644 index 2a60b6dcd..000000000 --- a/graphics/vips/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Wed Aug 23 05:33:19 2006 -+++ configure -@@ -5250,7 +5250,7 @@ - #define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" - _ACEOF - --ALL_LINGUAS="en_GB malkovich" -+ALL_LINGUAS="en_GB" - - case "$am__api_version" in - 1.01234) diff --git a/graphics/vips/files/patch-libsrc-conversion-im_tiff2vips.c b/graphics/vips/files/patch-libsrc-conversion-im_tiff2vips.c deleted file mode 100644 index 174f406af..000000000 --- a/graphics/vips/files/patch-libsrc-conversion-im_tiff2vips.c +++ /dev/null @@ -1,15 +0,0 @@ ---- libsrc/conversion/im_tiff2vips.c.orig Wed Aug 17 06:34:12 2005 -+++ libsrc/conversion/im_tiff2vips.c -@@ -157,6 +157,12 @@ - #include <vips/vips.h> - #include <vips/thread.h> - -+#undef D50_X0 -+#undef D50_Y0 -+#undef D50_Z0 -+#undef D65_X0 -+#undef D65_Y0 -+#undef D65_Z0 - #include <tiffio.h> - - #ifdef WITH_DMALLOC diff --git a/graphics/vips/files/patch-libsrc-conversion-im_vips2tiff.c b/graphics/vips/files/patch-libsrc-conversion-im_vips2tiff.c deleted file mode 100644 index 21f8830e5..000000000 --- a/graphics/vips/files/patch-libsrc-conversion-im_vips2tiff.c +++ /dev/null @@ -1,15 +0,0 @@ ---- libsrc/conversion/im_vips2tiff.c.orig Fri Mar 3 03:06:32 2006 -+++ libsrc/conversion/im_vips2tiff.c -@@ -145,6 +145,12 @@ - - #include <vips/vips.h> - -+#undef D50_X0 -+#undef D50_Y0 -+#undef D50_Z0 -+#undef D65_X0 -+#undef D65_Y0 -+#undef D65_Z0 - #include <tiffio.h> - - #ifdef WITH_DMALLOC diff --git a/graphics/vips/files/patch-libsrc-iofuncs-predicate.c b/graphics/vips/files/patch-libsrc-iofuncs-predicate.c deleted file mode 100644 index 96f801099..000000000 --- a/graphics/vips/files/patch-libsrc-iofuncs-predicate.c +++ /dev/null @@ -1,15 +0,0 @@ ---- libsrc/iofuncs/predicate.c.orig Tue Feb 8 07:19:20 2005 -+++ libsrc/iofuncs/predicate.c -@@ -73,6 +73,12 @@ - #include <vips/vips.h> - - #ifdef HAVE_TIFF -+#undef D50_X0 -+#undef D50_Y0 -+#undef D50_Z0 -+#undef D65_X0 -+#undef D65_Y0 -+#undef D65_Z0 - #include <tiffio.h> - #endif /*HAVE_TIFF*/ - diff --git a/graphics/vips/files/patch-po-Makefile.in.in b/graphics/vips/files/patch-po-Makefile.in.in deleted file mode 100644 index dd02c40e8..000000000 --- a/graphics/vips/files/patch-po-Makefile.in.in +++ /dev/null @@ -1,29 +0,0 @@ ---- po/Makefile.in.in.orig Thu Dec 14 16:41:02 2006 -+++ po/Makefile.in.in Thu Dec 14 16:56:02 2006 -@@ -34,7 +34,7 @@ - datarootdir = @datarootdir@ - libdir = @libdir@ - DATADIRNAME = @DATADIRNAME@ --itlocaledir = $(prefix)/$(DATADIRNAME)/locale -+itlocaledir = ${datadir}/locale - subdir = po - install_sh = @install_sh@ - # Automake >= 1.8 provides @mkdir_p@. -@@ -44,15 +44,15 @@ - INSTALL = @INSTALL@ - INSTALL_DATA = @INSTALL_DATA@ - --GMSGFMT = @GMSGFMT@ --MSGFMT = @MSGFMT@ -+GMSGFMT = @INTLTOOL_MSGFMT@ -+MSGFMT = @INTLTOOL_MSGFMT@ - XGETTEXT = @XGETTEXT@ - INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ - INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ - MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist - GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot - - ALL_LINGUAS = @ALL_LINGUAS@ - - PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; fi) - diff --git a/graphics/vips/pkg-descr b/graphics/vips/pkg-descr deleted file mode 100644 index 61e202676..000000000 --- a/graphics/vips/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -VIPS's a free image processing system. It aims to be about half way between -Excel and Photoshop. It's obviously much smaller than these two, but it's -not a toy either (about 200k lines of code). It's very bad at photo -retouching, but it's great (much better than programs like Photoshop, I -think) at all the other things you use photoshop for. It's particularly -good with large images (ie. images larger than the amount of RAM in your -machine), and for working with colour. - -WWW: http://www.vips.ecs.soton.ac.uk/ diff --git a/graphics/vips/pkg-plist b/graphics/vips/pkg-plist deleted file mode 100644 index 6e08afd69..000000000 --- a/graphics/vips/pkg-plist +++ /dev/null @@ -1,452 +0,0 @@ -bin/batch_crop -bin/batch_image_convert -bin/batch_rubber_sheet -bin/binfile -bin/cooc -bin/cooc_features -bin/debugim -bin/edvips -bin/find_mosaic -bin/glds -bin/glds_features -bin/header -bin/im_LCh2Lab -bin/im_LCh2UCS -bin/im_Lab2LCh -bin/im_Lab2LabQ -bin/im_Lab2LabS -bin/im_Lab2UCS -bin/im_Lab2XYZ -bin/im_Lab2XYZ_temp -bin/im_Lab2disp -bin/im_LabQ2Lab -bin/im_LabQ2LabS -bin/im_LabQ2XYZ -bin/im_LabQ2disp -bin/im_LabS2Lab -bin/im_LabS2LabQ -bin/im_UCS2LCh -bin/im_UCS2Lab -bin/im_UCS2XYZ -bin/im_XYZ2Lab -bin/im_XYZ2Lab_temp -bin/im_XYZ2UCS -bin/im_XYZ2Yxy -bin/im_XYZ2disp -bin/im_XYZ2sRGB -bin/im_Yxy2XYZ -bin/im__find_lroverlap -bin/im__find_tboverlap -bin/im_abs -bin/im_acostra -bin/im_add -bin/im_addgnoise -bin/im_affine -bin/im_analyze2vips -bin/im_andimage -bin/im_andimage_vec -bin/im_andimageconst -bin/im_asintra -bin/im_atantra -bin/im_avg -bin/im_bandjoin -bin/im_bandmean -bin/im_benchmark -bin/im_benchmark2 -bin/im_benchmarkn -bin/im_bernd -bin/im_binfile -bin/im_black -bin/im_blend -bin/im_buildlut -bin/im_c2amph -bin/im_c2imag -bin/im_c2ps -bin/im_c2real -bin/im_c2rect -bin/im_cache -bin/im_ceil -bin/im_circle -bin/im_clip -bin/im_clip2c -bin/im_clip2cm -bin/im_clip2d -bin/im_clip2dcm -bin/im_clip2f -bin/im_clip2fmt -bin/im_clip2i -bin/im_clip2s -bin/im_clip2ui -bin/im_clip2us -bin/im_cmulnorm -bin/im_cntlines -bin/im_compass -bin/im_contrast_surface -bin/im_contrast_surface_raw -bin/im_conv -bin/im_conv_raw -bin/im_convf -bin/im_convf_raw -bin/im_convsep -bin/im_convsep_raw -bin/im_convsepf -bin/im_convsepf_raw -bin/im_convsub -bin/im_copy -bin/im_copy_morph -bin/im_copy_set -bin/im_copy_set_meta -bin/im_copy_swap -bin/im_correl -bin/im_costra -bin/im_create_fmask -bin/im_csv2vips -bin/im_dE00_fromLab -bin/im_dECMC_fromLab -bin/im_dECMC_fromdisp -bin/im_dE_fromLab -bin/im_dE_fromXYZ -bin/im_dE_fromdisp -bin/im_deviate -bin/im_dilate -bin/im_dilate_raw -bin/im_disp2Lab -bin/im_disp2XYZ -bin/im_disp_ps -bin/im_divide -bin/im_dmask_xsize -bin/im_dmask_ysize -bin/im_embed -bin/im_eorimage -bin/im_eorimage_vec -bin/im_eorimageconst -bin/im_equal -bin/im_equal_vec -bin/im_equalconst -bin/im_erode -bin/im_erode_raw -bin/im_exp10tra -bin/im_expntra -bin/im_expntra_vec -bin/im_exptra -bin/im_exr2vips -bin/im_extract -bin/im_extract_area -bin/im_extract_areabands -bin/im_extract_band -bin/im_extract_bands -bin/im_eye -bin/im_falsecolour -bin/im_fastcor -bin/im_fastcor_raw -bin/im_fav4 -bin/im_feye -bin/im_fgrey -bin/im_fliphor -bin/im_flipver -bin/im_flood_blob_copy -bin/im_floor -bin/im_flt_image_freq -bin/im_fractsurf -bin/im_freqflt -bin/im_fwfft -bin/im_fzone -bin/im_gadd -bin/im_gammacorrect -bin/im_gauss_dmask -bin/im_gauss_imask -bin/im_gaussnoise -bin/im_gbandjoin -bin/im_global_balance -bin/im_global_balancef -bin/im_grad_x -bin/im_grad_y -bin/im_gradcor -bin/im_gradcor_raw -bin/im_gradient -bin/im_grey -bin/im_grid -bin/im_guess_prefix -bin/im_header_double -bin/im_header_get_type -bin/im_header_int -bin/im_header_string -bin/im_heq -bin/im_hist -bin/im_histcum -bin/im_histeq -bin/im_histgr -bin/im_histnD -bin/im_histnorm -bin/im_histplot -bin/im_histspec -bin/im_hsp -bin/im_icc_ac2rc -bin/im_icc_export -bin/im_icc_export_depth -bin/im_icc_import -bin/im_icc_import_embedded -bin/im_icc_present -bin/im_icc_transform -bin/im_identity -bin/im_identity_ushort -bin/im_ifthenelse -bin/im_imask_xsize -bin/im_imask_ysize -bin/im_insert -bin/im_insert_noexpand -bin/im_insertplace -bin/im_invert -bin/im_invertlut -bin/im_invfft -bin/im_invfftr -bin/im_ismonotonic -bin/im_jpeg2vips -bin/im_lab_morph -bin/im_less -bin/im_less_vec -bin/im_lessconst -bin/im_lesseq -bin/im_lesseq_vec -bin/im_lesseqconst -bin/im_lhisteq -bin/im_lhisteq_raw -bin/im_lindetect -bin/im_line -bin/im_lineset -bin/im_linreg -bin/im_lintra -bin/im_lintra_vec -bin/im_litecor -bin/im_log10tra -bin/im_log_dmask -bin/im_log_imask -bin/im_logtra -bin/im_lrjoin -bin/im_lrmerge -bin/im_lrmerge1 -bin/im_lrmosaic -bin/im_lrmosaic1 -bin/im_magick2vips -bin/im_make_xy -bin/im_maplut -bin/im_mask2vips -bin/im_matcat -bin/im_match_linear -bin/im_match_linear_search -bin/im_matinv -bin/im_matmul -bin/im_mattrn -bin/im_max -bin/im_maxpos -bin/im_maxpos_avg -bin/im_maxvalue -bin/im_measure -bin/im_min -bin/im_minpos -bin/im_more -bin/im_more_vec -bin/im_moreconst -bin/im_moreeq -bin/im_moreeq_vec -bin/im_moreeqconst -bin/im_mpercent -bin/im_msb -bin/im_msb_band -bin/im_multiply -bin/im_notequal -bin/im_notequal_vec -bin/im_notequalconst -bin/im_orimage -bin/im_orimage_vec -bin/im_orimageconst -bin/im_png2vips -bin/im_point_bilinear -bin/im_powtra -bin/im_powtra_vec -bin/im_ppm2vips -bin/im_print -bin/im_profile -bin/im_project -bin/im_rank -bin/im_rank_image -bin/im_rank_raw -bin/im_read_dmask -bin/im_recomb -bin/im_remainder -bin/im_remainderconst -bin/im_remainderconst_vec -bin/im_remosaic -bin/im_replicate -bin/im_resize_linear -bin/im_ri2c -bin/im_rightshift_size -bin/im_rint -bin/im_rot180 -bin/im_rot270 -bin/im_rot90 -bin/im_rotate_dmask45 -bin/im_rotate_dmask90 -bin/im_rotate_imask45 -bin/im_rotate_imask90 -bin/im_rotquad -bin/im_sRGB2XYZ -bin/im_scale -bin/im_scaleps -bin/im_sharpen -bin/im_shiftleft -bin/im_shiftright -bin/im_shrink -bin/im_sign -bin/im_similarity -bin/im_similarity_area -bin/im_sintra -bin/im_slice -bin/im_spcor -bin/im_spcor2 -bin/im_spcor2_raw -bin/im_spcor_raw -bin/im_stats -bin/im_stdif -bin/im_stdif_raw -bin/im_stretch3 -bin/im_subsample -bin/im_subtract -bin/im_system -bin/im_tantra -bin/im_tbjoin -bin/im_tbmerge -bin/im_tbmerge1 -bin/im_tbmosaic -bin/im_tbmosaic1 -bin/im_text -bin/im_thresh -bin/im_tiff2vips -bin/im_tone_analyse -bin/im_tone_build -bin/im_tone_build_range -bin/im_tone_map -bin/im_version -bin/im_version_string -bin/im_video_test -bin/im_video_v4l1 -bin/im_vips2csv -bin/im_vips2jpeg -bin/im_vips2mask -bin/im_vips2mimejpeg -bin/im_vips2png -bin/im_vips2ppm -bin/im_vips2tiff -bin/im_zerox -bin/im_zone -bin/im_zoom -bin/light_correct -bin/mergeup -bin/mitsub -bin/printlines -bin/shrink_width -bin/simcontr -bin/sines -bin/spatres -bin/squares -bin/vdump -bin/vips -bin/vips-%%VERSION%% -bin/vips2dj -include/vips/VDisplay.h -include/vips/VError.h -include/vips/VImage.h -include/vips/VMask.h -include/vips/colour.h -include/vips/debug.h -include/vips/dispatch.h -include/vips/fmask.h -include/vips/history.h -include/vips/intl.h -include/vips/meta.h -include/vips/mosaic.h -include/vips/proto.h -include/vips/r_access.h -include/vips/rect.h -include/vips/region.h -include/vips/semaphore.h -include/vips/struct.h -include/vips/thread.h -include/vips/threadgroup.h -include/vips/time.h -include/vips/util.h -include/vips/vbuf.h -include/vips/version.h -include/vips/vips -include/vips/vips.h -include/vips/vipsc++.h -include/vips/vipscpp.h -lib/libvips.a -lib/libvips.la -lib/libvips.so -lib/libvips.so.14 -lib/libvipsCC.a -lib/libvipsCC.la -lib/libvipsCC.so -lib/libvipsCC.so.14 -libdata/pkgconfig/vips-%%VERSION%%.pc -libdata/pkgconfig/vipsCC-%%VERSION%%.pc -%%PORTDOCS%%%%DOCSDIR%%/html/figs/arch.png -%%PORTDOCS%%%%DOCSDIR%%/html/figs/arch.svg -%%PORTDOCS%%%%DOCSDIR%%/html/figs/interconvert.png -%%PORTDOCS%%%%DOCSDIR%%/html/figs/interconvert.svg -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanual.css -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanual.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualch1.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualch2.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualch3.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualch4.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualli1.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualli2.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualli3.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse1.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse10.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse11.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse12.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse13.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse14.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse15.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse2.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse3.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse4.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse5.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse6.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse7.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse8.html -%%PORTDOCS%%%%DOCSDIR%%/html/vipsmanualse9.html -%%PORTDOCS%%%%DOCSDIR%%/pdf/vipsmanual.pdf -share/locale/en_GB/LC_MESSAGES/vips7.mo -%%DATADIR%%/vdump.pro -%%DATADIR%%/vips2dj/cmyk/head1 -%%DATADIR%%/vips2dj/cmyk/head2 -%%DATADIR%%/vips2dj/cmyk/head3 -%%DATADIR%%/vips2dj/cmyk/head4 -%%DATADIR%%/vips2dj/cmyk/head5 -%%DATADIR%%/vips2dj/cmyk/head6 -%%DATADIR%%/vips2dj/lab/head1 -%%DATADIR%%/vips2dj/lab/head2 -%%DATADIR%%/vips2dj/lab/head3 -%%DATADIR%%/vips2dj/lab/head4 -%%DATADIR%%/vips2dj/lab/head5 -%%DATADIR%%/vips2dj/lab/head6 -%%DATADIR%%/vips2dj/mono/head1 -%%DATADIR%%/vips2dj/mono/head2 -%%DATADIR%%/vips2dj/mono/head3 -%%DATADIR%%/vips2dj/mono/head4 -%%DATADIR%%/vips2dj/mono/head5 -%%DATADIR%%/vips2dj/mono/head6 -@dirrm include/vips -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/figs -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/pdf -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%DATADIR%%/vips2dj/cmyk -@dirrm %%DATADIR%%/vips2dj/lab -@dirrm %%DATADIR%%/vips2dj/mono -@dirrm %%DATADIR%%/vips2dj -@dirrm %%DATADIR%% |