mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Add ftpproxy 1.0.1, a ftp proxy.
PR: 27390 Submitted by: Philippe Le Berre <philippe@le-berre.com>
This commit is contained in:
parent
2ff756d78e
commit
f16ad320ac
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=42779
9 changed files with 81 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
|||
SUBDIR += ftpfind
|
||||
SUBDIR += ftplocate
|
||||
SUBDIR += ftpmirror
|
||||
SUBDIR += ftpproxy
|
||||
SUBDIR += ftpq
|
||||
SUBDIR += ftpsearch
|
||||
SUBDIR += ftptool
|
||||
|
|
26
ftp/ftpproxy/Makefile
Normal file
26
ftp/ftpproxy/Makefile
Normal file
|
@ -0,0 +1,26 @@
|
|||
# New ports collection makefile for: ftpproxy
|
||||
# Date created: 15 May 2001
|
||||
# Whom: Philippe Le Berre <philippe@le-berre.com>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= ftpproxy
|
||||
PORTVERSION= 1.0.1
|
||||
CATEGORIES= ftp
|
||||
MASTER_SITES= http://www.quietsche-entchen.de/download/
|
||||
DISTNAME= ftpproxy-${PORTVERSION}
|
||||
|
||||
MAINTAINER= philippe@le-berre.com
|
||||
|
||||
MAN1= ftp.proxy.1
|
||||
MANCOMPRESSED= no
|
||||
|
||||
pre-build:
|
||||
${PERL} -pi -e "s@gcc@${CC}@g; s@-O2 -Wall -ggdb@-Wall ${CFLAGS}@g; \
|
||||
s@/usr/local@${PREFIX}@g" ${WRKSRC}/Makefile
|
||||
|
||||
post-patch:
|
||||
${MV} ${WRKSRC}/makefile ${WRKSRC}/Makefile
|
||||
|
||||
.include <bsd.port.mk>
|
1
ftp/ftpproxy/distinfo
Normal file
1
ftp/ftpproxy/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (ftpproxy-1.0.1.tar.gz) = d9f1ce0a3e028c060a9c5d0d8ae7d6ac
|
19
ftp/ftpproxy/files/patch-ftp.c
Normal file
19
ftp/ftpproxy/files/patch-ftp.c
Normal file
|
@ -0,0 +1,19 @@
|
|||
*** ftp.orig Wed May 16 09:53:13 2001
|
||||
--- ftp.c Wed May 16 09:54:08 2001
|
||||
***************
|
||||
*** 30,36 ****
|
||||
|
||||
#include <time.h>
|
||||
#include <signal.h>
|
||||
! #include <wait.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
--- 30,36 ----
|
||||
|
||||
#include <time.h>
|
||||
#include <signal.h>
|
||||
! #include <sys/wait.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
19
ftp/ftpproxy/files/patch-main.c
Normal file
19
ftp/ftpproxy/files/patch-main.c
Normal file
|
@ -0,0 +1,19 @@
|
|||
*** main.orig Wed May 16 09:50:37 2001
|
||||
--- main.c Wed May 16 09:50:57 2001
|
||||
***************
|
||||
*** 29,35 ****
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <signal.h>
|
||||
! #include <wait.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
--- 29,35 ----
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <signal.h>
|
||||
! #include <sys/wait.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
1
ftp/ftpproxy/pkg-comment
Normal file
1
ftp/ftpproxy/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A ftp proxy
|
12
ftp/ftpproxy/pkg-descr
Normal file
12
ftp/ftpproxy/pkg-descr
Normal file
|
@ -0,0 +1,12 @@
|
|||
ftp.proxy is an application level gateway for FTP.
|
||||
It sits between a client and a server forwarding command and data streams
|
||||
supporting a subset of the file transfer protocol as described in RFC 959.
|
||||
|
||||
Beside this basic function which makes the program useful on firewall
|
||||
or masqueraders it offers fixing the FTP server (e.g. for connections
|
||||
into a protected LAN) and proxy authentication.
|
||||
|
||||
WWW: http://www.quietsche-entchen.de/software/ftp.proxy.html
|
||||
|
||||
-Philippe
|
||||
philippe@le-berre.com
|
1
ftp/ftpproxy/pkg-list
Normal file
1
ftp/ftpproxy/pkg-list
Normal file
|
@ -0,0 +1 @@
|
|||
sbin/ftp.proxy
|
1
ftp/ftpproxy/pkg-plist
Normal file
1
ftp/ftpproxy/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
|||
sbin/ftp.proxy
|
Loading…
Add table
Reference in a new issue