summaryrefslogtreecommitdiff
path: root/devel/libgnome/patches
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2004-09-21 16:46:14 +0000
committerjmmv <jmmv@pkgsrc.org>2004-09-21 16:46:14 +0000
commitf1d3cc019b92925a42ebec6d959080fda9e28cd2 (patch)
treecad1db5b697ddea205cc44ccc5d5f8b75853373a /devel/libgnome/patches
parentfd6188b777db5177a54769c9408e506ea38a3298 (diff)
downloadpkgsrc-f1d3cc019b92925a42ebec6d959080fda9e28cd2.tar.gz
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)
Diffstat (limited to 'devel/libgnome/patches')
-rw-r--r--devel/libgnome/patches/patch-aa12
-rw-r--r--devel/libgnome/patches/patch-ab13
-rw-r--r--devel/libgnome/patches/patch-ac67
-rw-r--r--devel/libgnome/patches/patch-ae24
4 files changed, 6 insertions, 110 deletions
diff --git a/devel/libgnome/patches/patch-aa b/devel/libgnome/patches/patch-aa
index 632c8d62b17..5c6c7f8a21d 100644
--- a/devel/libgnome/patches/patch-aa
+++ b/devel/libgnome/patches/patch-aa
@@ -1,11 +1,11 @@
-$NetBSD: patch-aa,v 1.6 2004/04/01 18:22:04 jmmv Exp $
+$NetBSD: patch-aa,v 1.7 2004/09/21 16:46:14 jmmv Exp $
---- gnome-data/Makefile.in.orig 2004-03-09 20:18:25.000000000 +0100
+--- gnome-data/Makefile.in.orig 2004-08-30 16:13:30.000000000 +0200
+++ gnome-data/Makefile.in
-@@ -146,7 +146,7 @@ WARN_CXXFLAGS = @WARN_CXXFLAGS@
- YACC = @YACC@
- gnomelocaledir = @gnomelocaledir@
-
+@@ -197,7 +197,7 @@ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+ sysconfdir = @sysconfdir@
+ target_alias = @target_alias@
-soundlistdir = $(sysconfdir)/sound/events
+soundlistdir = $(datadir)/examples/libgnome/sound/events
diff --git a/devel/libgnome/patches/patch-ab b/devel/libgnome/patches/patch-ab
deleted file mode 100644
index d882f64375f..00000000000
--- a/devel/libgnome/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.6 2004/05/02 20:36:08 adam Exp $
-
---- configure.orig Thu Apr 15 20:26:06 2004
-+++ configure
-@@ -1966,7 +1966,7 @@ if test -z "`$INTLTOOL_PERL -v | fgrep '
- echo "$as_me: error: perl 5.x required for intltool" >&2;}
- { (exit 1); exit 1; }; }
- fi
--if `perl -e "require XML::Parser" 2>/dev/null`; then
-+if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
- :
- else
- { { echo "$as_me:$LINENO: error: XML::Parser perl module is required for intltool" >&5
diff --git a/devel/libgnome/patches/patch-ac b/devel/libgnome/patches/patch-ac
deleted file mode 100644
index 3c726154846..00000000000
--- a/devel/libgnome/patches/patch-ac
+++ /dev/null
@@ -1,67 +0,0 @@
-$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 <libgnomevfs/gnome-vfs-init.h>
-
-+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;
-+}
diff --git a/devel/libgnome/patches/patch-ae b/devel/libgnome/patches/patch-ae
deleted file mode 100644
index a14dfd5bfab..00000000000
--- a/devel/libgnome/patches/patch-ae
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-ae,v 1.2 2004/04/01 18:22:04 jmmv Exp $
-
-http://bugzilla.gnome.org/show_bug.cgi?id=106117
-
---- libgnome/gnome-config.c.orig 2002-07-12 14:44:10.000000000 +0200
-+++ libgnome/gnome-config.c
-@@ -105,6 +105,8 @@ static TProfile *Current = 0;
- */
- static TProfile *Base = 0;
-
-+int libgnome_mkdir(const char *path, mode_t mode);
-+
- static char *
- config_concat_dir_and_key (const char *dir, const char *key)
- {
-@@ -714,7 +716,7 @@ check_path(char *path, mode_t newmode)
- } else {
- /*we couldn't stat it .. let's try making the
- directory*/
-- if(mkdir(newpath->str,newmode)!=0) {
-+ if(libgnome_mkdir(newpath->str,newmode)!=0) {
- /*error, return false*/
- g_string_free(newpath,TRUE);
- return FALSE;