7e7c10ce1e
* Srelay is a socks4/5 protocol proxy server * Supports socks connect/bind request in the protocol v4, v4a, and v5. * Supports socks server chaining with both v4 and v5 servers. * Supports Username/Password authentication in v5 (not recommended). * Testing on FreeBSD 8.1R, Solaris 8, 10, Linux-i386, MacOS 10.5. * Supports IPv6 as well as IPv4. * Srelay is Free. WWW: https://github.com/gco/srelay
26 lines
646 B
Makefile
26 lines
646 B
Makefile
# Created by: Bernhard Froehlich <decke@bluelife.at>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= srelay
|
|
PORTVERSION= 0.4.8b6
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= decke@FreeBSD.org
|
|
COMMENT= Srelay is a SOCKS4/5 proxy and Relay
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= gco
|
|
GH_TAGNAME= 9461835
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_RC_SUBR= srelay
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/srelay.conf ${STAGEDIR}${PREFIX}/etc/srelay.conf.sample
|
|
${INSTALL_DATA} ${WRKSRC}/srelay.passwd ${STAGEDIR}${PREFIX}/etc/srelay.passwd.sample
|
|
${INSTALL_MAN} ${WRKSRC}/srelay.8 ${STAGEDIR}${PREFIX}/man/man8
|
|
${INSTALL_PROGRAM} ${WRKSRC}/srelay ${STAGEDIR}${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|