summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-10-19 14:38:17 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-10-19 14:38:17 +0800
commitb32f0010a4976e4b67ff1667ae7af2c2265013d0 (patch)
treefec9eed7956a7edf21a0dd3164565e02f088e014 /graphics
parent407d1f03eb8547da2d3ee40ab0900016e25579e8 (diff)
downloadmarcuscom-ports-b32f0010a4976e4b67ff1667ae7af2c2265013d0.tar
marcuscom-ports-b32f0010a4976e4b67ff1667ae7af2c2265013d0.tar.gz
marcuscom-ports-b32f0010a4976e4b67ff1667ae7af2c2265013d0.tar.bz2
marcuscom-ports-b32f0010a4976e4b67ff1667ae7af2c2265013d0.tar.lz
marcuscom-ports-b32f0010a4976e4b67ff1667ae7af2c2265013d0.tar.xz
marcuscom-ports-b32f0010a4976e4b67ff1667ae7af2c2265013d0.tar.zst
marcuscom-ports-b32f0010a4976e4b67ff1667ae7af2c2265013d0.zip
Update to 2.17.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7826 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics')
-rw-r--r--graphics/eog/Makefile43
-rw-r--r--graphics/eog/distinfo3
-rw-r--r--graphics/eog/files/patch-libeog_eog-image-list.c17
-rw-r--r--graphics/eog/pkg-descr5
-rw-r--r--graphics/eog/pkg-plist183
5 files changed, 251 insertions, 0 deletions
diff --git a/graphics/eog/Makefile b/graphics/eog/Makefile
new file mode 100644
index 000000000..ad5595a08
--- /dev/null
+++ b/graphics/eog/Makefile
@@ -0,0 +1,43 @@
+# 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.41 2006/09/29 21:36:38 ahze Exp $
+#
+
+PORTNAME= eog
+PORTVERSION= 2.17.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
+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
new file mode 100644
index 000000000..c8402ad85
--- /dev/null
+++ b/graphics/eog/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/eog-2.17.1.tar.bz2) = ddc8e8c0aa2045e6231f6f2d1d117b07
+SHA256 (gnome2/eog-2.17.1.tar.bz2) = 275db2d31881b7d919573291d007371ab697f574c02325b83cc8fd9e5fd0da3e
+SIZE (gnome2/eog-2.17.1.tar.bz2) = 793858
diff --git a/graphics/eog/files/patch-libeog_eog-image-list.c b/graphics/eog/files/patch-libeog_eog-image-list.c
new file mode 100644
index 000000000..609cd0469
--- /dev/null
+++ b/graphics/eog/files/patch-libeog_eog-image-list.c
@@ -0,0 +1,17 @@
+--- libeog/eog-image-list.c.orig Thu Aug 25 14:57:02 2005
++++ libeog/eog-image-list.c Thu Aug 25 14:57:46 2005
+@@ -450,12 +450,13 @@
+ case GNOME_VFS_MONITOR_EVENT_CREATED:
+
+ if (list && list->priv) {
++ gchar *str;
+ node = list->priv->store;
+
+ while (node != NULL && !found) {
+
+ uri = eog_image_get_uri(node->data);
+- gchar *str = gnome_vfs_uri_to_string
++ str = gnome_vfs_uri_to_string
+ (uri, GNOME_VFS_URI_HIDE_NONE);
+ found = (strcmp (str, info_uri)==0)?TRUE:FALSE;
+ g_free (str);
diff --git a/graphics/eog/pkg-descr b/graphics/eog/pkg-descr
new file mode 100644
index 000000000..920f1863a
--- /dev/null
+++ b/graphics/eog/pkg-descr
@@ -0,0 +1,5 @@
+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
new file mode 100644
index 000000000..57b51e97f
--- /dev/null
+++ b/graphics/eog/pkg-plist
@@ -0,0 +1,183 @@
+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/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/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/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/omf/eog/eog-C.omf
+share/gnome/omf/eog/eog-es.omf
+share/gnome/omf/eog/eog-fr.omf
+share/gnome/omf/eog/eog-uk.omf
+share/gnome/pixmaps/eog/down-right.png
+share/gnome/pixmaps/eog/loading.png
+share/gnome/pixmaps/eog/orient-horizontal.png
+share/gnome/pixmaps/eog/orient-vertical.png
+share/gnome/pixmaps/eog/right-down.png
+share/gnome/pixmaps/eog/stock-flip-horizontal-16.png
+share/gnome/pixmaps/eog/stock-flip-vertical-16.png
+share/gnome/pixmaps/eog/stock-rotate-180-16.png
+share/gnome/pixmaps/eog/stock-rotate-270-16.png
+share/gnome/pixmaps/eog/stock-rotate-90-16.png
+share/gnome/pixmaps/gnome-eog.png
+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/pixmaps/eog
+@dirrm share/gnome/omf/eog
+@dirrm share/gnome/help/eog/uk/figures
+@dirrm share/gnome/help/eog/uk
+@dirrm share/gnome/help/eog/fr/figures
+@dirrm share/gnome/help/eog/fr
+@dirrm share/gnome/help/eog/es/figures
+@dirrm share/gnome/help/eog/es
+@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 || true
+@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || 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