summaryrefslogtreecommitdiffstats
path: root/net/vino
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-05-20 00:58:46 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-05-20 00:58:46 +0800
commitd28a6a62e97091417cdc849e129db1667999282e (patch)
tree26bd8f3cdad26dbf5e59a00b8a89152d43ac55e3 /net/vino
parent4872960b6acb489a1d4cef5625da54a89469e0d9 (diff)
downloadmarcuscom-ports-d28a6a62e97091417cdc849e129db1667999282e.tar
marcuscom-ports-d28a6a62e97091417cdc849e129db1667999282e.tar.gz
marcuscom-ports-d28a6a62e97091417cdc849e129db1667999282e.tar.bz2
marcuscom-ports-d28a6a62e97091417cdc849e129db1667999282e.tar.lz
marcuscom-ports-d28a6a62e97091417cdc849e129db1667999282e.tar.xz
marcuscom-ports-d28a6a62e97091417cdc849e129db1667999282e.tar.zst
marcuscom-ports-d28a6a62e97091417cdc849e129db1667999282e.zip
Update to 2.11.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3997 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'net/vino')
-rw-r--r--net/vino/Makefile31
-rw-r--r--net/vino/distinfo2
-rw-r--r--net/vino/files/patch-server_GNOME_RemoteDesktop-common.c11
-rw-r--r--net/vino/files/patch-server_GNOME_RemoteDesktop.h11
-rw-r--r--net/vino/files/patch-server_libvncserver_rfb_rfbproto.h12
-rw-r--r--net/vino/files/patch-server_vino-fb.c10
-rw-r--r--net/vino/pkg-descr4
-rw-r--r--net/vino/pkg-plist65
8 files changed, 146 insertions, 0 deletions
diff --git a/net/vino/Makefile b/net/vino/Makefile
new file mode 100644
index 000000000..0f08653fa
--- /dev/null
+++ b/net/vino/Makefile
@@ -0,0 +1,31 @@
+# New ports collection makefile for: vino
+# Date created: 16 July 2004
+# Whom: Tom McLaughlin <tmclaugh@sdf.lonestar.org>
+#
+# $FreeBSD: ports/net/vino/Makefile,v 1.8 2005/03/12 10:39:32 marcus Exp $
+#
+
+PORTNAME= vino
+PORTVERSION= 2.11.1
+CATEGORIES= net gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.11
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= VNC server that allows for remote access to your GNOME desktop
+
+LIB_DEPENDS= gnutls:${PORTSDIR}/security/gnutls
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_GNOME= gnomeprefix intlhack gnomehack gnomepanel
+USE_GMAKE= yes
+GNOME_DESKTOP_VERSION=2
+USE_LIBTOOL_VER=15
+CONFIGURE_ARGS= --enable-session-support
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+GCONF_SCHEMAS= vino-server.schemas
+
+.include <bsd.port.mk>
diff --git a/net/vino/distinfo b/net/vino/distinfo
new file mode 100644
index 000000000..6aa3f0cd4
--- /dev/null
+++ b/net/vino/distinfo
@@ -0,0 +1,2 @@
+MD5 (vino-2.11.1.tar.bz2) = 2e1351dd7b86c880f557931cef65b2ee
+SIZE (vino-2.11.1.tar.bz2) = 611331
diff --git a/net/vino/files/patch-server_GNOME_RemoteDesktop-common.c b/net/vino/files/patch-server_GNOME_RemoteDesktop-common.c
new file mode 100644
index 000000000..5d9356370
--- /dev/null
+++ b/net/vino/files/patch-server_GNOME_RemoteDesktop-common.c
@@ -0,0 +1,11 @@
+--- server/GNOME_RemoteDesktop-common.c.orig Thu May 19 12:53:21 2005
++++ server/GNOME_RemoteDesktop-common.c Thu May 19 12:53:53 2005
+@@ -41,7 +41,7 @@ _impl_dummy (_o_servant, _o_ev);
+ #ifdef ORBIT_IDL_C_IMODULE_GNOME_RemoteDesktop
+ static
+ #endif
+-ORBIT2_MAYBE_CONST struct CORBA_TypeCode_struct TC_GNOME_RemoteDesktop_Shell_struct = {
++const struct CORBA_TypeCode_struct TC_GNOME_RemoteDesktop_Shell_struct = {
+ {&ORBit_TypeCode_epv, ORBIT_REFCOUNT_STATIC},
+ CORBA_tk_objref,
+ 0,
diff --git a/net/vino/files/patch-server_GNOME_RemoteDesktop.h b/net/vino/files/patch-server_GNOME_RemoteDesktop.h
new file mode 100644
index 000000000..7d77f8f78
--- /dev/null
+++ b/net/vino/files/patch-server_GNOME_RemoteDesktop.h
@@ -0,0 +1,11 @@
+--- server/GNOME_RemoteDesktop.h.orig Thu May 19 12:47:15 2005
++++ server/GNOME_RemoteDesktop.h Thu May 19 12:52:53 2005
+@@ -46,7 +46,7 @@ static
+ #else
+ extern
+ #endif
+-ORBIT2_MAYBE_CONST struct CORBA_TypeCode_struct TC_GNOME_RemoteDesktop_Shell_struct;
++const struct CORBA_TypeCode_struct TC_GNOME_RemoteDesktop_Shell_struct;
+ #define TC_GNOME_RemoteDesktop_Shell ((CORBA_TypeCode)&TC_GNOME_RemoteDesktop_Shell_struct)
+ #endif
+ #endif
diff --git a/net/vino/files/patch-server_libvncserver_rfb_rfbproto.h b/net/vino/files/patch-server_libvncserver_rfb_rfbproto.h
new file mode 100644
index 000000000..04d7fa7b5
--- /dev/null
+++ b/net/vino/files/patch-server_libvncserver_rfb_rfbproto.h
@@ -0,0 +1,12 @@
+--- server/libvncserver/rfb/rfbproto.h.orig Fri Jul 16 18:16:16 2004
++++ server/libvncserver/rfb/rfbproto.h Fri Jul 16 18:16:39 2004
+@@ -60,7 +60,9 @@
+ #include <rfb/rfbint.h>
+ #else
+ #include <config.h>
++#ifdef HAVE_STDINT_H
+ #include <stdint.h>
++#endif
+ #endif
+ #endif
+ #include <rfb/keysym.h>
diff --git a/net/vino/files/patch-server_vino-fb.c b/net/vino/files/patch-server_vino-fb.c
new file mode 100644
index 000000000..56dbb89dc
--- /dev/null
+++ b/net/vino/files/patch-server_vino-fb.c
@@ -0,0 +1,10 @@
+--- server/vino-fb.c.orig Mon Jul 12 06:22:08 2004
++++ server/vino-fb.c Wed Jul 14 22:15:44 2004
+@@ -37,6 +37,7 @@
+ #include <stdlib.h>
+ #include <string.h>
++#include <sys/types.h>
+ #include <sys/ipc.h>
+ #include <sys/shm.h>
+ #include <gdk/gdkx.h>
+ #include <X11/Xlib.h>
diff --git a/net/vino/pkg-descr b/net/vino/pkg-descr
new file mode 100644
index 000000000..f56a27700
--- /dev/null
+++ b/net/vino/pkg-descr
@@ -0,0 +1,4 @@
+Vino is a VNC server for GNOME - it allows someone to remotely connect
+to your desktop session using the RFB protocol.
+
+WWW: http://www.gnome.org
diff --git a/net/vino/pkg-plist b/net/vino/pkg-plist
new file mode 100644
index 000000000..e0ab010fd
--- /dev/null
+++ b/net/vino/pkg-plist
@@ -0,0 +1,65 @@
+bin/vino-preferences
+bin/vino-session
+libdata/bonobo/servers/GNOME_RemoteDesktop.server
+libexec/vino-server
+share/gnome/applications/vino-preferences.desktop
+share/gnome/vino/vino-preferences.glade
+share/gnome/vino/vino-prompt.glade
+share/icons/hicolor/48x48/apps/gnome-remote-desktop.png
+share/locale/ar/LC_MESSAGES/vino.mo
+share/locale/az/LC_MESSAGES/vino.mo
+share/locale/bg/LC_MESSAGES/vino.mo
+share/locale/bn/LC_MESSAGES/vino.mo
+share/locale/bs/LC_MESSAGES/vino.mo
+share/locale/ca/LC_MESSAGES/vino.mo
+share/locale/cs/LC_MESSAGES/vino.mo
+share/locale/cy/LC_MESSAGES/vino.mo
+share/locale/da/LC_MESSAGES/vino.mo
+share/locale/de/LC_MESSAGES/vino.mo
+share/locale/el/LC_MESSAGES/vino.mo
+share/locale/en_CA/LC_MESSAGES/vino.mo
+share/locale/en_GB/LC_MESSAGES/vino.mo
+share/locale/es/LC_MESSAGES/vino.mo
+share/locale/et/LC_MESSAGES/vino.mo
+share/locale/eu/LC_MESSAGES/vino.mo
+share/locale/fi/LC_MESSAGES/vino.mo
+share/locale/fr/LC_MESSAGES/vino.mo
+share/locale/gu/LC_MESSAGES/vino.mo
+share/locale/hi/LC_MESSAGES/vino.mo
+share/locale/hu/LC_MESSAGES/vino.mo
+share/locale/id/LC_MESSAGES/vino.mo
+share/locale/it/LC_MESSAGES/vino.mo
+share/locale/ja/LC_MESSAGES/vino.mo
+share/locale/ko/LC_MESSAGES/vino.mo
+share/locale/lt/LC_MESSAGES/vino.mo
+share/locale/mk/LC_MESSAGES/vino.mo
+share/locale/mn/LC_MESSAGES/vino.mo
+share/locale/ms/LC_MESSAGES/vino.mo
+share/locale/nb/LC_MESSAGES/vino.mo
+share/locale/ne/LC_MESSAGES/vino.mo
+share/locale/nl/LC_MESSAGES/vino.mo
+share/locale/nn/LC_MESSAGES/vino.mo
+share/locale/no/LC_MESSAGES/vino.mo
+share/locale/or/LC_MESSAGES/vino.mo
+share/locale/pa/LC_MESSAGES/vino.mo
+share/locale/pl/LC_MESSAGES/vino.mo
+share/locale/pt/LC_MESSAGES/vino.mo
+share/locale/pt_BR/LC_MESSAGES/vino.mo
+share/locale/ro/LC_MESSAGES/vino.mo
+share/locale/ru/LC_MESSAGES/vino.mo
+share/locale/rw/LC_MESSAGES/vino.mo
+share/locale/sk/LC_MESSAGES/vino.mo
+share/locale/sq/LC_MESSAGES/vino.mo
+share/locale/sr/LC_MESSAGES/vino.mo
+share/locale/sr@Latn/LC_MESSAGES/vino.mo
+share/locale/sv/LC_MESSAGES/vino.mo
+share/locale/ta/LC_MESSAGES/vino.mo
+share/locale/tr/LC_MESSAGES/vino.mo
+share/locale/ug/LC_MESSAGES/vino.mo
+share/locale/uk/LC_MESSAGES/vino.mo
+share/locale/vi/LC_MESSAGES/vino.mo
+share/locale/wa/LC_MESSAGES/vino.mo
+share/locale/xh/LC_MESSAGES/vino.mo
+share/locale/zh_CN/LC_MESSAGES/vino.mo
+share/locale/zh_TW/LC_MESSAGES/vino.mo
+@dirrm share/gnome/vino