diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-05-01 20:14:20 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-05-01 20:14:20 +0000 |
| commit | 35cd057a462e6fff96ac2b4a8d8146e43e8304f1 (patch) | |
| tree | 9e10a27f83ade2a564c0cba281647f5c266f3f45 /security/pam_pop3 | |
| parent | Remove unmaintained expired ports from sysutils (diff) | |
Remove unmaintained expired ports from security
2011-05-01 security/aafid2: Upstream disapear and distfile is no more available
2011-05-01 security/bjorb: Upstream disapear and distfile is no more available
2011-05-01 security/borzoi: Upstream disapear and distfile is no more available
2011-05-01 security/cmd5checkpw: Upstream disapear and distfile is no more available
2011-05-01 security/cops: Upstream disapear and distfile is no more available
2011-05-01 security/find_ddos: Upstream disapear and distfile is no more available
2011-05-01 security/ftpmap: Upstream disapear and distfile is no more available
2011-05-01 security/hafiye: Upstream disapear and distfile is no more available
2011-05-01 security/ident2: Upstream disapear and distfile is no more available
2011-05-01 security/liedentd: Upstream disapear and distfile is no more available
2011-05-01 security/pam_pop3: Upstream disapear and distfile is no more available
2011-05-01 security/poc: Upstream disapear and distfile is no more available
2011-05-01 security/portscanner: Upstream disapear and distfile is no more available
2011-05-01 security/ppgen: Upstream disapear and distfile is no more available
2011-05-01 security/qident: Upstream disapear and distfile is no more available
2011-05-01 security/quintuple-agent: Upstream disapear and distfile is no more available
2011-05-01 security/rc5pipe: Upstream disapear and distfile is no more available
2011-05-01 security/rid: Upstream disapear and distfile is no more available
2011-05-01 security/ssh: Upstream disapear and distfile is no more available
2011-05-01 security/tea-total: Upstream disapear and distfile is no more available
2011-05-01 security/uberkey: Upstream disapear and distfile is no more available
Diffstat (limited to 'security/pam_pop3')
| -rw-r--r-- | security/pam_pop3/Makefile | 33 | ||||
| -rw-r--r-- | security/pam_pop3/distinfo | 3 | ||||
| -rw-r--r-- | security/pam_pop3/files/patch-pam_pop3.c | 37 | ||||
| -rw-r--r-- | security/pam_pop3/pkg-descr | 6 | ||||
| -rw-r--r-- | security/pam_pop3/pkg-plist | 3 |
5 files changed, 0 insertions, 82 deletions
diff --git a/security/pam_pop3/Makefile b/security/pam_pop3/Makefile deleted file mode 100644 index 6c06477818fb..000000000000 --- a/security/pam_pop3/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# New ports collection makefile for: pam_pop3 -# Date created: 16 July 2002 -# Whom: Gea-Suan Lin <gslin@ccca.nctu.edu.tw> -# -# $FreeBSD$ -# - -PORTNAME= pam_pop3 -PORTVERSION= 1.0 -PORTREVISION= 1 -CATEGORIES= security -MASTER_SITES= http://shum.huji.ac.il/~schapiro/linux/pam_pop3/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= This module authenticates a user against a POP3 server - -DEPRECATED= Upstream disapear and distfile is no more available -EXPIRATION_DATE= 2011-05-01 - -WRKSRC= ${WRKDIR}/${PORTNAME} - -do-build: - ${CC} ${CFLAGS} -fpic -DPIC -Wall -c ${WRKSRC}/pam_pop3.c -o ${WRKSRC}/pam_pop3.o - ${LD} -x --shared -o ${WRKSRC}/pam_pop3.so ${WRKSRC}/pam_pop3.o -lpam -lcrypt - -do-install: - @${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.so ${PREFIX}/lib -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif - -.include <bsd.port.mk> diff --git a/security/pam_pop3/distinfo b/security/pam_pop3/distinfo deleted file mode 100644 index 685e8eae2d75..000000000000 --- a/security/pam_pop3/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (pam_pop3-1.0.tar.gz) = e9bfebe349f79e308ff8d329e5b25f91 -SHA256 (pam_pop3-1.0.tar.gz) = 82b5f56cd29903051a1deea654cbf35ed5a3ac60271da440ff5de2338d415828 -SIZE (pam_pop3-1.0.tar.gz) = 5271 diff --git a/security/pam_pop3/files/patch-pam_pop3.c b/security/pam_pop3/files/patch-pam_pop3.c deleted file mode 100644 index 6eff9e2bf73c..000000000000 --- a/security/pam_pop3/files/patch-pam_pop3.c +++ /dev/null @@ -1,37 +0,0 @@ ---- pam_pop3.c.orig Tue Jul 16 00:14:29 2002 -+++ pam_pop3.c Tue Jul 16 00:16:38 2002 -@@ -21,6 +21,7 @@ - #include <errno.h> - #include <netdb.h> - #include <sys/types.h> -+#include <sys/time.h> - #include <netinet/in.h> - #include <sys/socket.h> - -@@ -85,7 +86,7 @@ - close(sockfd); - return -1; - } -- if ((numbytes=recv(sockfd,buf,BUFLEN-1,MSG_NOSIGNAL))<=0) -+ if ((numbytes=recv(sockfd,buf,BUFLEN-1,0))<=0) - { - if (numbytes==0) - /* other side closed connection */ -@@ -138,7 +139,7 @@ - close(sockfd); - return -1; - } -- if ((numbytes=send(sockfd,buf,strlen(buf),MSG_NOSIGNAL))<strlen(buf)) -+ if ((numbytes=send(sockfd,buf,strlen(buf),0))<strlen(buf)) - { - /* it did not send everything, try once more and then fail */ - if (numbytes>0) -@@ -153,7 +154,7 @@ - return -1; - } - /* send remaining bytes */ -- numbytes+=send(sockfd,buf+numbytes,strlen(buf)-numbytes,MSG_NOSIGNAL); -+ numbytes+=send(sockfd,buf+numbytes,strlen(buf)-numbytes,0); - } - if (numbytes!=strlen(buf)) - { diff --git a/security/pam_pop3/pkg-descr b/security/pam_pop3/pkg-descr deleted file mode 100644 index 9ffa70f21d9a..000000000000 --- a/security/pam_pop3/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -pam_pop3 by Schlomo Schapiro (schapiro@huji.ac.il) - -This module authenticates a user against a POP3 server. -It supplies only the AUTH functions. - -WWW: http://shum.huji.ac.il/~schapiro/linux/ diff --git a/security/pam_pop3/pkg-plist b/security/pam_pop3/pkg-plist deleted file mode 100644 index f84e6e016a45..000000000000 --- a/security/pam_pop3/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -lib/pam_pop3.so -%%PORTDOCS%%share/doc/pam_pop3/README -%%PORTDOCS%%@dirrm share/doc/pam_pop3 |
