diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-04-29 03:01:12 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-04-29 03:01:12 +0800 |
commit | 5c015bb373f93c4c3bdfe0f7fb492a60c68f863b (patch) | |
tree | 5504b1475ebd7fe43cf1b55c5c043fd3d06dc224 /net/vino | |
parent | 4b190faf9d88d54a3d94a2147a81265186adc76c (diff) | |
download | marcuscom-ports-5c015bb373f93c4c3bdfe0f7fb492a60c68f863b.tar marcuscom-ports-5c015bb373f93c4c3bdfe0f7fb492a60c68f863b.tar.gz marcuscom-ports-5c015bb373f93c4c3bdfe0f7fb492a60c68f863b.tar.bz2 marcuscom-ports-5c015bb373f93c4c3bdfe0f7fb492a60c68f863b.tar.lz marcuscom-ports-5c015bb373f93c4c3bdfe0f7fb492a60c68f863b.tar.xz marcuscom-ports-5c015bb373f93c4c3bdfe0f7fb492a60c68f863b.tar.zst marcuscom-ports-5c015bb373f93c4c3bdfe0f7fb492a60c68f863b.zip |
share/gnome -> share
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8673 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'net/vino')
-rw-r--r-- | net/vino/Makefile | 35 | ||||
-rw-r--r-- | net/vino/distinfo | 3 | ||||
-rw-r--r-- | net/vino/files/patch-server_libvncserver_sockets.c | 22 | ||||
-rw-r--r-- | net/vino/files/patch-server_vino-http.c | 24 | ||||
-rw-r--r-- | net/vino/pkg-descr | 4 | ||||
-rw-r--r-- | net/vino/pkg-plist | 124 |
6 files changed, 212 insertions, 0 deletions
diff --git a/net/vino/Makefile b/net/vino/Makefile new file mode 100644 index 000000000..a2e61fa05 --- /dev/null +++ b/net/vino/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: vino +# Date created: 16 July 2004 +# Whom: Tom McLaughlin <tmclaugh@sdf.lonestar.org> +# +# $FreeBSD$ +# $MCom: ports/net/vino/Makefile,v 1.37 2007/03/12 13:41:32 ahze Exp $ +# + +PORTNAME= vino +PORTVERSION= 2.18.1 +PORTREVISION= 1 +CATEGORIES= net gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} + +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_GETTEXT= yes +USE_XLIB= yes +USE_GNOME= gnomeprefix intlhack gnomehack gnomepanel +USE_GMAKE= yes +GNOME_DESKTOP_VERSION=2 +GNU_CONFIGURE= yes +INSTALLS_ICONS= yes +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..3e47221e2 --- /dev/null +++ b/net/vino/distinfo @@ -0,0 +1,3 @@ +MD5 (vino-2.18.1.tar.bz2) = caf0025b1ed95f03e29f9b40ae48b75b +SHA256 (vino-2.18.1.tar.bz2) = ce50a7c8c8209aecf81912f9eb784c9a5a8748f89abf49ac613c907e6ecc12f4 +SIZE (vino-2.18.1.tar.bz2) = 635144 diff --git a/net/vino/files/patch-server_libvncserver_sockets.c b/net/vino/files/patch-server_libvncserver_sockets.c new file mode 100644 index 000000000..b182a2c4f --- /dev/null +++ b/net/vino/files/patch-server_libvncserver_sockets.c @@ -0,0 +1,22 @@ +Index: server/libvncserver/sockets.c +diff -u -p server/libvncserver/sockets.c.orig server/libvncserver/sockets.c +--- server/libvncserver/sockets.c.orig Tue Jan 2 22:34:50 2007 ++++ server/libvncserver/sockets.c Sun Mar 25 22:52:02 2007 +@@ -560,6 +560,7 @@ ListenOnTCPPort(port, localOnly) + + #ifdef ENABLE_IPV6 + struct sockaddr_in6 addr_in6; ++ int off = 0; + + memset(&addr_in6, 0, sizeof(addr_in6)); + addr_in6.sin6_family = AF_INET6; +@@ -570,6 +571,9 @@ ListenOnTCPPort(port, localOnly) + addrlen = sizeof(addr_in6); + + sock = socket(AF_INET6, SOCK_STREAM, 0); ++#ifdef IPV6_V6ONLY ++ setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&off, sizeof(off)); ++#endif + #endif + + if (sock < 0) { diff --git a/net/vino/files/patch-server_vino-http.c b/net/vino/files/patch-server_vino-http.c new file mode 100644 index 000000000..d51f95885 --- /dev/null +++ b/net/vino/files/patch-server_vino-http.c @@ -0,0 +1,24 @@ +Index: server/vino-http.c +diff -u -p server/vino-http.c.orig server/vino-http.c +--- server/vino-http.c.orig Tue Feb 27 19:47:35 2007 ++++ server/vino-http.c Sun Mar 25 20:56:41 2007 +@@ -595,6 +595,9 @@ vino_http_create_listening_socket (VinoH + { + #ifdef ENABLE_IPV6 + struct sockaddr_in6 saddr_in6; ++#ifdef IPV6_V6ONLY ++ int off = 0; ++#endif + #endif + struct sockaddr_in saddr_in; + struct sockaddr *saddr; +@@ -621,6 +624,9 @@ vino_http_create_listening_socket (VinoH + + #ifdef ENABLE_IPV6 + sock = socket (AF_INET6, SOCK_STREAM, 0); ++#ifdef IPV6_V6ONLY ++ setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&off, sizeof(off)); ++#endif + + memset (&saddr_in6, 0, sizeof (struct sockaddr_in6)); + saddr_in6.sin6_family = AF_INET6; 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..e76bd661a --- /dev/null +++ b/net/vino/pkg-plist @@ -0,0 +1,124 @@ +bin/vino-preferences +bin/vino-session +libdata/bonobo/servers/GNOME_RemoteDesktop.server +libexec/vino-server +share/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/bn_IN/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/dz/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/fa/LC_MESSAGES/vino.mo +share/locale/fi/LC_MESSAGES/vino.mo +share/locale/fr/LC_MESSAGES/vino.mo +share/locale/gl/LC_MESSAGES/vino.mo +share/locale/gu/LC_MESSAGES/vino.mo +share/locale/he/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/ka/LC_MESSAGES/vino.mo +share/locale/ko/LC_MESSAGES/vino.mo +share/locale/ku/LC_MESSAGES/vino.mo +share/locale/lt/LC_MESSAGES/vino.mo +share/locale/lv/LC_MESSAGES/vino.mo +share/locale/mk/LC_MESSAGES/vino.mo +share/locale/ml/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/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/sl/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/th/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_HK/LC_MESSAGES/vino.mo +share/locale/zh_TW/LC_MESSAGES/vino.mo +@dirrm share/gnome/vino +@dirrmtry share/locale/zh_TW/LC_MESSAGES +@dirrmtry share/locale/zh_TW +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/zh_CN/LC_MESSAGES +@dirrmtry share/locale/zh_CN +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/uk/LC_MESSAGES +@dirrmtry share/locale/uk +@dirrmtry share/locale/ug/LC_MESSAGES +@dirrmtry share/locale/ug +@dirrmtry share/locale/sr/LC_MESSAGES +@dirrmtry share/locale/sr +@dirrmtry share/locale/sl/LC_MESSAGES +@dirrmtry share/locale/sl +@dirrmtry share/locale/sk/LC_MESSAGES +@dirrmtry share/locale/sk +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/ro/LC_MESSAGES +@dirrmtry share/locale/ro +@dirrmtry share/locale/pt/LC_MESSAGES +@dirrmtry share/locale/pt +@dirrmtry share/locale/pl/LC_MESSAGES +@dirrmtry share/locale/pl +@dirrmtry share/locale/nn/LC_MESSAGES +@dirrmtry share/locale/nn +@dirrmtry share/locale/ne/LC_MESSAGES +@dirrmtry share/locale/ne +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/ko/LC_MESSAGES +@dirrmtry share/locale/ko +@dirrmtry share/locale/gl/LC_MESSAGES +@dirrmtry share/locale/gl +@dirrmtry share/locale/fi/LC_MESSAGES +@dirrmtry share/locale/fi +@dirrmtry share/locale/el/LC_MESSAGES +@dirrmtry share/locale/el +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/cs/LC_MESSAGES +@dirrmtry share/locale/cs +@dirrmtry share/locale/ca/LC_MESSAGES +@dirrmtry share/locale/ca +@dirrmtry share/locale/bn_IN/LC_MESSAGES +@dirrmtry share/locale/bn_IN |