- Add LICENSE

- Switch to options helpers
- Regenerate patches with `make makepatch`
This commit is contained in:
Dmitry Marakasov 2016-04-24 09:02:54 +00:00
parent 9782c85d2d
commit fcf18b10a4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=413927
3 changed files with 13 additions and 9 deletions

View file

@ -10,6 +10,8 @@ MASTER_SITES= http://ftp.nluug.nl/ftp/pub/pub/security/coast/daemons/pidentd/too
MAINTAINER= ports@FreeBSD.org MAINTAINER= ports@FreeBSD.org
COMMENT= Client side ident protocol daemon wrapper COMMENT= Client side ident protocol daemon wrapper
LICENSE= PD
BUILD_DEPENDS= ${LOCALBASE}/lib/libident.a:security/libident BUILD_DEPENDS= ${LOCALBASE}/lib/libident.a:security/libident
PORTDOCS= README PORTDOCS= README
@ -19,6 +21,8 @@ OPTIONS_DEFINE= DOCS
do-install: do-install:
${INSTALL_PROGRAM} ${WRKSRC}/identify ${STAGEDIR}${PREFIX}/libexec ${INSTALL_PROGRAM} ${WRKSRC}/identify ${STAGEDIR}${PREFIX}/libexec
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR} @${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}

View file

@ -1,5 +1,5 @@
--- Makefile.orig Mon Jul 20 09:01:27 1992 --- Makefile.orig 1992-07-20 16:01:27 UTC
+++ Makefile Fri Apr 2 10:50:40 1999 +++ Makefile
@@ -1,2 +1,11 @@ @@ -1,2 +1,11 @@
-identify: identify.c -identify: identify.c
- $(CC) -o identify identify.c -lauthuser - $(CC) -o identify identify.c -lauthuser

View file

@ -1,5 +1,5 @@
--- identify.c.orig Tue Feb 2 01:51:57 1993 --- identify.c.orig 1993-02-02 09:51:57 UTC
+++ identify.c Sun Oct 20 17:53:44 2002 +++ identify.c
@@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
#include <stdio.h> #include <stdio.h>
#include <signal.h> #include <signal.h>
@ -9,7 +9,7 @@
#include <netdb.h> #include <netdb.h>
#include <sys/types.h> #include <sys/types.h>
#include <netinet/in.h> #include <netinet/in.h>
@@ -33,57 +33,43 @@ @@ -33,57 +33,43 @@ char *force_log = NULL;
int noidentify = 0; int noidentify = 0;
int bits = 0; int bits = 0;
int reject_flag = 0; int reject_flag = 0;
@ -84,7 +84,7 @@
host[len] = '\0'; host[len] = '\0';
} }
@@ -91,16 +77,7 @@ @@ -91,16 +77,7 @@ char *ident_get_identifier(fd, host, len
if (noidentify) if (noidentify)
return NULL; return NULL;
else else
@ -102,7 +102,7 @@
} }
@@ -128,10 +105,6 @@ @@ -128,10 +105,6 @@ main(argc,argv)
timeout = atoi(argv[i]+2); timeout = atoi(argv[i]+2);
break; break;
@ -113,7 +113,7 @@
case 'R': case 'R':
if (!argv[i][2]) if (!argv[i][2])
reject_flag = 1; reject_flag = 1;
@@ -200,7 +173,7 @@ @@ -200,7 +173,7 @@ main(argc,argv)
{ {
/* In child, let's fork again so we can forget about this child */ /* In child, let's fork again so we can forget about this child */
if (fork()) if (fork())
@ -122,7 +122,7 @@
} }
else else
{ {
@@ -241,13 +214,13 @@ @@ -241,13 +214,13 @@ main(argc,argv)
} }
} }