mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
The proxy65 project is an external component (written on top of the Twisted
Python library) that can be hooked up to existing Jabber/XMPP server to provide SOCKS5 Bytestreams functionality for file transfer between Jabber users, as specified in XEP-0065. WWW: https://github.com/mmatuska/proxy65/
This commit is contained in:
parent
a5959f9cd1
commit
b2e21bc198
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=378774
@ -115,6 +115,7 @@
|
||||
SUBDIR += poezio
|
||||
SUBDIR += pork
|
||||
SUBDIR += prosody
|
||||
SUBDIR += proxy65
|
||||
SUBDIR += psi
|
||||
SUBDIR += psimedia
|
||||
SUBDIR += pwytter
|
||||
|
65
net-im/proxy65/Makefile
Normal file
65
net-im/proxy65/Makefile
Normal file
@ -0,0 +1,65 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= proxy65
|
||||
PORTVERSION= 1.2.0.20150210
|
||||
CATEGORIES= net-im
|
||||
|
||||
MAINTAINER= mm@FreeBSD.org
|
||||
COMMENT= XEP-0065 SOCKS5 Bytestreams external component for Jabber
|
||||
|
||||
LICENSE= MIT
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/OpenSSL/__init__.py:${PORTSDIR}/security/py-openssl
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= mmatuska
|
||||
GH_COMMIT= 4e76bf2
|
||||
GH_PROJECT= ${PORTNAME}
|
||||
GH_TAGNAME= ${GH_COMMIT}
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
OPTIONS_SINGLE= SERVER
|
||||
OPTIONS_SINGLE_SERVER= NOJABBER JABBER JABBERD EJABBERD
|
||||
OPTIONS_DEFAULT= NOJABBER
|
||||
NOJABBER_DESC= Do not depend on a jabber server
|
||||
JABBER_DESC= Use with jabberd14 (net-im/jabber)
|
||||
JABBERD_DESC= Use with jabberd 2.x (net-im/jabberd)
|
||||
EJABBERD_DESC= Use with ejabberd (net-im/ejabberd)
|
||||
|
||||
USE_PYTHON= distutils autoplist
|
||||
USES= python:2 twisted:words
|
||||
USE_RC_SUBR= proxy65
|
||||
|
||||
PORTDOCS= README
|
||||
|
||||
PROXY65_USER= proxy65
|
||||
PROXY65_GROUP= proxy65
|
||||
USERS= ${PROXY65_USER}
|
||||
GROUPS= ${PROXY65_GROUP}
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MNOJABBER}
|
||||
# No jabber depends
|
||||
.elif ${PORT_OPTIONS:MJABBER}
|
||||
JABBER_REQUIRE?= jabber
|
||||
RUN_DEPENDS+= jabberd14:${PORTSDIR}/net-im/jabber
|
||||
.elif ${PORT_OPTIONS:MJABBERD}
|
||||
JABBER_REQUIRE?= jabberd
|
||||
RUN_DEPENDS+= jabberd:${PORTSDIR}/net-im/jabberd
|
||||
.elif ${PORT_OPTIONS:MEJABBERD}
|
||||
JABBER_REQUIRE?= ejabberd
|
||||
RUN_DEPENDS+= ejabberdctl:${PORTSDIR}/net-im/ejabberd
|
||||
.endif
|
||||
|
||||
SUB_LIST+= PYTHON_CMD="${PYTHON_CMD}" \
|
||||
JABBER_REQUIRE="${JABBER_REQUIRE}" \
|
||||
PROXY65_USER=${PROXY65_USER} \
|
||||
PROXY65_GROUP=${PROXY65_GROUP}
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} -m 0640 ${FILESDIR}/proxy65.ini.sample ${STAGEDIR}${PREFIX}/etc/
|
||||
|
||||
.include <bsd.port.mk>
|
2
net-im/proxy65/distinfo
Normal file
2
net-im/proxy65/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (proxy65-1.2.0.20150210.tar.gz) = ea3c03e0dd5dc14e44ce75335ff6843f8af9c94152654c1cd43ed1f679480f54
|
||||
SIZE (proxy65-1.2.0.20150210.tar.gz) = 9416
|
38
net-im/proxy65/files/proxy65.in
Normal file
38
net-im/proxy65/files/proxy65.in
Normal file
@ -0,0 +1,38 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $FreeBSD$
|
||||
#
|
||||
# PROVIDE: proxy65
|
||||
# REQUIRE: DAEMON %%JABBER_REQUIRE%%
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
#
|
||||
# Extra variables:
|
||||
# proxy65_jid = JID
|
||||
# proxy65_config = configuration file
|
||||
|
||||
name="proxy65"
|
||||
rcvar=proxy65_enable
|
||||
command="%%PREFIX%%/bin/twistd"
|
||||
|
||||
load_rc_config $name
|
||||
|
||||
proxy65_enable=${proxy65_enable-"NO"}
|
||||
proxy65_uid=${proxy65_uid-"%%PROXY65_USER%%"}
|
||||
proxy65_gid=${proxy65_gid-"%%PROXY65_GROUP%%"}
|
||||
proxy65_logfile=${proxy65_logfile-"/var/log/proxy65.log"}
|
||||
proxy65_pidfile=${proxy65_pidfile-"/var/run/proxy65.pid"}
|
||||
proxy65_config=${proxy65_config-"%%PREFIX%%/etc/proxy65.ini"}
|
||||
|
||||
required_files="${proxy65_config}"
|
||||
command_interpreter="%%PYTHON_CMD%%"
|
||||
pidfile=${proxy65_pidfile}
|
||||
|
||||
if [ -n "${proxy65_jid}" ]; then
|
||||
proxy65args="--jid ${proxy65_jid}"
|
||||
fi
|
||||
|
||||
command_args="--originalname -u ${proxy65_uid} -g ${proxy65_gid} --pidfile ${pidfile} -l ${proxy65_logfile} proxy65 -c ${proxy65_config} ${proxy65args}"
|
||||
|
||||
run_rc_command "$1"
|
5
net-im/proxy65/files/proxy65.ini.sample
Normal file
5
net-im/proxy65/files/proxy65.ini.sample
Normal file
@ -0,0 +1,5 @@
|
||||
[proxy65]
|
||||
rhost = 127.0.0.1
|
||||
rport = 6000
|
||||
secret = changeme
|
||||
proxyips = 0.0.0.0:7777
|
6
net-im/proxy65/pkg-descr
Normal file
6
net-im/proxy65/pkg-descr
Normal file
@ -0,0 +1,6 @@
|
||||
The proxy65 project is an external component (written on top of the Twisted
|
||||
Python library) that can be hooked up to existing Jabber/XMPP server to provide
|
||||
SOCKS5 Bytestreams functionality for file transfer between Jabber users, as
|
||||
specified in XEP-0065.
|
||||
|
||||
WWW: https://github.com/mmatuska/proxy65/
|
1
net-im/proxy65/pkg-plist
Normal file
1
net-im/proxy65/pkg-plist
Normal file
@ -0,0 +1 @@
|
||||
@sample etc/proxy65.ini.sample
|
Loading…
Reference in New Issue
Block a user