diff options
Diffstat (limited to 'security/pidentd')
| -rw-r--r-- | security/pidentd/Makefile | 19 | ||||
| -rw-r--r-- | security/pidentd/distinfo | 1 | ||||
| -rw-r--r-- | security/pidentd/files/patch-ab | 57 | ||||
| -rw-r--r-- | security/pidentd/files/patch-ac | 124 | ||||
| -rw-r--r-- | security/pidentd/pkg-comment | 1 | ||||
| -rw-r--r-- | security/pidentd/pkg-descr | 10 | ||||
| -rw-r--r-- | security/pidentd/pkg-plist | 2 | ||||
| -rw-r--r-- | security/pidentd/scripts/configure | 7 |
8 files changed, 0 insertions, 221 deletions
diff --git a/security/pidentd/Makefile b/security/pidentd/Makefile deleted file mode 100644 index 51934ff3fa14..000000000000 --- a/security/pidentd/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# New ports collection makefile for: pidentd -# Version required: 2.5.1 -# Date created: 19 Oct 1994 -# Whom: torstenb -# -# $Id: Makefile,v 1.5 1995/04/15 05:41:43 asami Exp $ -# - -DISTNAME= pidentd-2.5.1 -CATEGORIES+= networking -MASTER_SITES= ftp://ftp.lysator.liu.se/pub/ident/servers/ \ - ftp://ftp.fu-berlin.de/unix/security/ident/servers/ - -MAINTAINER= torstenb@FreeBSD.ORG - -post-install: - gzip -9nf ${PREFIX}/man/man8/identd.8 - -.include <bsd.port.mk> diff --git a/security/pidentd/distinfo b/security/pidentd/distinfo deleted file mode 100644 index 408366e3f1b8..000000000000 --- a/security/pidentd/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (pidentd-2.5.1.tar.gz) = 400667ce64745ee35d8e13896b0735d4 diff --git a/security/pidentd/files/patch-ab b/security/pidentd/files/patch-ab deleted file mode 100644 index a24685127c64..000000000000 --- a/security/pidentd/files/patch-ab +++ /dev/null @@ -1,57 +0,0 @@ -*** Makefile.orig Thu Oct 20 17:08:27 1994 ---- Makefile Wed Nov 9 21:16:56 1994 -*************** -*** 14,20 **** - # on the command line (like "make DESTROOT=/usr/wheel sunos4") - # - MAKE=make -! DESTROOT=/usr/local - DESTDIR=$(DESTROOT)/sbin - MANROOT=$(DESTROOT)/man - MANDIR=$(MANROOT)/man8 ---- 14,20 ---- - # on the command line (like "make DESTROOT=/usr/wheel sunos4") - # - MAKE=make -! DESTROOT=${PREFIX} - DESTDIR=$(DESTROOT)/sbin - MANROOT=$(DESTROOT)/man - MANDIR=$(MANROOT)/man8 -*************** -*** 43,49 **** - - CFLAGS=-O - -! all: - @echo "Please specify the type of system you wish to build for." - @echo "Valid systems are:" - @echo "" ---- 43,51 ---- - - CFLAGS=-O - -! all: freebsd -! -! fake: - @echo "Please specify the type of system you wish to build for." - @echo "Valid systems are:" - @echo "" -*** src/Makefile.ORIG Fri Oct 14 17:17:36 1994 ---- src/Makefile Sat Mar 4 22:50:09 1995 -*************** -*** 11,17 **** - - foo: - @echo 'Nono! Don't type "make" in this directory, use the one above!' -! - in.identd: identd.o $(COBJS) idecrypt itest - $(CC) $(LDFLAGS) -o in.identd identd.o $(COBJS) $(LIBS) - @mv in.identd .. ---- 11,17 ---- - - foo: - @echo 'Nono! Don't type "make" in this directory, use the one above!' -! - in.identd: identd.o $(COBJS) idecrypt itest - $(CC) $(LDFLAGS) -o in.identd identd.o $(COBJS) $(LIBS) - @mv in.identd .. diff --git a/security/pidentd/files/patch-ac b/security/pidentd/files/patch-ac deleted file mode 100644 index 77a420d89621..000000000000 --- a/security/pidentd/files/patch-ac +++ /dev/null @@ -1,124 +0,0 @@ -*** src/kernel/freebsd.c.orig Fri Oct 21 01:07:37 1994 ---- src/kernel/freebsd.c Sun Apr 16 21:21:02 1995 -*************** -*** 53,58 **** ---- 53,61 ---- - #include "identd.h" - #include "error.h" - -+ #ifdef INPLOOKUP_SETLOCAL -+ #define _HAVE_OLD_INPCB -+ #endif - - extern void *calloc(); - extern void *malloc(); -*************** -*** 76,82 **** ---- 79,89 ---- - - static int nfile; - -+ #ifdef _HAVE_OLD_INPCB - static struct inpcb tcb; -+ #else -+ static struct inpcbhead tcb; -+ #endif - - int k_open() - { -*************** -*** 127,148 **** - ** Returns NULL if no match. - */ - static struct socket * - getlist(pcbp, faddr, fport, laddr, lport) - struct inpcb *pcbp; - struct in_addr *faddr; - int fport; - struct in_addr *laddr; - int lport; - { - struct inpcb *head; - - if (!pcbp) - return NULL; - -! - head = pcbp->inp_prev; - do - { - if ( pcbp->inp_faddr.s_addr == faddr->s_addr && - pcbp->inp_laddr.s_addr == laddr->s_addr && - pcbp->inp_fport == fport && ---- 134,173 ---- - ** Returns NULL if no match. - */ - static struct socket * -+ #ifdef _HAVE_OLD_INPCB - getlist(pcbp, faddr, fport, laddr, lport) - struct inpcb *pcbp; -+ #else -+ getlist(pcbhead, faddr, fport, laddr, lport) -+ struct inpcbhead *pcbhead; -+ #endif - struct in_addr *faddr; - int fport; - struct in_addr *laddr; - int lport; - { -+ #ifdef _HAVE_OLD_INPCB - struct inpcb *head; -+ #else -+ struct inpcb *head, pcbp; -+ #endif - -+ #ifdef _HAVE_OLD_INPCB - if (!pcbp) - return NULL; -+ #else -+ head = pcbhead->lh_first; -+ if (!head) -+ return NULL; -+ #endif -+ - -! #ifdef _HAVE_OLD_INPCB - head = pcbp->inp_prev; -+ #endif - do - { -+ #ifdef _HAVE_OLD_INPCB - if ( pcbp->inp_faddr.s_addr == faddr->s_addr && - pcbp->inp_laddr.s_addr == laddr->s_addr && - pcbp->inp_fport == fport && -*************** -*** 153,158 **** ---- 178,193 ---- - pcbp, - sizeof(struct inpcb), - "tcblist")); -+ #else -+ if (!getbuf((long) head, &pcbp, sizeof(struct inpcb), "tcblist")) -+ break; -+ if (pcbp.inp_faddr.s_addr == faddr->s_addr && -+ pcbp.inp_fport == fport && -+ pcbp.inp_lport == lport ) -+ return(pcbp.inp_socket); -+ head = pcbp.inp_list.le_next; -+ } while (head != NULL); -+ #endif - - return NULL; - } -*************** -*** 186,192 **** ---- 221,229 ---- - if (!getbuf(nl[N_TCB].n_value, &tcb, sizeof(tcb), "tcb")) - return -1; - -+ #ifdef _HAVE_OLD_INPCB - tcb.inp_prev = (struct inpcb *) nl[N_TCB].n_value; -+ #endif - sockp = getlist(&tcb, faddr, fport, laddr, lport); - - if (!sockp) diff --git a/security/pidentd/pkg-comment b/security/pidentd/pkg-comment deleted file mode 100644 index f6a48070af15..000000000000 --- a/security/pidentd/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -pidentd - a RFC1413 identification server, version 2.5.1 diff --git a/security/pidentd/pkg-descr b/security/pidentd/pkg-descr deleted file mode 100644 index edfa47f785d0..000000000000 --- a/security/pidentd/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -This is a program that implements the RFC1413 identification server. It -was very much inspired by Dan Bernstein's original 'authd' (but unlike -that program doesn't use 'netstat' to get some of the information) It -uses the kernel information directly. (And is due to that fact a lot -faster). Dan has now written another version of the 'authd' daemon that -uses his 'kstuff' to read the kernel information. Unlike that daemon, -this will use only normally available kernel access functions (and is due -to that more limited in the different machines it support). Please note -that this daemon used to be called pauthd but has changed name to better -reflect what it does (and to conform to the new RFC). diff --git a/security/pidentd/pkg-plist b/security/pidentd/pkg-plist deleted file mode 100644 index 60bbf8f15966..000000000000 --- a/security/pidentd/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -sbin/in.identd -man/man8/identd.8.gz diff --git a/security/pidentd/scripts/configure b/security/pidentd/scripts/configure deleted file mode 100644 index 9a50005f75f2..000000000000 --- a/security/pidentd/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -# -# $Id: configure,v 1.1.1.1 1994/10/23 01:27:56 torstenb Exp $ -# - -mv ${WRKSRC}/src/paths.h ${WRKSRC}/src/paths.h.bak -sed <${WRKSRC}/src/paths.h.bak >${WRKSRC}/src/paths.h s+!!PREFIX!!+$PREFIX+g |
