From owner-svn-ports-all@freebsd.org Sun Apr 24 09:02:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 403FCB12EA2; Sun, 24 Apr 2016 09:02:56 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02E3F1329; Sun, 24 Apr 2016 09:02:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3O92tDL038557; Sun, 24 Apr 2016 09:02:55 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3O92tk5038554; Sun, 24 Apr 2016 09:02:55 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201604240902.u3O92tk5038554@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 24 Apr 2016 09:02:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413927 - in head/security/identify: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2016 09:02:56 -0000 Author: amdmi3 Date: Sun Apr 24 09:02:54 2016 New Revision: 413927 URL: https://svnweb.freebsd.org/changeset/ports/413927 Log: - Add LICENSE - Switch to options helpers - Regenerate patches with `make makepatch` Modified: head/security/identify/Makefile head/security/identify/files/patch-Makefile head/security/identify/files/patch-identify.c Modified: head/security/identify/Makefile ============================================================================== --- head/security/identify/Makefile Sun Apr 24 08:09:27 2016 (r413926) +++ head/security/identify/Makefile Sun Apr 24 09:02:54 2016 (r413927) @@ -10,6 +10,8 @@ MASTER_SITES= http://ftp.nluug.nl/ftp/pu MAINTAINER= ports@FreeBSD.org COMMENT= Client side ident protocol daemon wrapper +LICENSE= PD + BUILD_DEPENDS= ${LOCALBASE}/lib/libident.a:security/libident PORTDOCS= README @@ -19,6 +21,8 @@ OPTIONS_DEFINE= DOCS do-install: ${INSTALL_PROGRAM} ${WRKSRC}/identify ${STAGEDIR}${PREFIX}/libexec + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} Modified: head/security/identify/files/patch-Makefile ============================================================================== --- head/security/identify/files/patch-Makefile Sun Apr 24 08:09:27 2016 (r413926) +++ head/security/identify/files/patch-Makefile Sun Apr 24 09:02:54 2016 (r413927) @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Jul 20 09:01:27 1992 -+++ Makefile Fri Apr 2 10:50:40 1999 +--- Makefile.orig 1992-07-20 16:01:27 UTC ++++ Makefile @@ -1,2 +1,11 @@ -identify: identify.c - $(CC) -o identify identify.c -lauthuser Modified: head/security/identify/files/patch-identify.c ============================================================================== --- head/security/identify/files/patch-identify.c Sun Apr 24 08:09:27 2016 (r413926) +++ head/security/identify/files/patch-identify.c Sun Apr 24 09:02:54 2016 (r413927) @@ -1,5 +1,5 @@ ---- identify.c.orig Tue Feb 2 01:51:57 1993 -+++ identify.c Sun Oct 20 17:53:44 2002 +--- identify.c.orig 1993-02-02 09:51:57 UTC ++++ identify.c @@ -11,7 +11,7 @@ #include #include @@ -9,7 +9,7 @@ #include #include #include -@@ -33,57 +33,43 @@ +@@ -33,57 +33,43 @@ char *force_log = NULL; int noidentify = 0; int bits = 0; int reject_flag = 0; @@ -84,7 +84,7 @@ host[len] = '\0'; } -@@ -91,16 +77,7 @@ +@@ -91,16 +77,7 @@ char *ident_get_identifier(fd, host, len if (noidentify) return NULL; else @@ -102,7 +102,7 @@ } -@@ -128,10 +105,6 @@ +@@ -128,10 +105,6 @@ main(argc,argv) timeout = atoi(argv[i]+2); break; @@ -113,7 +113,7 @@ case 'R': if (!argv[i][2]) 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 */ if (fork()) @@ -122,7 +122,7 @@ } else { -@@ -241,13 +214,13 @@ +@@ -241,13 +214,13 @@ main(argc,argv) } }