mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Add net/plugdaemon, a TCP/IP redirecting proxy
PR: 68290 Submitted by: David Thiel <lx@redundancy.redundancy.org>
This commit is contained in:
parent
a9bb02769e
commit
0eb80c6bc9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=112174
5 changed files with 53 additions and 0 deletions
|
@ -511,6 +511,7 @@
|
|||
SUBDIR += pim6sd
|
||||
SUBDIR += pipsecd
|
||||
SUBDIR += plb
|
||||
SUBDIR += plugdaemon
|
||||
SUBDIR += pmf
|
||||
SUBDIR += poink
|
||||
SUBDIR += poptop
|
||||
|
|
23
net/plugdaemon/Makefile
Normal file
23
net/plugdaemon/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# New ports collection makefile for: plugdaemon
|
||||
# Date created: Thu Jun 24 12:38:31 PDT 2004
|
||||
# Whom: David Thiel <lx@redundancy.redundancy.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= plugdaemon
|
||||
PORTVERSION= 2.5.3
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://www.taronga.com/plugdaemon/
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= lx@redundancy.redundancy.org
|
||||
COMMENT= Plug proxy daemon, forwards TCP/IP connections
|
||||
|
||||
MAN1= plug.1
|
||||
PLIST_FILES= sbin/plug
|
||||
|
||||
post-install:
|
||||
@${STRIP_CMD} ${PREFIX}/sbin/plug
|
||||
|
||||
.include <bsd.port.mk>
|
1
net/plugdaemon/distinfo
Normal file
1
net/plugdaemon/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (plugdaemon-2.5.3.tgz) = e3c5cc0e0228595bcdca32b98d64f7e8
|
22
net/plugdaemon/files/patch-Makefile
Normal file
22
net/plugdaemon/files/patch-Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
--- Makefile.orig Thu Jun 24 12:46:54 2004
|
||||
+++ Makefile Thu Jun 24 12:49:07 2004
|
||||
@@ -10,8 +10,8 @@
|
||||
#CFLAGS=-O2 -Wall -s -static
|
||||
#LFLAGS=-s -static
|
||||
# gcc
|
||||
-CC=cc
|
||||
-CFLAGS=-O -g -Wall
|
||||
+CC?=cc
|
||||
+CFLAGS+=-O -g -Wall
|
||||
LFLAGS=
|
||||
# cc
|
||||
#CC=cc
|
||||
@@ -41,6 +41,6 @@
|
||||
tar: $T.tgz
|
||||
|
||||
install: plug
|
||||
- install -C -m 0755 plug /usr/local/sbin
|
||||
- install -C -m 0644 plug.1 /usr/local/man/man1
|
||||
+ install -C -m 0755 plug ${PREFIX}/sbin
|
||||
+ install -C -m 0644 plug.1 ${PREFIX}/man/man1
|
||||
|
6
net/plugdaemon/pkg-descr
Normal file
6
net/plugdaemon/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
Plugdaemon acts as a "dumb proxy", forwarding a TCP/IP stream from a port
|
||||
on one host to a possibly different port on a separate host. It runs as a
|
||||
daemon to reduce latency in setting up a connection, and optionally logs
|
||||
every connection via syslog.
|
||||
|
||||
WWW: http://www.taronga.com/plugdaemon/
|
Loading…
Add table
Reference in a new issue