From owner-svn-ports-all@freebsd.org Sun Mar 20 18:37:19 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 2DD49AD6E2E; Sun, 20 Mar 2016 18:37:19 +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 D4D931D81; Sun, 20 Mar 2016 18:37:18 +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 u2KIbIFm025084; Sun, 20 Mar 2016 18:37:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2KIbIQR025083; Sun, 20 Mar 2016 18:37:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201603201837.u2KIbIQR025083@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 20 Mar 2016 18:37:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411491 - head/games/p5-Games-Bingo-Print 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, 20 Mar 2016 18:37:19 -0000 Author: sunpoet Date: Sun Mar 20 18:37:17 2016 New Revision: 411491 URL: https://svnweb.freebsd.org/changeset/ports/411491 Log: - Add LICENSE - Add NO_ARCH - Fix *_DEPENDS: p5-Test-* are test-only dependencies - Convert to new options target helper - Remove regression-test: - Bump PORTREVISION for dependency change Approved by: portmgr (blanket) With hat: perl Modified: head/games/p5-Games-Bingo-Print/Makefile Modified: head/games/p5-Games-Bingo-Print/Makefile ============================================================================== --- head/games/p5-Games-Bingo-Print/Makefile Sun Mar 20 18:37:13 2016 (r411490) +++ head/games/p5-Games-Bingo-Print/Makefile Sun Mar 20 18:37:17 2016 (r411491) @@ -3,7 +3,7 @@ PORTNAME= Games-Bingo-Print PORTVERSION= 0.04 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,14 +11,17 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Games::Bingo::Print - PDF Generation Class +LICENSE= ART10 + BUILD_DEPENDS= p5-Games-Bingo>=0:${PORTSDIR}/games/p5-Games-Bingo \ - p5-PDFLib>=0:${PORTSDIR}/print/p5-PDFLib \ - p5-Test-Harness>=0:${PORTSDIR}/devel/p5-Test-Harness \ + p5-PDFLib>=0:${PORTSDIR}/print/p5-PDFLib +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Harness>=0:${PORTSDIR}/devel/p5-Test-Harness \ p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod \ p5-Test-Perl-Critic>=0:${PORTSDIR}/textproc/p5-Test-Perl-Critic \ p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage -RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure @@ -26,13 +29,8 @@ OPTIONS_DEFINE= EXAMPLES PORTEXAMPLES= bingo_print.pl -.include - -post-install: +post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_SCRIPT} ${WRKSRC}/bin/bingo_print.pl ${STAGEDIR}${EXAMPLESDIR} -regression-test: build - @cd ${WRKSRC} && ${MAKE} -s test - .include