diff options
author | marcus <marcus@FreeBSD.org> | 2002-05-05 20:56:12 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-05-05 20:56:12 +0000 |
commit | 9540385a219adbeef1779f49b411761cef111665 (patch) | |
tree | 8d1bef3d484a440d8d2c42aac46d5e3b294868df /sysutils/gnomecontrolcenter2 | |
parent | 64b19b3d62a35c8722040ae18e12886da21f5ca9 (diff) | |
download | FreeBSD-ports-9540385a219adbeef1779f49b411761cef111665.zip FreeBSD-ports-9540385a219adbeef1779f49b411761cef111665.tar.gz |
Fix a problem with MIME types and file type icon support.
Prompted by: Franz Klammer <klammer@webonaut.com>
Diffstat (limited to 'sysutils/gnomecontrolcenter2')
3 files changed, 23 insertions, 0 deletions
diff --git a/sysutils/gnomecontrolcenter2/Makefile b/sysutils/gnomecontrolcenter2/Makefile index 2437c4c..06b8969 100644 --- a/sysutils/gnomecontrolcenter2/Makefile +++ b/sysutils/gnomecontrolcenter2/Makefile @@ -7,6 +7,7 @@ PORTNAME= gnomecontrolcenter PORTVERSION= 1.4.0.5 +PORTREVISION= 1 CATEGORIES= sysutils gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= stable/sources/control-center diff --git a/sysutils/gnomecontrolcenter2/files/patch-capplets_file-types_file-types-icon-entry.c b/sysutils/gnomecontrolcenter2/files/patch-capplets_file-types_file-types-icon-entry.c new file mode 100644 index 0000000..5b48cd2 --- /dev/null +++ b/sysutils/gnomecontrolcenter2/files/patch-capplets_file-types_file-types-icon-entry.c @@ -0,0 +1,11 @@ +--- capplets/file-types/file-types-icon-entry.c.orig Sun May 5 16:33:51 2002 ++++ capplets/file-types/file-types-icon-entry.c Sun May 5 16:34:02 2002 +@@ -424,7 +424,7 @@ + result = NULL; + filename = nautilus_mime_type_icon_entry_get_full_filename (NAUTILUS_MIME_ICON_ENTRY (ientry)); + if (filename != NULL) { +- path_parts = g_strsplit (filename, "/share/pixmaps/", 0); ++ path_parts = g_strsplit (filename, "/share/gnome/pixmaps/", 0); + g_free (filename); + + if (path_parts[1] != NULL) { diff --git a/sysutils/gnomecontrolcenter2/files/patch-configure b/sysutils/gnomecontrolcenter2/files/patch-configure new file mode 100644 index 0000000..5356635 --- /dev/null +++ b/sysutils/gnomecontrolcenter2/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Sun May 5 16:29:53 2002 ++++ configure Sun May 5 16:30:05 2002 +@@ -9161,7 +9161,7 @@ + + + cat >> confdefs.h <<EOF +-#define GNOME_ICONDIR "${prefix}/share/pixmaps" ++#define GNOME_ICONDIR "${datadir}/pixmaps" + EOF + + |