diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-03-19 13:35:06 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-03-19 13:35:06 +0800 |
commit | 716e853082f85512d878931d3c2903f4a669c7e8 (patch) | |
tree | 3a24d58f313f014bb8f3aca107a85ec50d2fb1df /graphics | |
parent | ea6bb0f0996a0cf559b13cfa9aef24e8199d6a23 (diff) | |
download | marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.tar.gz marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.tar.zst marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.zip |
Remove these ports now that they have been committed to FreeBSD.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8576 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics')
25 files changed, 0 insertions, 998 deletions
diff --git a/graphics/cairo/Makefile b/graphics/cairo/Makefile deleted file mode 100644 index 23888c24a..000000000 --- a/graphics/cairo/Makefile +++ /dev/null @@ -1,67 +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.55 2007/03/05 22:10:46 ahze Exp $ -# - -PORTNAME= cairo -PORTVERSION= 1.4.0 -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 - -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}" - -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 - -.if defined(WITHOUT_X11) -CONFIGURE_ARGS+=--disable-xlib -PLIST_SUB+= X11="@comment " -.else -USE_XLIB= yes -PLIST_SUB+= X11="" -.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 e13c5200d..000000000 --- a/graphics/cairo/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (cairo-1.4.0.tar.gz) = b0882df4621bcf5b69f024b9475f8d4e -SHA256 (cairo-1.4.0.tar.gz) = 583f9ae2c9b7d2ef33cfbd194148e71a335dafc226e13e213f07ff2dc398bb47 -SIZE (cairo-1.4.0.tar.gz) = 3067230 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-surface.c b/graphics/cairo/files/patch-src_cairo-xlib-surface.c deleted file mode 100644 index 396ac3e29..000000000 --- a/graphics/cairo/files/patch-src_cairo-xlib-surface.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/cairo-xlib-surface.c.orig Mon Oct 3 22:44:43 2005 -+++ src/cairo-xlib-surface.c Wed Nov 16 18:59:40 2005 -@@ -1758,7 +1758,7 @@ - - surface->buggy_repeat = FALSE; - if (strstr (ServerVendor (dpy), "X.Org") != NULL) { -- if (VendorRelease (dpy) <= 60802000) -+ if (VendorRelease (dpy) < 60900000) - surface->buggy_repeat = TRUE; - } else if (strstr (ServerVendor (dpy), "XFree86") != NULL) { - if (VendorRelease (dpy) <= 40500000) 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/eog/Makefile b/graphics/eog/Makefile deleted file mode 100644 index 40a92bd08..000000000 --- a/graphics/eog/Makefile +++ /dev/null @@ -1,44 +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.50 2007/03/11 20:01:01 mezz Exp $ -# - -PORTNAME= eog -PORTVERSION= 2.18.0.1 -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 libgnomeprintui \ - 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 -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/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 - -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 6b68e48b7..000000000 --- a/graphics/eog/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/eog-2.18.0.1.tar.bz2) = 32f4cd4cd3108522eccf0b8fd85c8bbd -SHA256 (gnome2/eog-2.18.0.1.tar.bz2) = 9c18c512d7da540e8c96059f00af8e309c5ac6322de168f54f09c0451f59ec9e -SIZE (gnome2/eog-2.18.0.1.tar.bz2) = 1235965 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 08a99fc18..000000000 --- a/graphics/eog/pkg-plist +++ /dev/null @@ -1,249 +0,0 @@ -bin/eog -share/gnome/applications/eog.desktop -share/gnome/eog/eog-gtk-ui.xml -share/gnome/eog/glade/eog.glade -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/legal.xml -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/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/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/eu/eog.xml -share/gnome/help/eog/eu/figures/eog_start_window.png -share/gnome/help/eog/eu/legal.xml -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/it/eog.xml -share/gnome/help/eog/it/figures/eog_start_window.png -share/gnome/help/eog/it/legal.xml -share/gnome/help/eog/ja/eog.xml -share/gnome/help/eog/ja/figures/eog_start_window.png -share/gnome/help/eog/ja/legal.xml -share/gnome/help/eog/ko/eog.xml -share/gnome/help/eog/ko/figures/eog_start_window.png -share/gnome/help/eog/ko/legal.xml -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/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/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/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/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/zh_CN/eog.xml -share/gnome/help/eog/zh_CN/figures/eog_start_window.png -share/gnome/help/eog/zh_CN/legal.xml -share/gnome/help/eog/zh_TW/eog.xml -share/gnome/help/eog/zh_TW/figures/eog_start_window.png -share/gnome/help/eog/zh_TW/legal.xml -share/gnome/omf/eog/eog-C.omf -share/gnome/omf/eog/eog-de.omf -share/gnome/omf/eog/eog-en_GB.omf -share/gnome/omf/eog/eog-es.omf -share/gnome/omf/eog/eog-eu.omf -share/gnome/omf/eog/eog-fr.omf -share/gnome/omf/eog/eog-it.omf -share/gnome/omf/eog/eog-ja.omf -share/gnome/omf/eog/eog-ko.omf -share/gnome/omf/eog/eog-pa.omf -share/gnome/omf/eog/eog-pt_BR.omf -share/gnome/omf/eog/eog-ru.omf -share/gnome/omf/eog/eog-sv.omf -share/gnome/omf/eog/eog-uk.omf -share/gnome/omf/eog/eog-zh_CN.omf -share/gnome/omf/eog/eog-zh_TW.omf -share/gnome/pixmaps/gnome-eog.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/az/LC_MESSAGES/eog.mo -share/locale/be/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/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/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/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/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 -@dirrm share/gnome/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/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/C/figures -@dirrm share/gnome/help/eog/C -@dirrm share/gnome/help/eog -@dirrm share/gnome/eog/glade -@dirrm share/gnome/eog -@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_TW/LC_MESSAGES -@dirrmtry share/locale/zh_TW -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/zh_CN/LC_MESSAGES -@dirrmtry share/locale/zh_CN -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uk/LC_MESSAGES -@dirrmtry share/locale/uk -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/tk/LC_MESSAGES -@dirrmtry share/locale/tk -@dirrmtry share/locale/sr/LC_MESSAGES -@dirrmtry share/locale/sr -@dirrmtry share/locale/sl/LC_MESSAGES -@dirrmtry share/locale/sl -@dirrmtry share/locale/sk/LC_MESSAGES -@dirrmtry share/locale/sk -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ro/LC_MESSAGES -@dirrmtry share/locale/ro -@dirrmtry share/locale/pt/LC_MESSAGES -@dirrmtry share/locale/pt -@dirrmtry share/locale/pl/LC_MESSAGES -@dirrmtry share/locale/pl -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/nn/LC_MESSAGES -@dirrmtry share/locale/nn -@dirrmtry share/locale/ne/LC_MESSAGES -@dirrmtry share/locale/ne -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/ko/LC_MESSAGES -@dirrmtry share/locale/ko -@dirrmtry share/locale/gl/LC_MESSAGES -@dirrmtry share/locale/gl -@dirrmtry share/locale/fi/LC_MESSAGES -@dirrmtry share/locale/fi -@dirrmtry share/locale/el/LC_MESSAGES -@dirrmtry share/locale/el -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/cs/LC_MESSAGES -@dirrmtry share/locale/cs -@dirrmtry share/locale/ca/LC_MESSAGES -@dirrmtry share/locale/ca -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be/LC_MESSAGES -@dirrmtry share/locale/be diff --git a/graphics/evince/Makefile b/graphics/evince/Makefile deleted file mode 100644 index 10920a7ad..000000000 --- a/graphics/evince/Makefile +++ /dev/null @@ -1,114 +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.63 2007/02/17 18:30:09 marcus Exp $ -# - -PORTNAME= evince -PORTVERSION= 0.8.0 -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.1:${PORTSDIR}/graphics/poppler-gtk - -USE_LDCONFIG= yes -USE_BZIP2= yes -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -USE_GETTEXT= yes -USE_XLIB= yes -USE_GMAKE= yes -USE_GHOSTSCRIPT=yes -INSTALLS_OMF= yes -USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui libgnomeprintui \ - desktopfileutils gnomedocutils -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" - -GCONF_SCHEMAS= evince.schemas evince-thumbnailer.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" off -# IMPRESS "Enable Impress presentations support" off \ -# DJVU "Enable DJVU support" off - -.include <bsd.port.pre.mk> - -.if defined(PACKAGE_BUILDING) || defined(PARALLEL_PACKAGE_BUILD) \ - || exists(${LOCALBASE}/lib/libdbus-glib-1.so) -WITH_DBUS= yes -.endif - -.if defined(WITH_DVI) || defined(WITH_T1LIB) -BUILD_DEPENDS+= tex:${PORTSDIR}/print/teTeX-base -RUN_DEPENDS+= tex:${PORTSDIR}/print/teTeX-base - -CONFIGURE_ARGS+= --enable-dvi -GCONF_SCHEMAS+= evince-thumbnailer-dvi.schemas -. if defined(WITH_T1LIB) -LIB_DEPENDS+= t1.5:${PORTSDIR}/devel/t1lib - -CONFIGURE_ARGS+= --enable-t1lib -. endif -.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(${X11BASE}/bin/djview) -#DJVU_DIR?= # empty -#.else -#DJVU_DIR?= -nox11 -#.endif -# -#.if defined(WITH_DJVU) -#LIB_DEPENDS+= djvulibre.17:${PORTSDIR}/graphics/djvulibre${DJVU_DIR} -#CONFIGURE_ARGS+= --enable-djvu -#GCONF_SCHEMAS+= evince-thumbnailer-djvu.schemas -#.else -CONFIGURE_ARGS+= --disable-djvu -#.endif - -.if !defined(WITHOUT_DBUS) -LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib -.endif - -.if defined(WITH_COMICS) -CONFIGURE_ARGS+= --enable-comics -GCONF_SCHEMAS+= evince-thumbnailer-comics.schemas - -RUN_DEPENDS+= unrar:${PORTSDIR}/archivers/unrar \ - unzip:${PORTSDIR}/archivers/unzip -.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 6928356b7..000000000 --- a/graphics/evince/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/evince-0.8.0.tar.bz2) = b4f7b154535c05ca77a23be193fc458d -SHA256 (gnome2/evince-0.8.0.tar.bz2) = eaed6371b1909a8cbab91f7e40c710b251e7adbb2a88174f12b96e26e132a8df -SIZE (gnome2/evince-0.8.0.tar.bz2) = 1460387 diff --git a/graphics/evince/files/patch-backend_ps_ps-interpreter.c b/graphics/evince/files/patch-backend_ps_ps-interpreter.c deleted file mode 100644 index 9cd98bbef..000000000 --- a/graphics/evince/files/patch-backend_ps_ps-interpreter.c +++ /dev/null @@ -1,10 +0,0 @@ ---- backend/ps/ps-interpreter.c.orig Tue Mar 13 07:00:12 2007 -+++ backend/ps/ps-interpreter.c Tue Mar 13 07:00:21 2007 -@@ -29,6 +29,7 @@ - #include <string.h> - #include <stdlib.h> - #include <sys/wait.h> -+#include <signal.h> - #include <errno.h> - - #include "ps-interpreter.h" diff --git a/graphics/evince/files/patch-configure b/graphics/evince/files/patch-configure deleted file mode 100644 index dc2323992..000000000 --- a/graphics/evince/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Mon Dec 18 18:05:50 2006 -+++ configure Mon Dec 18 18:06:30 2006 -@@ -25315,7 +25315,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 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 dfb1c85b7..000000000 --- a/graphics/evince/pkg-plist +++ /dev/null @@ -1,291 +0,0 @@ -bin/evince -bin/evince-thumbnailer -%%NAUTILUS%%lib/nautilus/extensions-1.0/libevince-properties-page.a -%%NAUTILUS%%lib/nautilus/extensions-1.0/libevince-properties-page.la -%%NAUTILUS%%lib/nautilus/extensions-1.0/libevince-properties-page.so -%%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-print-job.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 -share/gnome/applications/evince.desktop -share/gnome/evince/evince-password.glade -share/gnome/evince/evince-preview-toolbar.xml -share/gnome/evince/evince-properties.glade -share/gnome/evince/evince-toolbar.xml -share/gnome/evince/evince-ui.xml -share/gnome/evince/hand-open.png -share/gnome/evince/icons/hicolor/16x16/actions/view-page-continuous.png -share/gnome/evince/icons/hicolor/16x16/actions/view-page-facing.png -share/gnome/evince/icons/hicolor/16x16/actions/zoom-fit-page.png -share/gnome/evince/icons/hicolor/16x16/actions/zoom-fit-width.png -share/gnome/evince/icons/hicolor/22x22/actions/view-page-continuous.png -share/gnome/evince/icons/hicolor/22x22/actions/view-page-facing.png -share/gnome/evince/icons/hicolor/22x22/actions/zoom-fit-page.png -share/gnome/evince/icons/hicolor/22x22/actions/zoom-fit-width.png -share/gnome/evince/icons/hicolor/24x24/actions/view-page-continuous.png -share/gnome/evince/icons/hicolor/24x24/actions/view-page-facing.png -share/gnome/evince/icons/hicolor/24x24/actions/zoom-fit-page.png -share/gnome/evince/icons/hicolor/24x24/actions/zoom-fit-width.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/nl/evince.xml -share/gnome/help/evince/nl/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/omf/evince/evince-C.omf -share/gnome/omf/evince/evince-bg.omf -share/gnome/omf/evince/evince-ca.omf -share/gnome/omf/evince/evince-el.omf -share/gnome/omf/evince/evince-en_GB.omf -share/gnome/omf/evince/evince-es.omf -share/gnome/omf/evince/evince-fi.omf -share/gnome/omf/evince/evince-fr.omf -share/gnome/omf/evince/evince-it.omf -share/gnome/omf/evince/evince-nl.omf -share/gnome/omf/evince/evince-ru.omf -share/gnome/omf/evince/evince-sr.omf -share/gnome/omf/evince/evince-sv.omf -share/gnome/omf/evince/evince-uk.omf -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/be/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/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/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/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/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/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 -@dirrmtry share/locale/zh_TW/LC_MESSAGES -@dirrmtry share/locale/zh_TW -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/zh_CN/LC_MESSAGES -@dirrmtry share/locale/zh_CN -@dirrmtry share/locale/uk/LC_MESSAGES -@dirrmtry share/locale/uk -@dirrmtry share/locale/sr/LC_MESSAGES -@dirrmtry share/locale/sr -@dirrmtry share/locale/sl/LC_MESSAGES -@dirrmtry share/locale/sl -@dirrmtry share/locale/sk/LC_MESSAGES -@dirrmtry share/locale/sk -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ro/LC_MESSAGES -@dirrmtry share/locale/ro -@dirrmtry share/locale/pt/LC_MESSAGES -@dirrmtry share/locale/pt -@dirrmtry share/locale/pl/LC_MESSAGES -@dirrmtry share/locale/pl -@dirrmtry share/locale/nn/LC_MESSAGES -@dirrmtry share/locale/nn -@dirrmtry share/locale/ne/LC_MESSAGES -@dirrmtry share/locale/ne -@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/ko/LC_MESSAGES -@dirrmtry share/locale/ko -@dirrmtry share/locale/gl/LC_MESSAGES -@dirrmtry share/locale/gl -@dirrmtry share/locale/fi/LC_MESSAGES -@dirrmtry share/locale/fi -@dirrmtry share/locale/el/LC_MESSAGES -@dirrmtry share/locale/el -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/cs/LC_MESSAGES -@dirrmtry share/locale/cs -@dirrmtry share/locale/ca/LC_MESSAGES -@dirrmtry share/locale/ca -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be/LC_MESSAGES -@dirrmtry share/locale/be -@dirrm share/gnome/omf/evince -@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/nl/figures -@dirrm share/gnome/help/evince/nl -@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 share/gnome/evince/icons/hicolor/24x24/actions -@dirrm share/gnome/evince/icons/hicolor/24x24 -@dirrm share/gnome/evince/icons/hicolor/22x22/actions -@dirrm share/gnome/evince/icons/hicolor/22x22 -@dirrm share/gnome/evince/icons/hicolor/16x16/actions -@dirrm share/gnome/evince/icons/hicolor/16x16 -@dirrm share/gnome/evince/icons/hicolor -@dirrm share/gnome/evince/icons -@dirrm share/gnome/evince -@dirrm %%DOCSDIR%% -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true diff --git a/graphics/p5-Cairo/Makefile b/graphics/p5-Cairo/Makefile deleted file mode 100644 index 467469a95..000000000 --- a/graphics/p5-Cairo/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: p5-Cairo -# Date created: 2005-08-18 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/p5-Cairo/Makefile,v 1.7 2006/12/30 08:01:06 ahze Exp $ -# - -PORTNAME= Cairo -PORTVERSION= 1.030 -CATEGORIES= graphics perl5 -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= gtk2-perl -PKGNAMEPREFIX= p5- - -MAINTAINER= ahze@FreeBSD.org -COMMENT= Perl bindings to the cairo graphics library - -BUILD_DEPENDS= ${SITE_PERL}/ExtUtils/Depends.pm:${PORTSDIR}/devel/p5-ExtUtils-Depends \ - ${SITE_PERL}/ExtUtils/PkgConfig.pm:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig -LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo -RUN_DEPENDS= ${BUILD_DEPENDS} - -PERL_CONFIGURE= yes - -MAN3= Cairo.3 - -.include <bsd.port.mk> diff --git a/graphics/p5-Cairo/distinfo b/graphics/p5-Cairo/distinfo deleted file mode 100644 index 55033bd3d..000000000 --- a/graphics/p5-Cairo/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (Cairo-1.030.tar.gz) = 6f8f8f0d200b6fc942452b4d1566a0eb -SHA256 (Cairo-1.030.tar.gz) = bc26662ba2fffa85dc038d9909f0df3efbf09494cdd2e35df1b52bf5fb5dae86 -SIZE (Cairo-1.030.tar.gz) = 45459 diff --git a/graphics/p5-Cairo/pkg-descr b/graphics/p5-Cairo/pkg-descr deleted file mode 100644 index ba29e98df..000000000 --- a/graphics/p5-Cairo/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Perl bindings to the cairo graphics library - -WWW: http://gtk2-perl.sourceforge.net/ diff --git a/graphics/p5-Cairo/pkg-plist b/graphics/p5-Cairo/pkg-plist deleted file mode 100644 index 769d72e5c..000000000 --- a/graphics/p5-Cairo/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -%%SITE_PERL%%/%%PERL_ARCH%%/Cairo.pm -%%SITE_PERL%%/%%PERL_ARCH%%/Cairo/Install/Files.pm -%%SITE_PERL%%/%%PERL_ARCH%%/Cairo/Install/cairo-perl-auto.h -%%SITE_PERL%%/%%PERL_ARCH%%/Cairo/Install/cairo-perl-auto.typemap -%%SITE_PERL%%/%%PERL_ARCH%%/Cairo/Install/cairo-perl.h -%%SITE_PERL%%/%%PERL_ARCH%%/Cairo/Install/cairo-perl.typemap -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Cairo/.packlist -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Cairo/Cairo.bs -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Cairo/Cairo.so -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Cairo -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Cairo/Install -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Cairo diff --git a/graphics/py-cairo/Makefile b/graphics/py-cairo/Makefile deleted file mode 100644 index 779d1f30a..000000000 --- a/graphics/py-cairo/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: py-cairo -# Date created: 2004-12-05 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/py-cairo/Makefile,v 1.20 2006/09/06 22:05:06 marcus Exp $ -# - -PORTNAME= cairo -PORTVERSION= 1.4.0 -CATEGORIES= graphics python -MASTER_SITES= http://cairographics.org/releases/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= py${PORTNAME}-${PORTVERSION} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Python bindings for Cairo - -BUILD_DEPENDS= ${PYNUMERIC} -LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo -RUN_DEPENDS= ${PYNUMERIC} - -USE_PYTHON= yes -USE_GMAKE= yes -USE_GNOME= gnometarget gnomehack -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-pygtk -CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" \ - LDFLAGS="-L${X11BASE}/lib" - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500000 -IGNORE= does not build on FreeBSD 4.x -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|${PREFIX}/libdata/pkgconfig|; \ - s|SUBDIRS = cairo examples test|SUBDIRS = cairo examples|' \ - ${WRKSRC}/Makefile.in - -.include <bsd.port.post.mk> diff --git a/graphics/py-cairo/distinfo b/graphics/py-cairo/distinfo deleted file mode 100644 index 14e8d750e..000000000 --- a/graphics/py-cairo/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (pycairo-1.4.0.tar.gz) = e26e77919b606113f565d70036c1f504 -SHA256 (pycairo-1.4.0.tar.gz) = 9212afffee727e39ae99406b5a59ab3248556bcfebfae24d8278313678147e32 -SIZE (pycairo-1.4.0.tar.gz) = 479455 diff --git a/graphics/py-cairo/pkg-descr b/graphics/py-cairo/pkg-descr deleted file mode 100644 index e40b314a4..000000000 --- a/graphics/py-cairo/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Python bindings for Cairo - -WWW: http://cairographics.org/ diff --git a/graphics/py-cairo/pkg-plist b/graphics/py-cairo/pkg-plist deleted file mode 100644 index 0d5ac3d2b..000000000 --- a/graphics/py-cairo/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -include/pycairo/pycairo.h -%%PYTHON_SITELIBDIR%%/cairo/__init__.py -%%PYTHON_SITELIBDIR%%/cairo/__init__.pyc -%%PYTHON_SITELIBDIR%%/cairo/__init__.pyo -%%PYTHON_SITELIBDIR%%/cairo/_cairo.la -%%PYTHON_SITELIBDIR%%/cairo/_cairo.so -libdata/pkgconfig/pycairo.pc -@dirrm %%PYTHON_SITELIBDIR%%/cairo -@dirrm include/pycairo |