diff options
Diffstat (limited to 'net-proxy/nylon')
-rw-r--r-- | net-proxy/nylon/Manifest | 6 | ||||
-rw-r--r-- | net-proxy/nylon/files/nylon-1.21-libevent.patch | 63 | ||||
-rw-r--r-- | net-proxy/nylon/files/nylon.conf | 37 | ||||
-rw-r--r-- | net-proxy/nylon/files/nylon.init | 22 | ||||
-rw-r--r-- | net-proxy/nylon/metadata.xml | 7 | ||||
-rw-r--r-- | net-proxy/nylon/nylon-1.21-r2.ebuild | 35 |
6 files changed, 0 insertions, 170 deletions
diff --git a/net-proxy/nylon/Manifest b/net-proxy/nylon/Manifest deleted file mode 100644 index 5a362a750a17..000000000000 --- a/net-proxy/nylon/Manifest +++ /dev/null @@ -1,6 +0,0 @@ -AUX nylon-1.21-libevent.patch 1854 BLAKE2B 3ee6de7ad563138e987ba242c25a9d117146f1301d82be70d12464418998f0893870c0e6b6e637d6394caf12cc8758a03ca6e592c93c13de04c1369520e0909c SHA512 0a960cd2ef775b53358f9eabc39a73b43534b82ab84eb0cdc2491d69c9f1aa5a69321a84e91a9d759ab65c152b0f6e0a3e93ca4d16e25f3a637215aaccab5fb0 -AUX nylon.conf 787 BLAKE2B d8385c46085e5cf18e27917d7b53a107f07f5f08128f1b79b98344cafeef391a0b9ed9243c841d061b084627edb11eca633f95285c363a4c4f8000ecc0eceb95 SHA512 0f93db98c62e59c97946c70a568e83a4bd08ebed494313bc6062d44cb96298d04ee688089714458733e5fdc668910c80eec318aa765023d388046afe7039dcd8 -AUX nylon.init 402 BLAKE2B 231d031a2fa543b33e4cf2a5d5e7a78cc0e2223ae511dc680b4fb0224e70a592c4417367feb77dc097f6d295e443f7bc87710dbbccb36a96f6f912fb8df39823 SHA512 37b7b1b974d09fc0bbe2df62d85517fd0a3ba7fc4942e7e74e6ab3eaf60a194ad8fb8ae0789e6aa32223ec4d834b4a98dd69c3473aaa9d6f0fd2ee03bb9e9ca5 -DIST nylon-1.21.tar.gz 115954 BLAKE2B e4fd7422349d51edb3f5ac52ba7da8dfe1cc0eeb88effe968d22670a9b2d0ccd395f2ac851f80344a0606cb31ec1bb91cee8d4d66bb5ef30e45b080cc0798132 SHA512 7338ebf376843a49777bfc2c04dc0f9b14a25162efb008a555b6d74991bfbddbe5eb8fa6371c8c6a4dae9739f15d6d85135ba9d39472bc2646293a39777b5cfa -EBUILD nylon-1.21-r2.ebuild 657 BLAKE2B 0d0ad84094c055a9cb030552714f5c89c89d45008d746db718d48a215d29344b90be176a3c9465a45aeefa305004ff0aac67998ff0305d665a47e959616196af SHA512 5aef47b5392470bfb93b859cdcadb74ac60347c45b2233355a35cfb1a70953ab6186dc78c69498fec0e74675828e58e31950e7f044cf0f39790f59ff5579c62e -MISC metadata.xml 351 BLAKE2B e845f98be7922de657a4119c7e10e5a66b8dcf96aaf14055fb446e9559b66fff9d456c9cc2997960d75c2ebae5e2bb3405777fc324544d878a7d363a45b339a0 SHA512 a0d51135d2e19f2435e49c7ed375926b19a468c03f6531552df0cd7e002893a8affb8812a43513dc747e302a0914bb23407561d4f1ce99bc14495511a282f733 diff --git a/net-proxy/nylon/files/nylon-1.21-libevent.patch b/net-proxy/nylon/files/nylon-1.21-libevent.patch deleted file mode 100644 index d7ca2a1ab0e9..000000000000 --- a/net-proxy/nylon/files/nylon-1.21-libevent.patch +++ /dev/null @@ -1,63 +0,0 @@ ---- a/configure.in -+++ b/configure.in -@@ -95,44 +95,10 @@ - AC_REPLACE_FUNCS(strlcpy strlcat strsep setproctitle daemon) - - dnl Checks for libevent --AC_MSG_CHECKING(for libevent) --AC_ARG_WITH(libevent, --[ --with-libevent=DIR use libevent in DIR], --[ case "$withval" in -- yes|no) -- AC_MSG_RESULT(no) -- ;; -- *) -- AC_MSG_RESULT($withval) -- if test -f $withval/include/event.h -a -f $withval/lib/libevent.a; then -- owd=`pwd` -- if cd $withval; then withval=`pwd`; cd $owd; fi -- EVENTINC="-I$withval/include" -- EVENTLIB="-L$withval/lib -levent" -- elif test -f $withval/event.h -a -f $withval/libevent.a; then -- owd=`pwd` -- if cd $withval; then withval=`pwd`; cd $owd; fi -- EVENTINC="-I$withval" -- EVENTLIB="-L$withval -levent" -- else -- AC_ERROR(event.h or libevent.a not found in $withval) -- fi -- ;; -- esac ], --[ if test -f ${prefix}/include/event.h -a -f ${prefix}/lib/libevent.a; --then -- EVENTINC="-I${prefix}/include" -- EVENTLIB="-L${prefix}/lib -levent" -- elif test -f /usr/include/event.h; then -- EVENTLIB="-levent" -- else -- AC_MSG_RESULT(no) -- AC_ERROR(libevent not found) -- fi -- AC_MSG_RESULT(yes) ] --) --AC_SUBST(EVENTINC) --AC_SUBST(EVENTLIB) -+PKG_CHECK_MODULES(LIBEVENT,libevent,,) -+ -+AC_SUBST(LIBEVENT_CFLAGS) -+AC_SUBST(LIBEVENT_LIBS) - - if test "x${sysconfdir}" = 'x${prefix}/etc'; then - csysconfdir="${prefix}/etc" ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -5,7 +5,7 @@ - nylon_SOURCES = nylon.c print.c cfg.c expanda.c net.c access.c atomicio.c \ - socks4.c socks5.c mirror.c cleanup.c misc.c - --AM_CFLAGS = @EVENTINC@ -Wall -g --LDADD = @EVENTLIB@ @LIBOBJS@ -+AM_CFLAGS = @LIBEVENT_CFLAGS@ -+LDADD = @LIBEVENT_LIBS@ @LIBOBJS@ - - EXTRA_DIST = strlcpy.c strlcat.c setproctitle.c strsep.c err.c daemon.c diff --git a/net-proxy/nylon/files/nylon.conf b/net-proxy/nylon/files/nylon.conf deleted file mode 100644 index 80d11cc8806a..000000000000 --- a/net-proxy/nylon/files/nylon.conf +++ /dev/null @@ -1,37 +0,0 @@ -# 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 diff --git a/net-proxy/nylon/files/nylon.init b/net-proxy/nylon/files/nylon.init deleted file mode 100644 index 7c58d3c9bc32..000000000000 --- a/net-proxy/nylon/files/nylon.init +++ /dev/null @@ -1,22 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net -} - -start() { - ebegin "Starting Nylon" - start-stop-daemon --start --quiet --pidfile /var/run/nylon.pid \ - --startas /usr/bin/nylon - eend $? -} - -stop() { - ebegin "Stopping Nylon" - start-stop-daemon --stop --quiet --pidfile /var/run/nylon.pid - eend $? -} - - diff --git a/net-proxy/nylon/metadata.xml b/net-proxy/nylon/metadata.xml deleted file mode 100644 index 5a6f202af08a..000000000000 --- a/net-proxy/nylon/metadata.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<!-- maintainer-needed --> -<longdescription>nylon is a proxy server, developed on OpenBSD. It supports SOCKS version 4 and 5, -as well as a mirror mode so that services can be mirrored directly.</longdescription> -</pkgmetadata> diff --git a/net-proxy/nylon/nylon-1.21-r2.ebuild b/net-proxy/nylon/nylon-1.21-r2.ebuild deleted file mode 100644 index ec11be51135c..000000000000 --- a/net-proxy/nylon/nylon-1.21-r2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools - -DESCRIPTION="A lightweight SOCKS proxy server" -HOMEPAGE="http://monkey.org/~marius/nylon/" -SRC_URI="http://monkey.org/~marius/nylon/${P}.tar.gz" - -LICENSE="BSD GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 ~sparc x86" -IUSE="" - -RDEPEND=">=dev-libs/libevent-0.6" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -DOCS=( README THANKS ) - -src_prepare() { - default - - eapply "${FILESDIR}"/${P}-libevent.patch - eautoreconf -} - -src_install() { - default - insinto /etc ; doins "${FILESDIR}/nylon.conf" - newinitd "${FILESDIR}/nylon.init" nylond -} |