summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2002-02-26 23:12:54 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2002-02-26 23:12:54 +0000
commitf11850c2eb3dfa4a9f5d77d4f320ef876259ccda (patch)
treecc6e783a23f634d8dd05f8b377659e5d97025153 /x11
parentSet LD_LIBRARY_PATH and MOZILLA_FIVE_HOME properly. (diff)
Remove LD_LIBRARY_PATH bandaid for Nautilus - it was moved over into Nautilus
code.
Notes
Notes: svn path=/head/; revision=55287
Diffstat (limited to 'x11')
-rw-r--r--x11/gnomecore/Makefile1
-rw-r--r--x11/gnomecore/files/patch-gsm::ice.c21
2 files changed, 1 insertions, 21 deletions
diff --git a/x11/gnomecore/Makefile b/x11/gnomecore/Makefile
index b35b18b0b1a8..3fdecc134363 100644
--- a/x11/gnomecore/Makefile
+++ b/x11/gnomecore/Makefile
@@ -7,6 +7,7 @@
PORTNAME= gnomecore
PORTVERSION= 1.4.0.6
+PORTREVISION= 1
CATEGORIES?= x11 gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/gnome-core
diff --git a/x11/gnomecore/files/patch-gsm::ice.c b/x11/gnomecore/files/patch-gsm::ice.c
deleted file mode 100644
index 03fd13c3a660..000000000000
--- a/x11/gnomecore/files/patch-gsm::ice.c
+++ /dev/null
@@ -1,21 +0,0 @@
-
-$FreeBSD$
-
---- gsm/ice.c.orig Fri Oct 26 12:13:22 2001
-+++ gsm/ice.c Tue Jan 22 16:28:18 2002
-@@ -343,6 +343,15 @@
-
- p = g_strconcat (ENVNAME "=", ids, NULL);
- putenv (p);
-+
-+ /* XXX: hack for embedded Mozilla */
-+ p = getenv ("LD_LIBRARY_PATH");
-+ if (p == NULL)
-+ p = "";
-+ else
-+ p = g_strconcat (p, ":", NULL);
-+ p = g_strconcat (p, X11BASE "/lib/mozilla", ":", X11BASE "/lib/mozilla-embedded", NULL);
-+ setenv ("LD_LIBRARY_PATH", p, 1);
-
- ice_depth = 0; /* We are live */
- }