From owner-svn-ports-head@freebsd.org Mon Jul 18 23:36:43 2016 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 CBB71B9DFD1; Mon, 18 Jul 2016 23:36:43 +0000 (UTC) (envelope-from mandree@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 9C41C180F; Mon, 18 Jul 2016 23:36:43 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6INagAd083261; Mon, 18 Jul 2016 23:36:42 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6INag53083260; Mon, 18 Jul 2016 23:36:42 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201607182336.u6INag53083260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Mon, 18 Jul 2016 23:36:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418756 - head/sysutils/e2fsprogs 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.22 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, 18 Jul 2016 23:36:43 -0000 Author: mandree Date: Mon Jul 18 23:36:42 2016 New Revision: 418756 URL: https://svnweb.freebsd.org/changeset/ports/418756 Log: Do not force options or Perl on slave ports. Modified: head/sysutils/e2fsprogs/Makefile Modified: head/sysutils/e2fsprogs/Makefile ============================================================================== --- head/sysutils/e2fsprogs/Makefile Mon Jul 18 22:46:39 2016 (r418755) +++ head/sysutils/e2fsprogs/Makefile Mon Jul 18 23:36:42 2016 (r418756) @@ -33,6 +33,16 @@ BUILD_DEPENDS+= gdd:sysutils/coreutils PORTDOCS= NOTICE README RELEASE-NOTES SUBMITTING-PATCHES +OPTIONS_DEFINE= PARALLELTESTS +OPTIONS_SINGLE= SELFTEST +OPTIONS_SINGLE_SELFTEST= NOTESTS SMALLTESTS ALLTESTS +OPTIONS_DEFAULT= SMALLTESTS +SELFTEST_DESC= Choose which set of self-tests to run +NOTESTS_DESC= Do not run any self-tests (DISCOURAGED) +SMALLTESTS_DESC=Run sets that fit into 500 MB disk space (DEFAULT) +ALLTESTS_DESC= Run all self-tests +PARALLELTESTS_DESC= Run self-tests in parallel (requires more disk space) + post-extract: @${CHMOD} u+w ${WRKSRC}/po/*.po ${WRKSRC}/po/*.pot \ ${WRKSRC}/${CONFIGURE_SCRIPT} @@ -45,23 +55,13 @@ PKGDEINSTALL= ${PKGINSTALL} MAKE_ARGS+= V=1 .endif -OPTIONS_DEFINE= PARALLELTESTS -OPTIONS_SINGLE= SELFTEST -OPTIONS_SINGLE_SELFTEST= NOTESTS SMALLTESTS ALLTESTS -OPTIONS_DEFAULT= SMALLTESTS -SELFTEST_DESC= Choose which set of self-tests to run -NOTESTS_DESC= Do not run any self-tests (DISCOURAGED) -SMALLTESTS_DESC=Run sets that fit into 500 MB disk space (DEFAULT) -ALLTESTS_DESC= Run all self-tests -PARALLELTESTS_DESC= Run self-tests in parallel (requires more disk space) - .include .if ${PORT_OPTIONS:MNLS} USES+= gettext iconv:build .endif -.if empty(PORT_OPTIONS:MNOTESTS) +.if empty(PORT_OPTIONS:MNOTESTS) && ${MASTERDIR} == ${.CURDIR} USES+= perl5 USE_PERL5= build .endif