mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
6a792e4b80
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
29 lines
557 B
Makefile
29 lines
557 B
Makefile
# 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>
|