summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2006-11-24 18:31:25 +0000
committerdrochner <drochner@pkgsrc.org>2006-11-24 18:31:25 +0000
commit190c9f347c01ce192d52417beb68e78834f83a64 (patch)
tree46f1f10d2bcba24d1a79ca65c54779f37cbf18f7 /x11
parent98222790f5381eb188c077e52b9792783378cb22 (diff)
downloadpkgsrc-190c9f347c01ce192d52417beb68e78834f83a64.tar.gz
update to 2.16.2
changes: -build fixes -bugfixes - Allow the text in the details to ellipsize and set a minimun width for the dialog -translation updates
Diffstat (limited to 'x11')
-rw-r--r--x11/gnome2-control-center/Makefile5
-rw-r--r--x11/gnome2-control-center/distinfo10
-rw-r--r--x11/gnome2-control-center/patches/patch-aa46
3 files changed, 9 insertions, 52 deletions
diff --git a/x11/gnome2-control-center/Makefile b/x11/gnome2-control-center/Makefile
index 9983ca0c8ec..e8c3242001c 100644
--- a/x11/gnome2-control-center/Makefile
+++ b/x11/gnome2-control-center/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.71 2006/09/24 20:00:14 joerg Exp $
+# $NetBSD: Makefile,v 1.72 2006/11/24 18:31:25 drochner Exp $
#
-DISTNAME= control-center-2.16.0
+DISTNAME= control-center-2.16.2
PKGNAME= gnome2-${DISTNAME}
-PKGREVISION= 2
CATEGORIES= x11 gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/control-center/2.16/}
EXTRACT_SUFX= .tar.bz2
diff --git a/x11/gnome2-control-center/distinfo b/x11/gnome2-control-center/distinfo
index 8e2774d3460..92e9241b49d 100644
--- a/x11/gnome2-control-center/distinfo
+++ b/x11/gnome2-control-center/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.29 2006/09/24 20:00:14 joerg Exp $
+$NetBSD: distinfo,v 1.30 2006/11/24 18:31:25 drochner Exp $
-SHA1 (control-center-2.16.0.tar.bz2) = c73e614c3ba287202ca12f19029f15bab293690b
-RMD160 (control-center-2.16.0.tar.bz2) = 85c8d8de2d9643581c89f468e1714be049c375af
-Size (control-center-2.16.0.tar.bz2) = 1986964 bytes
-SHA1 (patch-aa) = 588d06dfbf0b2cb5e244058a5b80f75a0faa4e29
+SHA1 (control-center-2.16.2.tar.bz2) = 0fafa169a358c2c4fcf7d3eadbb1a980416fae17
+RMD160 (control-center-2.16.2.tar.bz2) = f8a45a1c3cbfc3c04d4bd562482e281deea0682b
+Size (control-center-2.16.2.tar.bz2) = 2022817 bytes
+SHA1 (patch-aa) = 377d07ac5071fa19063cd3ecd47c589c53b81b5a
SHA1 (patch-ab) = c0561975640562546f612e252a9d239d6dbc695b
SHA1 (patch-ad) = 15aeffd62733036840d402f1ed3a2f1a89c8945d
SHA1 (patch-af) = 50f179c3d2775f0a058d7644f6f9a0b958f4b531
diff --git a/x11/gnome2-control-center/patches/patch-aa b/x11/gnome2-control-center/patches/patch-aa
index 88bb107cd0f..0b18581bd1a 100644
--- a/x11/gnome2-control-center/patches/patch-aa
+++ b/x11/gnome2-control-center/patches/patch-aa
@@ -1,6 +1,6 @@
-$NetBSD: patch-aa,v 1.8 2006/09/15 15:12:40 jmmv Exp $
+$NetBSD: patch-aa,v 1.9 2006/11/24 18:31:25 drochner Exp $
---- capplets/about-me/gnome-about-me-password.c.orig 2006-06-11 10:50:31.000000000 +0200
+--- capplets/about-me/gnome-about-me-password.c.orig 2006-09-15 13:12:18.000000000 +0200
+++ capplets/about-me/gnome-about-me-password.c
@@ -30,6 +30,7 @@
/* Are all of these needed? */
@@ -10,45 +10,3 @@ $NetBSD: patch-aa,v 1.8 2006/09/15 15:12:40 jmmv Exp $
#include <stdlib.h>
#include <glade/glade.h>
#include <unistd.h>
-@@ -183,7 +184,7 @@ spawn_passwd (PasswordDialog *pdialog, G
- {
- gchar *argv[2];
- gchar *envp[1];
-- gint stdin, stdout, stderr;
-+ gint fdstdin, fdstdout, fdstderr;
-
- argv[0] = "/usr/bin/passwd"; /* Is it safe to rely on a hard-coded path? */
- argv[1] = NULL;
-@@ -204,9 +205,9 @@ spawn_passwd (PasswordDialog *pdialog, G
- NULL, /* Child setup */
- NULL, /* Data to child setup */
- &pdialog->backend_pid, /* PID */
-- &stdin, /* Stdin */
-- &stdout, /* Stdout */
-- &stderr, /* Stderr */
-+ &fdstdin, /* Stdin */
-+ &fdstdout, /* Stdout */
-+ &fdstderr, /* Stderr */
- error)) { /* GError */
-
- /* An error occured */
-@@ -216,7 +217,7 @@ spawn_passwd (PasswordDialog *pdialog, G
- }
-
- /* 2>&1 */
-- if (dup2 (stderr, stdout) == -1) {
-+ if (dup2 (fdstderr, fdstdout) == -1) {
- /* Failed! */
- g_set_error (error,
- PASSDLG_ERROR,
-@@ -230,8 +231,8 @@ spawn_passwd (PasswordDialog *pdialog, G
- }
-
- /* Open IO Channels */
-- pdialog->backend_stdin = g_io_channel_unix_new (stdin);
-- pdialog->backend_stdout = g_io_channel_unix_new (stdout);
-+ pdialog->backend_stdin = g_io_channel_unix_new (fdstdin);
-+ pdialog->backend_stdout = g_io_channel_unix_new (fdstdout);
-
- /* Set raw encoding */
- /* Set nonblocking mode */