mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
upgrade to 1.0
PR: 44385 Submitted by: Volker Stolz <vs@foldr.org>
This commit is contained in:
parent
0e4d278613
commit
b50fc8ce46
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=68638
@ -7,14 +7,22 @@
|
||||
#
|
||||
|
||||
PORTNAME= nylon
|
||||
PORTVERSION= 0.3
|
||||
PORTVERSION= 1.0
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://www.citi.umich.edu/u/marius/
|
||||
MASTER_SITES= http://monkey.org/~marius/nylon/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/libevent.a:${PORTSDIR}/devel/libevent
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
||||
# Necessary for $PREFIX to work:
|
||||
CONFIGURE_ARGS= --with-libevent=${LOCALBASE}
|
||||
|
||||
MAN1= nylon.1
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA} ${FILESDIR}/nylon.conf ${PREFIX}/etc
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1 +1 @@
|
||||
MD5 (nylon-0.3.tar.gz) = a3900e11c7e56b4309197e0fb7681743
|
||||
MD5 (nylon-1.0.tar.gz) = 4457467ae589c70b37ccbce76851700d
|
||||
|
36
net/nylon/files/nylon.conf
Normal file
36
net/nylon/files/nylon.conf
Normal file
@ -0,0 +1,36 @@
|
||||
# sample configuration # marius aamodt eriksen (marius@umich.edu)
|
||||
# $Id: nylon.conf,v 1.11 2002/03/27 07:39:53 beriksen Exp $
|
||||
# general settings
|
||||
[General]
|
||||
|
||||
# number of simultaneous connections allowed
|
||||
No-Simultaneous-Conn=10
|
||||
|
||||
# log connections and other information to syslog? 1: on, 0: off
|
||||
Log=1
|
||||
|
||||
# be verbose on the console? 1: on, 0: off
|
||||
Verbose=0
|
||||
|
||||
# store pid file
|
||||
#PIDfile=/var/run/nylon.pid
|
||||
|
||||
# server settings
|
||||
[Server]
|
||||
|
||||
# interface to listen to connections
|
||||
#Binding-Interface=fxp1
|
||||
|
||||
# interface to bind outgoing connections to
|
||||
#Connecting-Interface=fxp0
|
||||
|
||||
# listening port to bind to
|
||||
Port=1080
|
||||
|
||||
# allowed is processed first, then deny
|
||||
|
||||
# allowable connect ips/ranges
|
||||
#Allow-IP=141.0.0.0/8 127.0.0.1 10.0.0.0/24
|
||||
Allow-IP=127.0.0.1/32
|
||||
# denied connect ips/ranges
|
||||
#Deny-IP=10.0.0.0/24
|
@ -1,19 +0,0 @@
|
||||
--- cfg.c.orig Fri Jul 12 11:30:59 2002
|
||||
+++ cfg.c Fri Jul 12 11:31:08 2002
|
||||
@@ -35,6 +35,8 @@
|
||||
* This code was written under funding by Ericsson Radio Systems.
|
||||
*/
|
||||
|
||||
+#include "cfg.h"
|
||||
+
|
||||
#ifndef WIN32
|
||||
#include <sys/param.h>
|
||||
#include <sys/mman.h>
|
||||
@@ -51,7 +53,6 @@
|
||||
#include <err.h>
|
||||
|
||||
#include "config.h"
|
||||
-#include "cfg.h"
|
||||
|
||||
struct conf_trans {
|
||||
TAILQ_ENTRY (conf_trans) link;
|
@ -1,24 +0,0 @@
|
||||
--- ../../work.orig/nylon-0.3/err.c Mon Oct 21 17:54:24 2002
|
||||
+++ err.c Mon Oct 21 17:56:03 2002
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
extern int verbose;
|
||||
|
||||
-char nylon_err[] = { "Error in receiving", /* ERROR_RECV */
|
||||
+char *nylon_err[] = { "Error in receiving", /* ERROR_RECV */
|
||||
"Error in sending", /* ERROR_SEND */
|
||||
"Error in header", /* ERROR_HEAD */
|
||||
"Error in address", /* ERROR_ADDR */
|
||||
@@ -55,10 +55,10 @@
|
||||
#else
|
||||
va_start(ap);
|
||||
#endif /* __STDC__ */
|
||||
- if (fmt && (level <= verbose) && errn < NERRS && errn >= 0) {
|
||||
+ if (fmt && (level <= verbose) && errn < NERRS && errn > 0) {
|
||||
fprintf(stderr, "nylon: [error] ");
|
||||
vfprintf(stderr, fmt, ap);
|
||||
- fprintf(stderr, "%s", nylon_err + errn);
|
||||
+ fprintf(stderr, "%s", nylon_err[errn - 1]);
|
||||
}
|
||||
va_end(ap);
|
||||
}
|
11
net/nylon/files/patch-src-Makefile.in
Normal file
11
net/nylon/files/patch-src-Makefile.in
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/Makefile.in.orig Mon Oct 21 19:32:41 2002
|
||||
+++ src/Makefile.in Mon Oct 21 19:33:00 2002
|
||||
@@ -92,7 +92,7 @@
|
||||
socks4.c socks5.c mirror.c cleanup.c misc.c
|
||||
|
||||
|
||||
-CFLAGS = @EVENTINC@ -Wall -g $(AM_CFLAGS)
|
||||
+CFLAGS += @EVENTINC@ -Wall -g $(AM_CFLAGS)
|
||||
LDADD = @EVENTLIB@ @LIBOBJS@
|
||||
|
||||
EXTRA_DIST = strlcpy.c strlcat.c setproctitle.c strsep.c err.c daemon.c
|
@ -1,4 +1,4 @@
|
||||
nylon is a Unix SOCKS 4 and 5 proxy server. It is compatible with BSD,
|
||||
Solaris, HP-UX and Linux 2.2 & 2.4.
|
||||
|
||||
WWW: http://mesh.eecs.umich.edu/projects/nylon/
|
||||
WWW: http://monkey.org/~marius/nylon/
|
||||
|
Loading…
Reference in New Issue
Block a user