diff options
-rw-r--r-- | net-misc/nylon/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/nylon/files/digest-nylon-1.1 | 1 | ||||
-rw-r--r-- | net-misc/nylon/files/nylon.conf | 36 | ||||
-rw-r--r-- | net-misc/nylon/nylon-1.1.ebuild | 27 |
4 files changed, 74 insertions, 0 deletions
diff --git a/net-misc/nylon/ChangeLog b/net-misc/nylon/ChangeLog new file mode 100644 index 000000000000..23caf274b1e5 --- /dev/null +++ b/net-misc/nylon/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-misc/nylon +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/nylon/ChangeLog,v 1.1 2003/01/08 06:06:48 kain Exp $ + +*nylon-1.1 (01 Jan 2003) + + 01 Jan 2003; Kain <kain@kain.org> nylon-1.1.ebuild, files/nylon.conf : + Initial import. Ebuild submitted by Daniel Mannarino + <thesnark@operamail.com>. This builds fine on x86 and ppc, so they both + get the ~. diff --git a/net-misc/nylon/files/digest-nylon-1.1 b/net-misc/nylon/files/digest-nylon-1.1 new file mode 100644 index 000000000000..489e392661d0 --- /dev/null +++ b/net-misc/nylon/files/digest-nylon-1.1 @@ -0,0 +1 @@ +MD5 8e6c72fede1d6d01f2535aa9a8d113c4 nylon-1.1.tar.gz 81422 diff --git a/net-misc/nylon/files/nylon.conf b/net-misc/nylon/files/nylon.conf new file mode 100644 index 000000000000..9aad4d3511df --- /dev/null +++ b/net-misc/nylon/files/nylon.conf @@ -0,0 +1,36 @@ +# sample configuration # marius aamodt eriksen (marius@umich.edu) +# $Id: nylon.conf,v 1.1 2003/01/08 06:06:48 kain 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 diff --git a/net-misc/nylon/nylon-1.1.ebuild b/net-misc/nylon/nylon-1.1.ebuild new file mode 100644 index 000000000000..3401f66005a4 --- /dev/null +++ b/net-misc/nylon/nylon-1.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/nylon/nylon-1.1.ebuild,v 1.1 2003/01/08 06:06:48 kain Exp $ + +DESCRIPTION="A lightweight SOCKS proxy server" +HOMEPAGE="http://monkey.org/~marius/nylon/" +SRC_URI="http://monkey.org/~marius/nylon/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86 ~ppc" + +IUSE="" +DEPEND=">=libevent-0.6" +RDEPEND=${DEPEND} + +src_compile() { + econf || die + emake || die +} + +src_install() { + einstall || die + dodoc README THANKS + insinto /etc + doins ${FILESDIR}/nylon.conf +} |