diff options
-rw-r--r-- | ftp/yale-tftpd/Makefile | 4 | ||||
-rw-r--r-- | ftp/yale-tftpd/distinfo | 2 | ||||
-rw-r--r-- | ftp/yale-tftpd/files/patch-aa | 81 |
3 files changed, 9 insertions, 78 deletions
diff --git a/ftp/yale-tftpd/Makefile b/ftp/yale-tftpd/Makefile index 374c6f670fc..295b94a2697 100644 --- a/ftp/yale-tftpd/Makefile +++ b/ftp/yale-tftpd/Makefile @@ -1,10 +1,10 @@ # New ports collection makefile for: yale-tftpd -# Version required: Oct 4, 1994 +# Version required: 3.0 # Date created: Oct 8, 1994 # Whom: pst # +DISTNAME= yale-tftpd-3.0 MASTER_SITES= ftp://ftp.cisco.com/pub/ -DISTNAME= yale-tftpd NO_WRKSUBDIR= .include <bsd.port.mk> diff --git a/ftp/yale-tftpd/distinfo b/ftp/yale-tftpd/distinfo index f713ecb2c41..7f1bbd9ec82 100644 --- a/ftp/yale-tftpd/distinfo +++ b/ftp/yale-tftpd/distinfo @@ -1 +1 @@ -MD5 (yale-tftpd.tar.gz) = 7177b2d89b6f5d47eeb8fb33e0e1db32 +MD5 (yale-tftpd-3.0.tar.gz) = bf07389a8ecae41c5428719a6146984a diff --git a/ftp/yale-tftpd/files/patch-aa b/ftp/yale-tftpd/files/patch-aa index ee4abf342cc..4e080f658a3 100644 --- a/ftp/yale-tftpd/files/patch-aa +++ b/ftp/yale-tftpd/files/patch-aa @@ -1,18 +1,16 @@ -*** Makefile Tue Oct 4 22:47:03 1994 ---- Makefile Thu Oct 27 14:46:17 1994 +*** Makefile Thu Oct 6 17:41:10 1994 +--- Makefile Mon Mar 20 12:39:08 1995 *************** -*** 4,13 **** +*** 4,11 **** PROG= tftpd MAN8= tftpd.8 ! ETCDIR?=${DESTDIR}/etc ! BINDIR?=${DESTDIR}/usr/libexec -! CFLAGS+=-DCONFIGFILE='"${ETCDIR}/tftpd.conf"' + CFLAGS+=-DCONFIGFILE='"${ETCDIR}/tftpd.conf"' - classes/libclasses.a: - (cd classes ; make) ---- 4,14 ---- +--- 4,12 ---- PROG= tftpd MAN8= tftpd.8 @@ -20,72 +18,5 @@ ! BINDIR=${DESTDIR}/usr/local/libexec ! MANDIR=${DESTDIR}/usr/local/man/man -! CFLAGS+=-DCONFIGFILE='"${ETCDIR}/tftpd.conf"' -DHAVE_STRERROR + CFLAGS+=-DCONFIGFILE='"${ETCDIR}/tftpd.conf"' - classes/libclasses.a: - (cd classes ; make) -*** classes/Makefile Tue Oct 4 22:33:02 1994 ---- classes/Makefile Thu Oct 27 14:43:57 1994 -*************** -*** 6,9 **** ---- 6,12 ---- - NOPIC= true - NOPROFILE=true - -+ install: -+ @echo not installing library -+ - .include <bsd.lib.mk> -*** tftpyale.c Tue Oct 4 22:20:49 1994 ---- tftpyale.c Thu Oct 27 14:37:03 1994 -*************** -*** 232,238 **** - if ((configf = fopen (fileName, "r")) == NULL) { - syslog (LOG_ERR, - "Cannot open configFile '%s'; reason = %s", -! fileName, sys_errlist[errno]); - return 0; - } - } ---- 232,238 ---- - if ((configf = fopen (fileName, "r")) == NULL) { - syslog (LOG_ERR, - "Cannot open configFile '%s'; reason = %s", -! fileName, strerror(errno)); - return 0; - } - } -*************** -*** 278,284 **** - if (tftpDebugLevel > 0) { - syslog (LOG_DEBUG, - "chdir fails; '%s'", -! sys_errlist[errno]); - } - } - else ---- 278,284 ---- - if (tftpDebugLevel > 0) { - syslog (LOG_DEBUG, - "chdir fails; '%s'", -! strerror(errno)); - } - } - else -*************** -*** 290,296 **** - if (cargc == 2) { - if (access(cargv[1], 0) != 0) - syslog(LOG_DEBUG, "directory '%s': %s", -! cargv[1], sys_errlist[errno]); - else - tftpRootDirectory = newString(cargv[1]); - } ---- 290,296 ---- - if (cargc == 2) { - if (access(cargv[1], 0) != 0) - syslog(LOG_DEBUG, "directory '%s': %s", -! cargv[1], strerror(errno)); - else - tftpRootDirectory = newString(cargv[1]); - } |