summaryrefslogtreecommitdiff
path: root/ftp/jftpgw
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>2001-11-23 23:36:53 +0000
committerStefan Eßer <se@FreeBSD.org>2001-11-23 23:36:53 +0000
commit099704c19dcc9e4fbc4bf9e7b2fdda8b83cc4c9f (patch)
tree67dea71850f07e1913dc4127d8a3e15efb914e78 /ftp/jftpgw
parentcorrect MASTER_SITE_SUBDIR (diff)
Upgrade to version 0.0.13g.
Notes
Notes: svn path=/head/; revision=50437
Diffstat (limited to 'ftp/jftpgw')
-rw-r--r--ftp/jftpgw/Makefile4
-rw-r--r--ftp/jftpgw/distinfo4
-rw-r--r--ftp/jftpgw/files/patch-0263
-rw-r--r--ftp/jftpgw/files/patch-0323
4 files changed, 4 insertions, 90 deletions
diff --git a/ftp/jftpgw/Makefile b/ftp/jftpgw/Makefile
index 65d252c14255..523f16ca14fd 100644
--- a/ftp/jftpgw/Makefile
+++ b/ftp/jftpgw/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= jftpgw
-PORTVERSION= 0.0.13a
+PORTVERSION= 0.0.13g
CATEGORIES= ftp
MASTER_SITES= http://www.mcknight.de/jftpgw/
@@ -16,7 +16,7 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-confpath=${PREFIX}/etc \
--with-logpath=/var/log \
--enable-crypt \
-# --enable-sftp
+ --enable-sftp
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/jftpgw ${PREFIX}/sbin/
diff --git a/ftp/jftpgw/distinfo b/ftp/jftpgw/distinfo
index 6fe78607f21a..341087398ce5 100644
--- a/ftp/jftpgw/distinfo
+++ b/ftp/jftpgw/distinfo
@@ -1,2 +1,2 @@
-MD5 (jftpgw-0.0.13a.tar.gz) = 302a5879a76ccd6c82a197f2e625a6c3
-SIZE (jftpgw-0.0.13a.tar.gz) = 223858
+MD5 (jftpgw-0.0.13g.tar.gz) = d7ebf061328eac9e4fc557b45a4b0d60
+SIZE (jftpgw-0.0.13g.tar.gz) = 207369
diff --git a/ftp/jftpgw/files/patch-02 b/ftp/jftpgw/files/patch-02
deleted file mode 100644
index 04ca8a3e3eec..000000000000
--- a/ftp/jftpgw/files/patch-02
+++ /dev/null
@@ -1,63 +0,0 @@
---- jftpgw.conf.sample.in~ Thu Apr 26 11:11:56 2001
-+++ jftpgw.conf.sample.in Sun Jul 15 14:48:03 2001
-@@ -1,7 +1,15 @@
--# - This is the configuration file for jftpgw @JFTPGW_VERSION@ -
-+# - This is the configuration file for jftpgw 0.0.13a -
- # - -
- # - Lines starting with a ``#'' sign and empty lines will be ignored -
-
-+####
-+#
-+# New sample config file constructed from 0.0.12pre plus information
-+# from the web site by Stefan Esser <se@freebsd.org>
-+#
-+####
-+
-+<global>
-
- #-Section listen
- # Bind to the address(es) specified below
-@@ -502,3 +510,43 @@
-
-
- # - End of configuration file -
-+
-+</global>
-+
-+
-+# nobody should connect, except for host1 and host2
-+<from 0.0.0.0/0 exclude host1 host2>
-+ access deny
-+</from>
-+
-+# host1, host2.domain.net and 192.168.181.234 are allowed to connect to some
-+# other host on port 21.
-+<from host1 host2.domain.net 192.168.181.234>
-+ <port 21>
-+ access allow
-+ </port>
-+</from>
-+
-+# *.domain.net may not connect, this paragraph is not valid for host1 and
-+# host2. If the connection comes from .slowdomain.domain.net moreover, limit
-+# the connection to 4k/s.
-+<from .domain.net exclude host1 host2>
-+ access deny
-+ <from .slowdomain.domain.net>
-+ limit 4
-+ </from>
-+</from>
-+
-+# The host on which jftpgw runs may not connect to the proxy itself. Thus,
-+# the proxy may not loop by calling itself again
-+<to localhost 0.0.0.0 serverhost.domain.net>
-+ <port 2370>
-+ access deny
-+ </port>
-+</to>
-+
-+# This paragraph is valid for all connections again
-+<global>
-+ defaultmode passive
-+</global>
-+
diff --git a/ftp/jftpgw/files/patch-03 b/ftp/jftpgw/files/patch-03
deleted file mode 100644
index abd557c8aa3b..000000000000
--- a/ftp/jftpgw/files/patch-03
+++ /dev/null
@@ -1,23 +0,0 @@
-*** config.c~ Sat Jun 30 16:34:42 2001
---- config.c Tue Jul 17 16:17:24 2001
-***************
-*** 468,476 ****
- }
- while (hl) {
- if (hl->next == entry) {
-- hl->next = hl->next->next;
- delete = hl->next;
- delete->next = (struct hostent_list*) 0;
- hostent_destroy(delete);
- return;
- } else {
---- 468,476 ----
- }
- while (hl) {
- if (hl->next == entry) {
- delete = hl->next;
- delete->next = (struct hostent_list*) 0;
-+ hl->next = hl->next->next;
- hostent_destroy(delete);
- return;
- } else {