diff options
Diffstat (limited to 'net/pcnfsd')
-rw-r--r-- | net/pcnfsd/Makefile | 15 | ||||
-rw-r--r-- | net/pcnfsd/distinfo | 1 | ||||
-rw-r--r-- | net/pcnfsd/files/patch-aa | 229 | ||||
-rw-r--r-- | net/pcnfsd/files/patch-ab | 26 | ||||
-rw-r--r-- | net/pcnfsd/files/patch-ac | 103 | ||||
-rw-r--r-- | net/pcnfsd/pkg-comment | 1 | ||||
-rw-r--r-- | net/pcnfsd/pkg-descr | 3 | ||||
-rw-r--r-- | net/pcnfsd/pkg-plist | 3 | ||||
-rw-r--r-- | net/pcnfsd/scripts/configure | 9 |
9 files changed, 0 insertions, 390 deletions
diff --git a/net/pcnfsd/Makefile b/net/pcnfsd/Makefile deleted file mode 100644 index bd5bab7105ce..000000000000 --- a/net/pcnfsd/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# New ports collection makefile for: pcnfsd -# Version required: 93.02.16 -# Date created: Oct 6, 1994 -# Whom: pst -# - -DISTNAME= pcnfsd.93.02.16 -PKGNAME= pcnfsd-93.02.16 -CATEGORIES+= networking -MASTER_SITES= ftp://bcm.tmc.edu/pcnfs/ -EXTRACT_SUFX= .tar.Z - -NO_WRKSUBDIR= - -.include <bsd.port.mk> diff --git a/net/pcnfsd/distinfo b/net/pcnfsd/distinfo deleted file mode 100644 index 5a56138f855b..000000000000 --- a/net/pcnfsd/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (pcnfsd.93.02.16.tar.Z) = 29b633efd29596baf160010bd5104dd8 diff --git a/net/pcnfsd/files/patch-aa b/net/pcnfsd/files/patch-aa deleted file mode 100644 index 64d8aac3d711..000000000000 --- a/net/pcnfsd/files/patch-aa +++ /dev/null @@ -1,229 +0,0 @@ -*** common.h Sat Feb 27 08:48:17 1993 ---- common.h Thu Oct 6 14:35:00 1994 -*************** -*** 60,65 **** ---- 60,69 ---- - **===================================================================== - */ - -+ #ifdef HAVE_PARAM_H -+ #include <sys/param.h> -+ #endif -+ - /* - **--------------------------------------------------------------------- - ** Define the following symbol to enable the use of a -*************** -*** 268,281 **** - #define SUNOS_403C - #endif - -! #ifdef OSVER_BSD386 - #define BSD_STYLE_PRINT - #define BSD_STYLE_PR_LIST - #define BSD_STYLE_QUEUE - #define BSD_STYLE_CANCEL - #define BSD_STYLE_STATUS - #define BSD_STYLE_MONITOR -! #define BSD386 - #endif - - #ifdef OSVER_ULTRIX ---- 272,285 ---- - #define SUNOS_403C - #endif - -! #if (defined(BSD) && (BSD >= 199103)) - #define BSD_STYLE_PRINT - #define BSD_STYLE_PR_LIST - #define BSD_STYLE_QUEUE - #define BSD_STYLE_CANCEL - #define BSD_STYLE_STATUS - #define BSD_STYLE_MONITOR -! #define GETUSERSHELL - #endif - - #ifdef OSVER_ULTRIX -*** pcnfsd_misc.c Sat Feb 27 08:48:14 1993 ---- pcnfsd_misc.c Thu Oct 6 14:32:17 1994 -*************** -*** 480,486 **** - #else SVR4 - - #include <utmp.h> -! #define WTMP_PATH "/usr/adm/wtmp" - - void - wlogin(name) ---- 480,488 ---- - #else SVR4 - - #include <utmp.h> -! #ifndef _PATH_WTMP -! #define _PATH_WTMP "/usr/adm/wtmp" -! #endif - - void - wlogin(name) -*************** -*** 499,505 **** - (void) strncpy(ut.ut_name,name,sizeof ut.ut_name); - ut.ut_time = time( (time_t *) 0); - (void) strncpy(ut.ut_host, getcallername(), sizeof ut.ut_host); -! if ((fd = open(WTMP_PATH, O_WRONLY|O_APPEND, 0)) >= 0) { - (void)write(fd, (char *)&ut, sizeof(ut)); - (void)close(fd); - } ---- 501,507 ---- - (void) strncpy(ut.ut_name,name,sizeof ut.ut_name); - ut.ut_time = time( (time_t *) 0); - (void) strncpy(ut.ut_host, getcallername(), sizeof ut.ut_host); -! if ((fd = open(_PATH_WTMP, O_WRONLY|O_APPEND, 0)) >= 0) { - (void)write(fd, (char *)&ut, sizeof(ut)); - (void)close(fd); - } -*** pcnfsd_print.c Fri Jan 29 23:52:04 1993 ---- pcnfsd_print.c Thu Apr 27 12:43:01 1995 -*************** -*** 395,407 **** - */ - if(!xcmd) { - #ifdef BSD_STYLE_PRINT -! #ifdef BSD386 - sprintf(cmdbuf, "/usr/bin/lpr -P%s -C%s -J%s %s", - pr, system, user, new_pathname); - #else - sprintf(cmdbuf, "/usr/ucb/lpr -P%s -C%s -J%s %s", - pr, system, user, new_pathname); -! #endif BSD386 - #endif BSD_STYLE_PRINT - #ifdef SVR4_STYLE_PRINT - sprintf(cmdbuf, "/usr/bin/lp -c -d%s %s", ---- 395,407 ---- - */ - if(!xcmd) { - #ifdef BSD_STYLE_PRINT -! #if (defined(BSD) && (BSD >= 199103)) - sprintf(cmdbuf, "/usr/bin/lpr -P%s -C%s -J%s %s", - pr, system, user, new_pathname); - #else - sprintf(cmdbuf, "/usr/ucb/lpr -P%s -C%s -J%s %s", - pr, system, user, new_pathname); -! #endif - #endif BSD_STYLE_PRINT - #ifdef SVR4_STYLE_PRINT - sprintf(cmdbuf, "/usr/bin/lp -c -d%s %s", -*************** -*** 686,696 **** - char *cp; - int saw_system; - -! #ifdef BSD386 - p = popen("/usr/sbin/lpc status", "r"); - #else - p = popen("/usr/etc/lpc status", "r"); -! #endif BSD386 - if(p == NULL) { - printers = list_virtual_printers(); - return(1); ---- 686,696 ---- - char *cp; - int saw_system; - -! #if (defined(BSD) && (BSD >= 199103)) - p = popen("/usr/sbin/lpc status", "r"); - #else - p = popen("/usr/etc/lpc status", "r"); -! #endif - if(p == NULL) { - printers = list_virtual_printers(); - return(1); -*************** -*** 975,981 **** ---- 975,985 ---- - if(pn == NULL || suspicious(pn) || !valid_pr(pn)) - return(PI_RES_NO_SUCH_PRINTER); - -+ #if (defined(BSD) && (BSD >= 199103)) -+ sprintf(buff, "/usr/bin/lpq -P%s", pn); -+ #else - sprintf(buff, "/usr/ucb/lpq -P%s", pn); -+ #endif - - p = su_popen(user, buff, MAXTIME_FOR_QUEUE); - if(p == NULL) { -*************** -*** 1234,1244 **** - sprintf(pname, "%s:", pn); - n = strlen(pname); - -! #ifdef BSD386 - sprintf(cmd, "/usr/sbin/lpc status %s", pn); - #else - sprintf(cmd, "/usr/etc/lpc status %s", pn); -! #endif BSD386 - p = popen(cmd, "r"); - if(p == NULL) { - msg_out("rpc.pcnfsd: unable to popen() lpc status"); ---- 1238,1248 ---- - sprintf(pname, "%s:", pn); - n = strlen(pname); - -! #if (defined(BSD) && (BSD >= 199103)) - sprintf(cmd, "/usr/sbin/lpc status %s", pn); - #else - sprintf(cmd, "/usr/etc/lpc status %s", pn); -! #endif - p = popen(cmd, "r"); - if(p == NULL) { - msg_out("rpc.pcnfsd: unable to popen() lpc status"); -*************** -*** 1404,1414 **** - if(suspicious(id)) - return(PC_RES_NO_SUCH_JOB); - -! #ifdef BSD386 - sprintf(cmdbuf, "/usr/bin/lprm -P%s %s", pr, id); - #else - sprintf(cmdbuf, "/usr/ucb/lprm -P%s %s", pr, id); -! #endif BSD386 - if ((fd = su_popen(user, cmdbuf, MAXTIME_FOR_CANCEL)) == NULL) { - msg_out("rpc.pcnfsd: su_popen failed"); - return(PC_RES_FAIL); ---- 1408,1418 ---- - if(suspicious(id)) - return(PC_RES_NO_SUCH_JOB); - -! #if (defined(BSD) && (BSD >= 199103)) - sprintf(cmdbuf, "/usr/bin/lprm -P%s %s", pr, id); - #else - sprintf(cmdbuf, "/usr/ucb/lprm -P%s %s", pr, id); -! #endif - if ((fd = su_popen(user, cmdbuf, MAXTIME_FOR_CANCEL)) == NULL) { - msg_out("rpc.pcnfsd: su_popen failed"); - return(PC_RES_FAIL); -*************** -*** 1487,1497 **** - char default_cmd[] = "lp $FILE"; - #endif SVR4_STYLE_PRINT - #ifdef BSD_STYLE_PRINT -! #ifdef BSD386 - char default_cmd[] = "/usr/bin/lpr $FILE"; - #else - char default_cmd[] = "/usr/ucb/lpr $FILE"; -! #endif BSD386 - #endif BSD_STYLE_PRINT - - void ---- 1491,1501 ---- - char default_cmd[] = "lp $FILE"; - #endif SVR4_STYLE_PRINT - #ifdef BSD_STYLE_PRINT -! #if (defined(BSD) && (BSD >= 199103)) - char default_cmd[] = "/usr/bin/lpr $FILE"; - #else - char default_cmd[] = "/usr/ucb/lpr $FILE"; -! #endif - #endif BSD_STYLE_PRINT - - void diff --git a/net/pcnfsd/files/patch-ab b/net/pcnfsd/files/patch-ab deleted file mode 100644 index 95538572a242..000000000000 --- a/net/pcnfsd/files/patch-ab +++ /dev/null @@ -1,26 +0,0 @@ -*** /dev/null Thu Oct 6 16:22:04 1994 ---- Makefile.44bsd Thu Oct 6 17:18:19 1994 -*************** -*** 0 **** ---- 1,21 ---- -+ # -+ # @(#)Makefile -+ # Makefile for rpc.pcnfsd for BSD/386 or similar -+ # $Id: patch-ab,v 1.1.1.1 1994/10/07 00:23:56 pst Exp $ -+ # -+ -+ PROG= rpc.pcnfsd -+ SRCS= pcnfsd_svc.c pcnfsd_xdr.c pcnfsd_v1.c pcnfsd_v2.c pcnfsd_misc.c \ -+ pcnfsd_cache.c pcnfsd_print.c -+ MAN8= pcnfsd.8 -+ -+ CFLAGS+=-DHAVE_PARAM_H -+ -+ DPADD+= ${LIBCRYPT} -+ LDADD+= -lcrypt -+ -+ beforeinstall: -+ -mkdir -p ${BINDIR} -+ -mkdir -p ${PRDIR} -+ -+ .include <bsd.prog.mk> diff --git a/net/pcnfsd/files/patch-ac b/net/pcnfsd/files/patch-ac deleted file mode 100644 index 061fbda21c5d..000000000000 --- a/net/pcnfsd/files/patch-ac +++ /dev/null @@ -1,103 +0,0 @@ -*** pcnfsd.8c Sat Feb 27 08:48:29 1993 ---- pcnfsd.8c Thu Oct 6 16:04:23 1994 -*************** -*** 1,5 **** -! .\" @(#) @(#)pcnfsd.8c 1.3 11/3/92; -! .TH PCNFSD 8C "25 April 1991" - .SH NAME - pcnfsd \- (PC)NFS authentication and print request server - .SH SYNOPSIS ---- 1,5 ---- -! .\" @(#) @(#)pcnfsd.8 1.3 11/3/92; -! .TH PCNFSD 8 "25 April 1991" - .SH NAME - pcnfsd \- (PC)NFS authentication and print request server - .SH SYNOPSIS -*************** -*** 48,58 **** - .B PCNFSD2_AUTH - request\**, it will "log in" the user by validating the username and - password and returning the corresponding uid, gids, home directory, -! and umask. If -! .B pcnfsd -! was built with the -! .B WTMP -! compile-time option, it will also append a record to the - .BR wtmp (5) - data base. If you do not wish to record PC "logins" in this way, - you should add a line of the form ---- 48,54 ---- - .B PCNFSD2_AUTH - request\**, it will "log in" the user by validating the username and - password and returning the corresponding uid, gids, home directory, -! and umask, it will also append a record to the - .BR wtmp (5) - data base. If you do not wish to record PC "logins" in this way, - you should add a line of the form -*************** -*** 105,111 **** - .B pcnfsd - creates a subdirectory for each of its clients: the parent - directory is normally -! .B /usr/spool/pcnfs - and the subdirectory is the hostname of the client system. - If you wish to use a different parent directory, you should add a - line of the form ---- 101,107 ---- - .B pcnfsd - creates a subdirectory for each of its clients: the parent - directory is normally -! .B /var/spool/pcnfs - and the subdirectory is the hostname of the client system. - If you wish to use a different parent directory, you should add a - line of the form -*************** -*** 134,140 **** - must be run as root. - .LP - Every print request from the client includes the name of the printer -! which is to be used. In SunOS, this name corresponds to a printer - definition in the - .BR /etc/printcap (5) - database. If you wish to define a non-standard way of processing ---- 130,136 ---- - must be run as root. - .LP - Every print request from the client includes the name of the printer -! which is to be used. This name corresponds to a printer - definition in the - .BR /etc/printcap (5) - database. If you wish to define a non-standard way of processing -*************** -*** 230,238 **** - its list of valid printers. To do this, it checks the modification - time of - .B /etc/printcap -! for BSD-style systems or -! .B /etc/lp/printers -! for SVR4-based systems. However, it does not monitor the file - .B /etc/pcnfsd.conf - for updates; if you change this file, it is still necessary to - kill and restart ---- 226,232 ---- - its list of valid printers. To do this, it checks the modification - time of - .B /etc/printcap -! However, it does not monitor the file - .B /etc/pcnfsd.conf - for updates; if you change this file, it is still necessary to - kill and restart -*************** -*** 244,249 **** - .B /etc/pcnfsd.conf - .PD - .SH "SEE ALSO" -! .BR lp (1) -! .BR lpstat (1) - .BR lpq (1) ---- 238,242 ---- - .B /etc/pcnfsd.conf - .PD - .SH "SEE ALSO" -! .BR lpr (1) - .BR lpq (1) diff --git a/net/pcnfsd/pkg-comment b/net/pcnfsd/pkg-comment deleted file mode 100644 index 47e9de6632b5..000000000000 --- a/net/pcnfsd/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -pcnfsd(8) - Sun PC NFS authentication and printing server as of 93.02.16 diff --git a/net/pcnfsd/pkg-descr b/net/pcnfsd/pkg-descr deleted file mode 100644 index 7d852a335043..000000000000 --- a/net/pcnfsd/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -pcnfsd(8) is an authentication and support server to be used by NFS clients that -don't have their own authentication system (e.g. DOS PC's, Macintoshes, -fileserver translators...) diff --git a/net/pcnfsd/pkg-plist b/net/pcnfsd/pkg-plist deleted file mode 100644 index c82b8e3eee35..000000000000 --- a/net/pcnfsd/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -@cwd /usr/local -libexec/rpc.pcnfsd -man/man8/pcnfsd.8.gz diff --git a/net/pcnfsd/scripts/configure b/net/pcnfsd/scripts/configure deleted file mode 100644 index 4bcb5f329561..000000000000 --- a/net/pcnfsd/scripts/configure +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -# -# Configure pcnfsd for FreeBSD use -# -cd $WRKSRC -rm -f rpc.pcnfsd -mv -f Makefile Makefile.DIST -mv -f Makefile.44bsd Makefile -mv -f pcnfsd.8c pcnfsd.8 |