1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

Add x2goclient, A client to connect to an x2go server.

Feature safe:	yes
This commit is contained in:
Tilman Keskinoz 2010-07-02 17:23:30 +00:00
parent 1516cf1188
commit 4313f270d4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=257309
5 changed files with 47 additions and 0 deletions

View File

@ -1129,6 +1129,7 @@
SUBDIR += wpa_gui
SUBDIR += wping
SUBDIR += x11vnc
SUBDIR += x2goclient-cli
SUBDIR += xbone
SUBDIR += xbone-gui
SUBDIR += xboxproxy

View File

@ -0,0 +1,33 @@
# New ports collection makefile for: x2goclient-cli
# Date created: 2010-06-24
# Whom: arved
#
# $FreeBSD$
PORTNAME= x2goclient-cli
DISTVERSION= 3.0.1-1.2
CATEGORIES= net
MASTER_SITES= http://x2go.obviously-nice.de/deb/pool-lenny/x2goclient-cli/
DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= arved@FreeBSD.org
COMMENT= The x2go perl client
RUN_DEPENDS= ${SITE_PERL}/Proc/Simple.pm:${PORTSDIR}/devel/p5-Proc-Simple \
${SITE_PERL}/Term/ReadPassword.pm:${PORTSDIR}/devel/p5-Term-ReadPassword \
nxproxy:${PORTSDIR}/net/nxproxy
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_PERL5= yes
PLIST_FILES= bin/x2goclient-cli bin/setsid
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:S,-1.2,,}
do-build:
cd ${WRKSRC}; ${CC} ${CFLAGS} ${FILESDIR}/setsid.c -o setsid
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/x2goclient-cli ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/setsid ${PREFIX}/bin
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (x2goclient-cli_3.0.1-1.2.tar.gz) = bbe5c4e31cbfac26a3179d8479c3eca4
SHA256 (x2goclient-cli_3.0.1-1.2.tar.gz) = ad6b69fffe599102791c96c38f0eb42f7fe2308ef61803f7cbd74b0321e51135
SIZE (x2goclient-cli_3.0.1-1.2.tar.gz) = 19180

View File

@ -0,0 +1,7 @@
#include <unistd.h>
int main(int argc,char** argv)
{
setsid();
execvp(argv[1], argv+1);
return 0;
}

View File

@ -0,0 +1,3 @@
CLI client for x2go
WWW: http://www.x2go.org/