diff options
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/Makefile.am | 9 | ||||
-rw-r--r-- | shell/evolution-nognome.in | 9 |
3 files changed, 23 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 8cd97efd0c..93a004602d 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2002-09-16 Ettore Perazzoli <ettore@ximian.com> + + * evolution-nognome.in: New script to run Evolution under a + non-GNOME session when using a non-default GNOME prefix and a + non-default Evolution prefix. + 2002-09-11 Ettore Perazzoli <ettore@ximian.com> * e-setup.c (setup_bonobo_conf_private_directory): g_free() not diff --git a/shell/Makefile.am b/shell/Makefile.am index 345269f390..93fead1d0e 100644 --- a/shell/Makefile.am +++ b/shell/Makefile.am @@ -271,7 +271,8 @@ EXTRA_DIST = \ $(oaf_DATA) \ $(etspec_DATA) \ $(icons) \ - GNOME_Evolution_TestComponent.oaf + GNOME_Evolution_TestComponent.oaf \ + evolution-nognome.in # Purify support @@ -293,3 +294,9 @@ BUILT_SOURCES = $(IDL_GENERATED) $(SELECT_NAMES_IDL_GENERATED) dist-hook: cd $(distdir); rm -f $(BUILT_SOURCES) + +if HAVE_DTAPPINTEGRATE + +bin_SCRIPTS = evolution-nognome + +endif
\ No newline at end of file diff --git a/shell/evolution-nognome.in b/shell/evolution-nognome.in new file mode 100644 index 0000000000..039eeb4b8c --- /dev/null +++ b/shell/evolution-nognome.in @@ -0,0 +1,9 @@ +#!/bin/sh + +PATH=@prefix@/bin:@GNOME_PREFIX@/bin:${PATH} +GNOME_PATH=@prefix@:@GNOME_PREFIX@ +LD_LIBRARY_PATH=@prefix@/lib:@GNOME_PREFIX@/lib:${LD_LIBRARY_PATH} + +export LD_LIBRARY_PATH GNOME_PATH PATH + +exec evolution |