- update to 3.2.1

tested by aja@
This commit is contained in:
jasper 2011-10-18 14:26:44 +00:00
parent ae69c213b0
commit 80121089d8
7 changed files with 12 additions and 95 deletions

View File

@ -1,12 +1,11 @@
# $OpenBSD: Makefile,v 1.51 2011/10/16 19:23:35 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.52 2011/10/18 14:26:44 jasper Exp $
SHARED_ONLY= Yes
COMMENT= remote desktop viewer for GNOME
GNOME_VERSION= 3.2.0
GNOME_VERSION= 3.2.1
GNOME_PROJECT= vinagre
REVISION= 3
CATEGORIES= net

View File

@ -1,5 +1,5 @@
MD5 (gnome/vinagre-3.2.0.tar.xz) = m8UR/X/fXRIB+TkivWJXag==
RMD160 (gnome/vinagre-3.2.0.tar.xz) = 40LNSX4CuM0IZGwMDp+GeKbrfNA=
SHA1 (gnome/vinagre-3.2.0.tar.xz) = 2tx1Getx2aQnQEXsU3Y+XpnvzQ8=
SHA256 (gnome/vinagre-3.2.0.tar.xz) = m6DRMADYHQ5H9FaxOPUu8st6YDxxOBmTlSrMh8JeLmE=
SIZE (gnome/vinagre-3.2.0.tar.xz) = 2423852
MD5 (gnome/vinagre-3.2.1.tar.xz) = bB+YTvmpI38TCK0nB5JvPw==
RMD160 (gnome/vinagre-3.2.1.tar.xz) = 7wd9gE/8A3eGKjbmOYoj/RN5OLM=
SHA1 (gnome/vinagre-3.2.1.tar.xz) = 0ZAF+eYxlufahksogkGGz6s0Ipc=
SHA256 (gnome/vinagre-3.2.1.tar.xz) = B33AEdBI6e16aD7XTcAnxcfkfQuVuZrLSTv5n/8iNpw=
SIZE (gnome/vinagre-3.2.1.tar.xz) = 2519612

View File

@ -1,19 +0,0 @@
$OpenBSD: patch-plugins_vnc_vinagre-vnc-tunnel_c,v 1.3 2011/09/27 20:24:01 jasper Exp $
From 3e8e6cf66229fa9d8e7c8a2cbab979bca327959a Mon Sep 17 00:00:00 2001
From: Jasper Lievisse Adriaanse <jasper@humppa.nl>
Date: Tue, 27 Sep 2011 18:14:09 +0000
Subject: Add missing includes to fix build on OpenBSD
Fixes bug 660274.
--- plugins/vnc/vinagre-vnc-tunnel.c.orig Sat Apr 24 11:15:11 2010
+++ plugins/vnc/vinagre-vnc-tunnel.c Sat Apr 24 11:15:30 2010
@@ -20,6 +20,7 @@
*/
#include <config.h>
+#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <unistd.h>

View File

