diff options
author | pav <pav@FreeBSD.org> | 2004-06-23 05:21:25 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-06-23 05:21:25 +0800 |
commit | ed4940eee156f8536e716667352789eb372ee434 (patch) | |
tree | bf4e70ad85db4c3a8498badf5ae0312452de6881 | |
parent | 5f898ccb5d1561cb6d86e76d8643491f9b00490d (diff) | |
download | freebsd-ports-gnome-ed4940eee156f8536e716667352789eb372ee434.tar.gz freebsd-ports-gnome-ed4940eee156f8536e716667352789eb372ee434.tar.zst freebsd-ports-gnome-ed4940eee156f8536e716667352789eb372ee434.zip |
Add xrsh, a port that contains two commands:
Xrsh is designed to allow you to start an X client on a remote machine
with the window displayed on the current server's $DISPLAY. It has
many options that give you the ability to propagate environment
variables (including DISPLAY) to the remote system and works with
various types of X server access control including xauth and xhost.
Xrlogin opens a local xterm window and runs rlogin or telnet to
connect to a remote machine.
PR: ports/67855
Submitted by: KIMURA Yasuhiro <yasu@utahime.org>
-rw-r--r-- | x11/Makefile | 1 | ||||
-rw-r--r-- | x11/xrsh/Makefile | 27 | ||||
-rw-r--r-- | x11/xrsh/distinfo | 2 | ||||
-rw-r--r-- | x11/xrsh/pkg-descr | 12 |
4 files changed, 42 insertions, 0 deletions
diff --git a/x11/Makefile b/x11/Makefile index b0310d140471..c2bfc57eac0d 100644 --- a/x11/Makefile +++ b/x11/Makefile @@ -229,6 +229,7 @@ SUBDIR += xproto SUBDIR += xrestop SUBDIR += xrootconsole + SUBDIR += xrsh SUBDIR += xscreensaver SUBDIR += xscreensaver-gnome SUBDIR += xsel diff --git a/x11/xrsh/Makefile b/x11/xrsh/Makefile new file mode 100644 index 000000000000..a2733851aeda --- /dev/null +++ b/x11/xrsh/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: xrsh +# Date created: 30 May 2004 +# Whom: KIMURA Yasuhiro <yasu@utahime.org> +# +# $FreeBSD$ +# + +PORTNAME= xrsh +PORTVERSION= 5.92 +CATEGORIES= x11 +MASTER_SITES= http://jjd.com/ +DISTNAME= ${PORTNAME} +EXTRACT_SUFX= .shar + +MAINTAINER= yasu@utahime.org +COMMENT= Launcher which starts an X program on a remote machine + +USE_IMAKE= yes +NO_WRKSUBDIR= yes +EXTRACT_CMD= ${SH} +EXTRACT_BEFORE_ARGS= +EXTRACT_AFTER_ARGS= +MAN1= xrsh.1 xrlogin.1 + +PLIST_FILES= bin/xrsh bin/xrlogin + +.include <bsd.port.mk> diff --git a/x11/xrsh/distinfo b/x11/xrsh/distinfo new file mode 100644 index 000000000000..f861d5742a60 --- /dev/null +++ b/x11/xrsh/distinfo @@ -0,0 +1,2 @@ +MD5 (xrsh.shar) = 5834da9da771d3dce928a1ae33df1721 +SIZE (xrsh.shar) = 43266 diff --git a/x11/xrsh/pkg-descr b/x11/xrsh/pkg-descr new file mode 100644 index 000000000000..915457f905d1 --- /dev/null +++ b/x11/xrsh/pkg-descr @@ -0,0 +1,12 @@ +This distribution contains two programs, xrsh and xrlogin. + +Xrsh is designed to allow you to start an X client on a remote machine +with the window displayed on the current server's $DISPLAY. It has +many options that give you the ability to propagate environment +variables (including DISPLAY) to the remote system and works with +various types of X server access control including xauth and xhost. + +Xrlogin opens a local xterm window and runs rlogin or telnet to +connect to a remote machine. + +WWW: http://jjd.com/ |