1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

Remove expired port:

2012-04-11 ftp/ftp-proxy: is a part of the base system in all supported FreeBSD versions
This commit is contained in:
Rene Ladan 2012-04-13 20:33:34 +00:00
parent 6b9231a9d7
commit 9633fa1fa5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=294787
7 changed files with 1 additions and 94 deletions

1
MOVED
View File

@ -3271,3 +3271,4 @@ net/p5-Net-Rendezvous||2012-04-09|Has expired: Superceeded by dns/p5-Net-Bonjour
audio/gstreamer-plugins-musicbrainz||2012-04-09|Has expired: MusicBrainz RDF webservice no longer functions
x11/wrapper||2012-04-10|Has expired: not needed anymore
www/resin2||2012-04-10|Has expired: unsupported upstream, consider www/resin3
ftp/ftp-proxy||2012-04-13|Has expired: is a part of the base system in all supported FreeBSD versions

View File

@ -21,7 +21,6 @@
SUBDIR += fmirror
SUBDIR += fpc-libcurl
SUBDIR += frox
SUBDIR += ftp-proxy
SUBDIR += ftp-tls
SUBDIR += ftpcopy
SUBDIR += ftpcube

View File

@ -1,40 +0,0 @@
# New ports collection makefile for: ftp-proxy
# Date created: 4. March 2007
# Whom: Christian Ludwig
#
# $FreeBSD$
#
PORTNAME= ftp-proxy
PORTVERSION= 4.4p1
PORTREVISION= 2
CATEGORIES= ftp
MASTER_SITES= http://www.chrissicool.net/projects/ftp-proxy/distfiles/
MAINTAINER= chrissicool@chrissicool.net
COMMENT= A port of OpenBSD's ftp-proxy
LIB_DEPENDS= event-1.4:${PORTSDIR}/devel/libevent
MAN8= ftp-proxy.8
MANCOMPRESSED= yes
PLIST_FILES= sbin/ftp-proxy
USE_RC_SUBR= ftp-proxy
CFLAGS+= -I${LOCALBASE}/include
.include <bsd.port.pre.mk>
.if ${OSVERSION} > 700048
IGNORE= is a part of base for 7.0 and above
.endif
DEPRECATED= is a part of the base system in all supported FreeBSD versions
EXPIRATION_DATE= 2012-04-11
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ftp-proxy ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/ftp-proxy.8.gz ${PREFIX}/man/man8
.include <bsd.port.post.mk>

View File

@ -1,2 +0,0 @@
SHA256 (ftp-proxy-4.4p1.tar.gz) = 1ec9d87a83c4cc7562ee6fa7d8df60b5e243a359fa3bfd8a9cfb66953884b276
SIZE (ftp-proxy-4.4p1.tar.gz) = 13925

View File

@ -1,25 +0,0 @@
#!/bin/sh
#
# PROVIDE: ftp-proxy
# REQUIRE: DAEMON pf
#
# Add the following lines to /etc/rc.conf to enable ftp-proxy:
#
# ftpproxy_enable (bool) Set to "YES" to enable ftp-proxy.
# Default is "NO".
# ftpproxy_flags (flags): Set extra flags to ftp-proxy.
# Default is "". See ftp-proxy(8).
#
. /etc/rc.subr
name="ftpproxy"
rcvar=ftpproxy_enable
load_rc_config $name
: ${ftpproxy_enable="NO"}
command="%%PREFIX%%/sbin/ftp-proxy"
run_rc_command "$1"

View File

@ -1,3 +0,0 @@
A ftp proxy for firewalled connections,using pf's anchors and rules.
WWW: http://www.chrissicool.net/projects/ftp-proxy/

View File

@ -1,23 +0,0 @@
===================================================================
To make use of the proxy, pf.conf(5) needs the following rules. All
anchors are mandatory. Adjust the rules as needed.
In the NAT section:
nat-anchor "ftp-proxy/*"
rdr-anchor "ftp-proxy/*"
rdr pass on $int_if proto tcp from $lan to any port 21 -> \
127.0.0.1 port 8021
In the rule section:
anchor "ftp-proxy/*"
pass out proto tcp from $proxy to any port 21 keep state
Add the following line to your /etc/rc.conf to enable the proxy on
startup:
ftpproxy_enable="YES"
Please consult the man page ftp-proxy(8) for more information.
===================================================================