head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.46 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.44 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.42 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.40 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.38 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.36 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.34 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.32 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.30 pkgsrc-2008Q2-base:1.5 pkgsrc-2008Q1:1.5.0.28 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.26 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.5.0.24 pkgsrc-2007Q3-base:1.5 pkgsrc-2007Q2:1.5.0.22 pkgsrc-2007Q2-base:1.5 pkgsrc-2007Q1:1.5.0.20 pkgsrc-2007Q1-base:1.5 pkgsrc-2006Q4:1.5.0.18 pkgsrc-2006Q4-base:1.5 pkgsrc-2006Q3:1.5.0.16 pkgsrc-2006Q3-base:1.5 pkgsrc-2006Q2:1.5.0.14 pkgsrc-2006Q2-base:1.5 pkgsrc-2006Q1:1.5.0.12 pkgsrc-2006Q1-base:1.5 pkgsrc-2005Q4:1.5.0.10 pkgsrc-2005Q4-base:1.5 pkgsrc-2005Q3:1.5.0.8 pkgsrc-2005Q3-base:1.5 pkgsrc-2005Q2:1.5.0.6 pkgsrc-2005Q2-base:1.5 pkgsrc-2005Q1:1.5.0.4 pkgsrc-2005Q1-base:1.5 pkgsrc-2004Q4:1.5.0.2 pkgsrc-2004Q4-base:1.5 pkgsrc-2004Q3:1.4.0.4 pkgsrc-2004Q3-base:1.4 pkgsrc-2004Q2:1.4.0.2 pkgsrc-2004Q2-base:1.4 pkgsrc-2004Q1:1.3.0.4 pkgsrc-2004Q1-base:1.3 pkgsrc-2003Q4:1.3.0.2 pkgsrc-2003Q4-base:1.3 netbsd-1-6-1:1.1.1.1.0.2 netbsd-1-6-1-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.5 date 2004.09.21.16.46.14; author jmmv; state dead; branches; next 1.4; 1.4 date 2004.04.01.18.22.04; author jmmv; state Exp; branches; next 1.3; 1.3 date 2003.02.15.13.30.50; author jmmv; state Exp; branches; next 1.2; 1.2 date 2003.02.14.20.11.51; author jmmv; state Exp; branches; next 1.1; 1.1 date 2002.09.11.23.31.16; author rh; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2002.09.11.23.31.16; author rh; state Exp; branches; next ; desc @@ 1.5 log @Update to 2.8.0. This version corresponds to GNOME 2.8.0. libgnome 2.8.0 -------------- What's new since 2.7.2 * Bug fixes: - Various fixes (Kjartan Maraas) - Avoid duplication of locale alias tables by using the ones in bonobo-activation (Alexander Larsson) * Translations: - New Norwegian Bookmal translation (Kjartan Maraas) - Various updated translations (ar, az, cs, bg, bs, ca, cs, cy, de, el, es, eu, en_gb, fi, gu, hu, ja, ko, mn, nb, ne, nl, nn, no, pa, pl, pt, ro, ru, sk, sq, sr, sv, tr, uk, zh_CH) libgnome 2.7.2 -------------- What's new since 2.7.1 * Bug fixes: - Allow language binding instantiation of GnomeProgram * Translations: - Various updated translations (ne) libgnome 2.7.0 -------------- What's new since 2.6.1 * Bug fixes: - Various fixes (Chris Lahey, Christian Persche, Steve Chaplin, Toshio Kuratomi, Julio Merino, Kjartan Maraas) * Features: - Update to automake 1.7 (James Henstridge) * Translations: - Various updated translations (en_CA, hu, nl) @ text @$NetBSD: patch-ac,v 1.4 2004/04/01 18:22:04 jmmv Exp $ http://bugzilla.gnome.org/show_bug.cgi?id=106117 --- libgnome/gnome-init.c.orig 2004-03-16 11:44:07.000000000 +0100 +++ libgnome/gnome-init.c @@@@ -53,6 +53,8 @@@@ #include +int libgnome_mkdir(const char *path, mode_t mode); + /***************************************************************************** * bonobo *****************************************************************************/ @@@@ -299,7 +301,7 @@@@ libgnome_userdir_setup (gboolean create_ if (!create_dirs) return; - if (mkdir (gnome_user_dir, 0700) < 0) { /* private permissions, but we + if (libgnome_mkdir (gnome_user_dir, 0700) < 0) { /* private permissions, but we don't check that we got them */ if (errno != EEXIST) { g_printerr (_("Could not create per-user gnome configuration directory `%s': %s\n"), @@@@ -308,7 +310,7 @@@@ libgnome_userdir_setup (gboolean create_ } } - if (mkdir (gnome_user_private_dir, 0700) < 0) { /* This is private + if (libgnome_mkdir (gnome_user_private_dir, 0700) < 0) { /* This is private per-user info mode 700 will be enforced! maybe @@@@ -330,7 +332,7 @@@@ libgnome_userdir_setup (gboolean create_ exit(1); } - if (mkdir (gnome_user_accels_dir, 0700) < 0) { + if (libgnome_mkdir (gnome_user_accels_dir, 0700) < 0) { if (errno != EEXIST) { g_printerr (_("Could not create gnome accelerators directory `%s': %s\n"), gnome_user_accels_dir, strerror(errno)); @@@@ -461,3 +463,24 @@@@ libgnome_module_info_get (void) return &module_info; } + +int +libgnome_mkdir(const char *path, mode_t mode) +{ + char *tmp; + size_t length; + int ret; + + length = strlen(path); + tmp = (char *) malloc(length + 1); + strcpy(tmp, path); + length--; + while (tmp[length] == '/' && length > 0) { + tmp[length] = '\0'; + length--; + } + ret = mkdir(tmp, mode); + + free(tmp); + return ret; +} @ 1.4 log @Update to 2.6.0: What's new since 2.4: * Improvements: - Add File Chooser backend schema (Jonathan Blandford) * Bug fixes: - Fix translation of program arguments (Hidetoshi Tajima, Christian Neumair, Anders Carlsson) * Translations: - Added Canadian English translation (Adam Weinberger) - Added Croatian translation (Robert Sedak) - Added Serbian Jekavian translation (Bojan Suziœô §) - Added Romanian translation (Miœô ÿu Moldovan, Mugurel Tudor) - Updated Albanian translation (Laurent Dhima) - Updated Arabic translation (Arafat Medini) - Updated Azerbaijani translation (Mœô£Ùtin œô¡Ïmirov) - Updated Belarusian translation (Ales Nyakhaychyk) - Updated Brazilian Portuguese translation (Augusta Margues da Silva, Raphael Higino, Everson Santos Araujo) - Updated British translation (Gareth Owen) - Updated Catalan translation (Jordi Mallach) - Updated Czech translation (Miloslav Trmac) - Updated Danish translation (Ole Laursen) - Updated Dutch translation (Vincent van Adrighem, Reinout van Schouwen) - Updated Estonian translation (Tõivo Leedjärv) - Updated Finnish translation (Pauli Virtanen) - Updated French translation (Christophe Merlet) - Updated German translation (Christian Neumair) - Updated Greek translation (Kostas Papadimas) - Updated Hungarian translation (Andras Timar) - Updated Irish translation (Alastair McKinstry) - Updated Italian translation (Alesso Frusciante) - Updated Japanese translation (Takeshi AIHANA) - Updated Korean translation (Changwoo Ryu) - Updated Lithuanian translation (œô¡½ygimantas Beruœô ­ka, Tomas Kuliavas) - Updated Mongolian translation (Sanlig Badral) - Updated Norwegian translation (Kjartan Maraas) - Updated Norwegian Nynorsk translation (Åsmund Skjæveland) - Updated Polish translation (GNOME PL Team) - Updated Portuguese translation (Duarte Loreto) - Updated Russian translation (Russian Team) - Updated Serbian translations (Danilo œô¡ egan) - Updated Simplified Chinese translation (Funda Wang) - Updated Slovak translation (Marcel Telka) - Updated Spanish translation (Francisco Javier F. Serrador) - Updated Swedish translation (Christian Rose) - Updated Tamil translation (Dinesh Nadarajah) - Updated Thai translation (Paisa Seeluangsawat) - Updated Turkish translation (Ismail Aslan) - Updated Ukranian translation (Maxim Dziumanenko, Yuriy Syrota) - Updated Welsh translation (Dafydd Harries, Rhys Jones) @ text @d1 1 a1 1 $NetBSD: patch-ac,v 1.3 2003/02/15 13:30:50 jmmv Exp $ @ 1.3 log @Handle trailing slashes when calling mkdir(2) in a better way. I hope this solves some obscure problems introduced by the old patches. @ text @d1 1 a1 1 $NetBSD: patch-ac,v 1.2 2003/02/14 20:11:51 jmmv Exp $ d3 3 a5 1 --- libgnome/gnome-init.c.orig 2002-11-22 14:47:27.000000000 +0100 d24 1 a24 1 fprintf(stderr, _("Could not create per-user gnome configuration directory `%s': %s\n"), d41 1 a41 1 fprintf(stderr, _("Could not create gnome accelerators directory `%s': %s\n"), d43 1 a43 1 @@@@ -462,3 +464,24 @@@@ libgnome_module_info_get (void) @ 1.2 log @Updated to 2.2.0.1. Changes since 2.0.6 include: * libgnome/Makefile.am (libgnome_2_la_LDFLAGS): Correct version number error. * configure.in: Add EXTRAVERSION and set to .1. Add missing translations to ALL_LINGUAS. * configure.in: Added "mn" to ALL_LINGUAS. * configure.in: Fix libtool versioning. Up number to 2.2.0 * schemas/desktop_gnome_peripherals_mouse.schemas.in: add /desktop/gnome/peripherals/mouse/cursor_theme and /desktop/gnome/peripherals/mouse/cursor_size * monikers/bonobo-config-bag.c (bonobo_config_bag_new): Fix comment. * schemas/Makefile.am (schema_in_files) schemas/desktop_gnome_thumbnailers.schemas.in: Add schemas for thumbnailers. * schemas/desktop_gnome_accessibility_keyboard.schemas.in : set defaults to 0 to fix #96483 * help-converters/info/main.c output title, fixing bug #83905 Changes in the package: - Honor PKG_SYSCONFDIR. - Use GConf2's schemas.mk file to register schemas. - Depend on docbook, so the installed customization layer works. @ text @d1 1 a1 1 $NetBSD: patch-ac,v 1.1.1.1 2002/09/11 23:31:16 rh Exp $ d3 3 a5 10 --- libgnome/gnome-init.h.orig Fri Nov 22 14:47:27 2002 +++ libgnome/gnome-init.h @@@@ -36,8 +36,8 @@@@ G_BEGIN_DECLS * to override .gnome2 via environment variable and this is * an important feature for environments that mix GNOME versions) */ -#define GNOME_DOT_GNOME ".gnome2/" -#define GNOME_DOT_GNOME_PRIVATE ".gnome2_private/" +#define GNOME_DOT_GNOME ".gnome2" +#define GNOME_DOT_GNOME_PRIVATE ".gnome2_private" d7 59 a65 2 #define LIBGNOME_MODULE libgnome_module_info_get() const GnomeModuleInfo *libgnome_module_info_get (void) G_GNUC_CONST; @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD$ d3 6 a8 6 --- libgnome/gnome-init.h.orig Fri Sep 6 23:02:37 2002 +++ libgnome/gnome-init.h Fri Sep 6 23:02:47 2002 @@@@ -32,8 +32,8 @@@@ G_BEGIN_DECLS /* This is where the user specific files are stored under $HOME */ @ 1.1.1.1 log @Initial import of libgnome-2.0.4, the non-graphical core of GNOME2. Provided by Julio Merino . This closes PR pkg/18190. @ text @@