mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
5f87cef0b9
This program forces any tcp connection made by any given tcp client to follow through proxy (or proxy chain). It is a kind of proxifier. It acts like sockscap / permeo / eborder driver (intercepts TCP calls). PR: ports/53318 Submitted by: Patrick MARIE <mycroft@virgaria.org>
32 lines
756 B
Makefile
32 lines
756 B
Makefile
# New ports collection makefile for: proxychains
|
|
# Date created: 14 jui 2003
|
|
# Whom: Patrick MARIE <mycroft@virgaria.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= proxychains
|
|
PORTVERSION= 1.8.2
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= proxychains
|
|
|
|
MAINTAINER= mycroft@virgaria.org
|
|
COMMENT= Multi-proxifier
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_REINPLACE= yes
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-extract:
|
|
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \
|
|
${WRKSRC}/proxychains/Makefile.in
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/proxychains/proxychains ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/proxychains/proxychains.conf \
|
|
${PREFIX}/etc
|
|
${INSTALL_DATA} ${WRKSRC}/proxychains/.libs/libproxychains.so.9 \
|
|
${PREFIX}/lib
|
|
|
|
.include <bsd.port.mk>
|