head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.22 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.20 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.18 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.16 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.14 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.12 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.10 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.8 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.6 pkgsrc-2008Q2-base:1.5 pkgsrc-2008Q1:1.5.0.4 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.2 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.4.0.2 pkgsrc-2007Q3-base:1.4 pkgsrc-2007Q2:1.3.0.2 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.2.0.14 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.12 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.10 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.2.0.8 pkgsrc-2006Q2-base:1.2 pkgsrc-2006Q1:1.2.0.6 pkgsrc-2006Q1-base:1.2 pkgsrc-2005Q4:1.2.0.4 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.2.0.2 pkgsrc-2005Q3-base:1.2 pkgsrc-2005Q2:1.1.1.1.0.2 pkgsrc-2005Q2-base:1.1.1.1 pkgsrc:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.5 date 2007.11.08.12.55.16; author drochner; state dead; branches; next 1.4; 1.4 date 2007.09.19.23.53.50; author wiz; state Exp; branches; next 1.3; 1.3 date 2007.05.20.15.26.08; author wiz; state dead; branches; next 1.2; 1.2 date 2005.06.24.21.26.24; author wiz; state Exp; branches; next 1.1; 1.1 date 2005.05.31.22.09.35; author wiz; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2005.05.31.22.09.35; author wiz; state Exp; branches; next ; desc @@ 1.5 log @this was replaced by gnome-control-center @ text @$NetBSD: patch-ab,v 1.4 2007/09/19 23:53:50 wiz Exp $ --- capplets/about-me/gnome-about-me.c.orig 2006-09-24 20:42:14.000000000 +0000 +++ capplets/about-me/gnome-about-me.c @@@@ -267,16 +267,12 @@@@ static char * get_user_login (void) { char buf[LINE_MAX * 4]; - struct passwd pwd, *err; + struct passwd *pwd; - int i; -#if __sun - i = getpwuid_r (getuid (), &pwd, buf, sizeof (buf)); - return (i != 0) ? g_strdup (pwd.pw_name) : NULL; -#else - i = getpwuid_r (getuid (), &pwd, buf, sizeof (buf), &err); - return ((i == 0) && (err == &pwd)) ? g_strdup (pwd.pw_name) : NULL; -#endif + pwd = getpwuid (getuid ()); + if (pwd == NULL) + return NULL; + return g_strdup (pwd->pw_name); } /* @ 1.4 log @Rename gnome2-control-center to control-center, to match upstream name. ok jmmv, drochner @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.5 2006/09/24 20:00:14 joerg Exp $ @ 1.3 log @Remove some more now unused gnome1-libs dependencies. @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.2 2005/06/24 21:26:24 wiz Exp $ d3 8 a10 3 --- configure.orig 2002-04-06 17:40:28.000000000 +0200 +++ configure @@@@ -7384,7 +7384,7 @@@@ fi d12 13 a24 8 for ac_hdr in argz.h limits.h locale.h nl_types.h malloc.h string.h \ -unistd.h sys/param.h +unistd.h sys/param.h sys/wait.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 @@@@ -8320,6 +8320,11 @@@@ fi d26 1 a26 10 +# NetBSD: set DATADIRNAME to "share" +DATADIRNAME="share" +INTLDEPS= +INTLLIBS="${INTLLIBS}" + for ac_hdr in dlfcn.h dl.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` @ 1.2 log @Update to 1.4.0.5: - the screensaver capplet is no more - we are to use xscreensaver-demo - a new default-applications capplet is replacing the old gnome-editor-properties capplet. This also lets you do some new things wrt changing the users preferred webbrowser etc. @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.1.1.1 2005/05/31 22:09:35 wiz Exp $ @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.6 2004/06/08 17:48:25 jschauma Exp $ d3 1 a3 1 --- configure.orig Sun Feb 10 16:36:55 2002 d5 1 a5 1 @@@@ -7570,7 +7570,7 @@@@ d14 1 a14 1 @@@@ -8506,6 +8506,11 @@@@ @ 1.1.1.1 log @Re-import control-center under its proper PKGNAME. @ text @@