Date: Thu, 10 Oct 2019 13:49:07 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r514228 - in head/net: . leproxy Message-ID: <201910101349.x9ADn7SQ030427@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Thu Oct 10 13:49:07 2019 New Revision: 514228 URL: https://svnweb.freebsd.org/changeset/ports/514228 Log: LeProxy is designed for anonymous surfing, improved security and privacy plus circumventing geoblocking. It is a powerful, lightweight, fast and simple to use proxy server that you can host on your own server or PC at home and then access from anywhere. It provides compatibility with a large number of clients and services by accepting both HTTP and SOCKS proxy protocols on a single listening port. WWW: https://github.com/leproxy/leproxy Added: head/net/leproxy/ head/net/leproxy/Makefile (contents, props changed) head/net/leproxy/distinfo (contents, props changed) head/net/leproxy/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Oct 10 13:42:11 2019 (r514227) +++ head/net/Makefile Thu Oct 10 13:49:07 2019 (r514228) @@ -340,6 +340,7 @@ SUBDIR += ldapscripts SUBDIR += ldapsdk SUBDIR += ldapsh + SUBDIR += leproxy SUBDIR += lft SUBDIR += libarms SUBDIR += libbgpdump Added: head/net/leproxy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/leproxy/Makefile Thu Oct 10 13:49:07 2019 (r514228) @@ -0,0 +1,28 @@ +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= leproxy +PORTVERSION= 0.2.2 +CATEGORIES= net +MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${PORTVERSION}/ +EXTRACT_SUFX= .php +EXTRACT_ONLY= # empty + +MAINTAINER= danfe@FreeBSD.org +COMMENT= HTTP/SOCKS proxy server for everybody + +LICENSE= MIT + +USES= php +USE_PHP= filter + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= bin/${PORTNAME}.php + +do-install: + ${INSTALL_SCRIPT} ${DISTDIR}/${DISTFILES} \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME}.php + +.include <bsd.port.mk> Added: head/net/leproxy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/leproxy/distinfo Thu Oct 10 13:49:07 2019 (r514228) @@ -0,0 +1,3 @@ +TIMESTAMP = 1531843686 +SHA256 (leproxy-0.2.2.php) = 95cdfb1f8aef8466250f8fc936a5484ab0a38e2768a525bb9302bdfa380a7b37 +SIZE (leproxy-0.2.2.php) = 301247 Added: head/net/leproxy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/leproxy/pkg-descr Thu Oct 10 13:49:07 2019 (r514228) @@ -0,0 +1,14 @@ +LeProxy is designed for anonymous surfing, improved security and privacy +plus circumventing geoblocking. It allows you to enjoy the web like it +was meant to work and access your favorite online video platform without +annoying country blocks while traveling. + +LeProxy is a powerful, lightweight, fast and simple to use proxy server +that you can host on your own server or PC at home and then access from +anywhere. It supports optional authentication so you can share a server +instance with your family and friends without having to worry about +third parties. It provides compatibility with a large number of clients +and services by accepting both common HTTP and SOCKS proxy protocols on +a single listening port. + +WWW: https://github.com/leproxy/leproxy
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910101349.x9ADn7SQ030427>