Received: by mail.netbsd.org (Postfix, from userid 605) id 7D54884D28; Sat, 8 Aug 2020 12:42:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 032EF84CEE for ; Sat, 8 Aug 2020 12:42:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id QlZ0vhm-z5sB for ; Sat, 8 Aug 2020 12:42:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7B62084CE9 for ; Sat, 8 Aug 2020 12:42:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 73DFEFB28; Sat, 8 Aug 2020 12:42:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159689054218650" MIME-Version: 1.0 Date: Sat, 8 Aug 2020 12:42:22 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/security/john To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20200808124222.73DFEFB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_159689054218650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Sat Aug 8 12:42:22 UTC 2020 Modified Files: pkgsrc/security/john: Makefile PLIST Log Message: john: install documentation PKGREVISION++ To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/security/john/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/john/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159689054218650 Content-Disposition: inline Content-Length: 1964 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/john/Makefile diff -u pkgsrc/security/john/Makefile:1.29 pkgsrc/security/john/Makefile:1.30 --- pkgsrc/security/john/Makefile:1.29 Sat Aug 8 02:09:01 2020 +++ pkgsrc/security/john/Makefile Sat Aug 8 12:42:22 2020 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.29 2020/08/08 02:09:01 leot Exp $ +# $NetBSD: Makefile,v 1.30 2020/08/08 12:42:22 leot Exp $ # DISTNAME= john-1.9.0 +PKGREVISION= 1 CATEGORIES= security textproc MASTER_SITES= http://www.openwall.com/john/k/ EXTRACT_SUFX= .tar.xz @@ -14,6 +15,8 @@ LICENSE= gnu-gpl-v2 BUILD_DIRS= src TEST_TARGET= check +USE_TOOLS+= gmake + .include "../../mk/compiler.mk" .include "../../mk/bsd.prefs.mk" @@ -71,7 +74,7 @@ BUILD_TARGET= generic MAKE_FLAGS+= OPT_NORMAL= MAKE_FLAGS+= OPT_INLINE= -INSTALLATION_DIRS= bin share/john +INSTALLATION_DIRS= bin share/john share/doc/john SUBST_CLASSES+= fix-paths SUBST_STAGE.fix-paths= pre-configure @@ -94,5 +97,9 @@ do-install: lowernum.chr lowerspace.chr upper.chr uppernum.chr password.lst ${INSTALL_DATA} ${WRKSRC}/run/${i} ${DESTDIR}${PREFIX}/share/john .endfor + # documentation +.for i in CONFIG EXAMPLES FAQ MODES OPTIONS README RULES + ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DESTDIR}${PREFIX}/share/doc/john +.endfor .include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/john/PLIST diff -u pkgsrc/security/john/PLIST:1.5 pkgsrc/security/john/PLIST:1.6 --- pkgsrc/security/john/PLIST:1.5 Sat Aug 8 02:09:01 2020 +++ pkgsrc/security/john/PLIST Sat Aug 8 12:42:22 2020 @@ -1,9 +1,16 @@ -@comment $NetBSD: PLIST,v 1.5 2020/08/08 02:09:01 leot Exp $ +@comment $NetBSD: PLIST,v 1.6 2020/08/08 12:42:22 leot Exp $ bin/john bin/mailer bin/unafs bin/unique bin/unshadow +share/doc/john/CONFIG +share/doc/john/EXAMPLES +share/doc/john/FAQ +share/doc/john/MODES +share/doc/john/OPTIONS +share/doc/john/README +share/doc/john/RULES share/john/alnum.chr share/john/alpha.chr share/john/ascii.chr --_----------=_159689054218650--