head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.42 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.40 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.38 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.36 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.34 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.32 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.30 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.28 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.26 pkgsrc-2008Q2-base:1.5 pkgsrc-2008Q1:1.5.0.24 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.22 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.5.0.20 pkgsrc-2007Q3-base:1.5 pkgsrc-2007Q2:1.5.0.18 pkgsrc-2007Q2-base:1.5 pkgsrc-2007Q1:1.5.0.16 pkgsrc-2007Q1-base:1.5 pkgsrc-2006Q4:1.5.0.14 pkgsrc-2006Q4-base:1.5 pkgsrc-2006Q3:1.5.0.12 pkgsrc-2006Q3-base:1.5 pkgsrc-2006Q2:1.5.0.10 pkgsrc-2006Q2-base:1.5 pkgsrc-2006Q1:1.5.0.8 pkgsrc-2006Q1-base:1.5 pkgsrc-2005Q4:1.5.0.6 pkgsrc-2005Q4-base:1.5 pkgsrc-2005Q3:1.5.0.4 pkgsrc-2005Q3-base:1.5 pkgsrc-2005Q2:1.5.0.2 pkgsrc-2005Q2-base:1.5 pkgsrc-2005Q1:1.4.0.20 pkgsrc-2005Q1-base:1.4 pkgsrc-2004Q4:1.4.0.18 pkgsrc-2004Q4-base:1.4 pkgsrc-2004Q3:1.4.0.16 pkgsrc-2004Q3-base:1.4 pkgsrc-2004Q2:1.4.0.14 pkgsrc-2004Q2-base:1.4 pkgsrc-2004Q1:1.4.0.12 pkgsrc-2004Q1-base:1.4 pkgsrc-2003Q4:1.4.0.10 pkgsrc-2003Q4-base:1.4 netbsd-1-6-1:1.4.0.6 netbsd-1-6-1-base:1.4 netbsd-1-6:1.4.0.8 netbsd-1-6-RELEASE-base:1.4 pkgviews:1.4.0.4 pkgviews-base:1.4 buildlink2:1.4.0.2 buildlink2-base:1.4 netbsd-1-5-PATCH003:1.4 netbsd-1-5-PATCH001:1.4 netbsd-1-5-RELEASE:1.1.1.1 netbsd-1-4-PATCH003:1.1.1.1 netbsd-1-4-PATCH002:1.1.1.1 comdex-fall-1999:1.1.1.1 netbsd-1-4-PATCH001:1.1.1.1 netbsd-1-4-RELEASE:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.5 date 2005.05.18.22.02.19; author wiz; state dead; branches; next 1.4; 1.4 date 2000.11.23.22.05.44; author tron; state Exp; branches; next 1.3; 1.3 date 2000.11.23.18.28.54; author mycroft; state Exp; branches; next 1.2; 1.2 date 2000.11.23.18.23.47; author mycroft; state Exp; branches; next 1.1; 1.1 date 99.03.31.21.00.22; author garbled; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 99.03.31.21.00.22; author garbled; state Exp; branches; next ; desc @@ 1.5 log @Remove gnome1 packages except as needed for gnucash. Ok'd by jmmv@@ and rh@@ (gnome 1 maintainers). @ text @$NetBSD: patch-aa,v 1.4 2000/11/23 22:05:44 tron Exp $ --- ee_conf.c.orig Wed Feb 10 15:38:55 1999 +++ ee_conf.c Thu Nov 23 23:02:06 2000 @@@@ -10,6 +10,9 @@@@ #include #include #include +#include +#include +#include #include "globals.h" #include "functions.h" @@@@ -25,13 +28,26 @@@@ gchar *hom; gchar *s; FILE *f; + struct stat sb; + int i; hom = homedir(getuid()); if (!hom) return; + s = g_strconcat(hom, "/.ee", NULL); + i = stat(s, &sb); + if (i == -1 && errno == ENOENT) + mkdir(s, S_IRWXU); + g_free(s); s = g_strconcat(hom, "/.ee/settings", NULL); g_free(hom); f = fopen(s, "w"); + if (!f) + { + g_free(s); + return; + } + g_free(s); scrolled_view = GPOINTER_TO_INT (gtk_object_get_data(GTK_OBJECT(image_display), "forcescroll")); @ 1.4 log @Avoid segmentation fault if "~/.ee/settings" cannot be opened for write. Fixes PR pkg/11554 by Charles M. Hannum. @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @Make sure ~/.ee is created *writable*. @ text @d3 2 a4 2 --- ee_conf.c.orig Wed Mar 31 12:15:14 1999 +++ ee_conf.c Wed Mar 31 12:22:10 1999 d15 1 a15 1 @@@@ -25,10 +28,16 @@@@ d29 1 d33 9 @ 1.2 log @Remove silly part of this patch. @ text @d28 1 a28 1 + mkdir(s, 0); @ 1.1 log @Initial revision @ text @d2 1 d15 1 a15 1 @@@@ -25,10 +28,18 @@@@ a20 2 + + extern int errno; @ 1.1.1.1 log @Import new pkg for ee-0.3.8. Part of gnome/enlightenment. Image viewer based on imlib by the Rasterman. Gtk clone of xv. @ text @@