From owner-svn-ports-head@freebsd.org Mon Jun 26 03:24:50 2017 Return-Path: Delivered-To: svn-ports-head@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 38C1EDA00FD; Mon, 26 Jun 2017 03:24:50 +0000 (UTC) (envelope-from sunpoet@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 04B443033; Mon, 26 Jun 2017 03:24:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5Q3On6u072208; Mon, 26 Jun 2017 03:24:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5Q3OnH6072207; Mon, 26 Jun 2017 03:24:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706260324.v5Q3OnH6072207@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 26 Jun 2017 03:24:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444344 - head/security/dotdotpwn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2017 03:24:50 -0000 Author: sunpoet Date: Mon Jun 26 03:24:48 2017 New Revision: 444344 URL: https://svnweb.freebsd.org/changeset/ports/444344 Log: Remove Perl core modules - While I'm here: - Remove MASTER_SITES - Add missing OPTIONS_DEFINE=DOCS - Fix indent - Convert to options target helper - Bump PORTREVISION for dependency change With hat: perl Modified: head/security/dotdotpwn/Makefile Modified: head/security/dotdotpwn/Makefile ============================================================================== --- head/security/dotdotpwn/Makefile Mon Jun 26 03:24:43 2017 (r444343) +++ head/security/dotdotpwn/Makefile Mon Jun 26 03:24:48 2017 (r444344) @@ -2,30 +2,29 @@ PORTNAME= dotdotpwn PORTVERSION= 3.0.2 +PORTREVISION= 1 CATEGORIES= security -MASTER_SITES= GH MAINTAINER= rihaz.jerrin@gmail.com COMMENT= Fuzzer to discover traversal directory vulnerabilities LICENSE= LGPL21 -RUN_DEPENDS= p5-Time-HiRes>=0:devel/p5-Time-HiRes \ - p5-Switch>=0:lang/p5-Switch \ +RUN_DEPENDS= p5-Switch>=0:lang/p5-Switch \ p5-libwww>=0:www/p5-libwww \ p5-TFTP>=0:net/p5-TFTP USE_GITHUB= yes GH_ACCOUNT= wireghoul -OPTIONS_DEFINE= NMAP +OPTIONS_DEFINE= DOCS NMAP OPTIONS_SUB= yes NMAP_DESC= ENABLE OS DETECTION FEATURE - REQUIRES NMAP OPTIONS_DEFAULT= NMAP OSDETECTION_RUN_DEPENDS= nmap:security/nmap -USES= perl5 shebangfix +USES= perl5 shebangfix SHEBANG_FILES= ${WRKSRC}/dotdotpwn.pl ${WRKSRC}/DotDotPwn/BisectionAlgorithm.pm ${WRKSRC}/DotDotPwn/FTP.pm ${WRKSRC}/DotDotPwn/File.pm ${WRKSRC}/DotDotPwn/Fingerprint.pm ${WRKSRC}/DotDotPwn/HTTP.pm ${WRKSRC}/DotDotPwn/HTTP_Url.pm ${WRKSRC}/DotDotPwn/Payload.pm ${WRKSRC}/DotDotPwn/STDOUT.pm ${WRKSRC}/DotDotPwn/TFTP.pm ${WRKSRC}/DotDotPwn/TraversalEngine.pm @@ -39,10 +38,12 @@ do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/DotDotPwn ${MKDIR} ${STAGEDIR}${DATADIR}/DotDotPwn (cd ${WRKSRC}/DotDotPwn && ${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/DotDotPwn) - ${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/DotDotPwn/User-Agents.txt ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/payload_sample_1.txt ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/payload_sample_2.txt ${STAGEDIR}${DATADIR} + +do-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include