aboutsummaryrefslogtreecommitdiff
path: root/ftp/yale-tftpd
diff options
context:
space:
mode:
authorPaul Traina <pst@FreeBSD.org>1995-03-20 20:54:47 +0000
committerPaul Traina <pst@FreeBSD.org>1995-03-20 20:54:47 +0000
commit58959c4f01e8f4a020db5f37e2224f1d6aa36d12 (patch)
treebcbbfaaf346fa4b08646f59424500984481f55b4 /ftp/yale-tftpd
parent57e9a5602c7087f839fba0ba2665319514f87e8f (diff)
downloadports-58959c4f01e8f4a020db5f37e2224f1d6aa36d12.tar.gz
ports-58959c4f01e8f4a020db5f37e2224f1d6aa36d12.zip
Notes
Diffstat (limited to 'ftp/yale-tftpd')
-rw-r--r--ftp/yale-tftpd/Makefile4
-rw-r--r--ftp/yale-tftpd/distinfo2
-rw-r--r--ftp/yale-tftpd/files/patch-aa81
3 files changed, 9 insertions, 78 deletions
diff --git a/ftp/yale-tftpd/Makefile b/ftp/yale-tftpd/Makefile
index 374c6f670fcf..295b94a26979 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 f713ecb2c41a..7f1bbd9ec82f 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 ee4abf342cc5..4e080f658a35 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]);
- }