@ -1,31 +0,0 @@
$OpenBSD: patch-vinagre_vinagre-reverse-vnc-listener-dialog_c,v 1.3 2011/09/29 06:58:14 jasper Exp $
Fix crasher on 64-bit arches due to pointer truncation.
https://bugzilla.gnome.org/show_bug.cgi?id=652531
From 3e8e6cf66229fa9d8e7c8a2cbab979bca327959a Mon Sep 17 00:00:00 2001
From: Jasper Lievisse Adriaanse <jasper@humppa.nl>
Date: Tue, 27 Sep 2011 18:14:09 +0000
Subject: Add missing includes to fix build on OpenBSD
Fixes bug 660274.
--- vinagre/vinagre-reverse-vnc-listener-dialog.c.orig Sat Sep 10 09:13:52 2011
+++ vinagre/vinagre-reverse-vnc-listener-dialog.c Wed Sep 28 19:50:32 2011
@@ -20,6 +20,8 @@
#include <config.h>
+#include <sys/types.h>
+#include <sys/socket.h>
#include <net/if.h>
#include <arpa/inet.h>
#include <netinet/in.h>
@@ -42,6 +44,7 @@
#include "vinagre-prefs.h"
#include "vinagre-reverse-vnc-listener-dialog.h"
#include "vinagre-reverse-vnc-listener.h"
+#include "vinagre-utils.h"
typedef struct
{

View File

@ -1,17 +1,10 @@
$OpenBSD: patch-vinagre_vinagre-ssh_c,v 1.5 2011/09/29 06:58:14 jasper Exp $
$OpenBSD: patch-vinagre_vinagre-ssh_c,v 1.6 2011/10/18 14:26:44 jasper Exp $
Fix crasher on 64-bit arches due to pointer truncation.
https://bugzilla.gnome.org/show_bug.cgi?id=652531
From 3e8e6cf66229fa9d8e7c8a2cbab979bca327959a Mon Sep 17 00:00:00 2001
From: Jasper Lievisse Adriaanse <jasper@humppa.nl>
Date: Tue, 27 Sep 2011 18:14:09 +0000
Subject: Add missing includes to fix build on OpenBSD
Fixes bug 660274.
--- vinagre/vinagre-ssh.c.orig Sun Aug 14 12:37:18 2011
+++ vinagre/vinagre-ssh.c Wed Sep 28 20:15:47 2011
--- vinagre/vinagre-ssh.c.orig Tue Oct 18 11:32:25 2011
+++ vinagre/vinagre-ssh.c Tue Oct 18 11:32:44 2011
@@ -22,6 +22,7 @@
#include <config.h>
@ -20,11 +13,3 @@ Fixes bug 660274.
#include "pty_open.h"
#ifdef G_OS_WIN32
@@ -30,6 +31,7 @@
#include <gio/gwin32inputstream.h>
#include <gio/gwin32outputstream.h>
#else /* !G_OS_WIN32 */
+#include <arpa/inet.h>
#include <netinet/in.h>
#include <gio/gunixinputstream.h>
#include <gio/gunixoutputstream.h>

View File

@ -1,18 +0,0 @@
$OpenBSD: patch-vinagre_vinagre-utils_c,v 1.1 2011/09/28 16:57:35 jasper Exp $
From 9648cfe19c99420288f83a712f081e6547e3dfca Mon Sep 17 00:00:00 2001
From: Fridiric Piters <fpeters@0d.be>
Date: Wed, 21 Sep 2011 19:43:30 +0000
Subject: Display correct application icon in about dialog
--- vinagre/vinagre-utils.c.orig Wed Sep 28 18:52:18 2011
+++ vinagre/vinagre-utils.c Wed Sep 28 18:52:58 2011
@@ -634,7 +634,7 @@ void vinagre_utils_show_help_about (GtkWindow* parent)
_tmp2_ = _tmp1_;
_tmp3_ = _g_object_ref0 (GTK_IS_ABOUT_DIALOG (_tmp2_) ? ((GtkAboutDialog*) _tmp2_) : NULL);
dialog = _tmp3_;
- gtk_about_dialog_set_logo_icon_name (dialog, PACKAGE_TARNAME);
+ gtk_about_dialog_set_logo_icon_name (dialog, "preferences-desktop-remote");
gtk_about_dialog_set_version (dialog, PACKAGE_VERSION);
gtk_about_dialog_set_website (dialog, PACKAGE_URL);
gtk_window_set_transient_for ((GtkWindow*) dialog, parent);

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.17 2011/09/29 07:57:03 ajacoutot Exp $
@comment $OpenBSD: PLIST,v 1.18 2011/10/18 14:26:44 jasper Exp $
@bin bin/vinagre
lib/vinagre-3.0/
lib/vinagre-3.0/plugins/
@ -193,6 +193,7 @@ share/locale/eo/LC_MESSAGES/vinagre.mo
share/locale/es/LC_MESSAGES/vinagre.mo
share/locale/et/LC_MESSAGES/vinagre.mo
share/locale/eu/LC_MESSAGES/vinagre.mo
share/locale/fa/LC_MESSAGES/vinagre.mo
share/locale/fi/LC_MESSAGES/vinagre.mo
share/locale/fr/LC_MESSAGES/vinagre.mo
share/locale/ga/LC_MESSAGES/vinagre.mo