From owner-freebsd-perl@FreeBSD.ORG Sun Aug 17 18:32:19 2014 Return-Path: Delivered-To: perl@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26ED119E for ; Sun, 17 Aug 2014 18:32:19 +0000 (UTC) Received: from mout.gmx.net (mout.gmx.net [212.227.17.21]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B14562831 for ; Sun, 17 Aug 2014 18:32:18 +0000 (UTC) Received: from [192.168.0.100] ([87.139.233.65]) by mail.gmx.com (mrgmx102) with ESMTPSA (Nemesis) id 0MRB8F-1WwiEU2BLz-00Uehc; Sun, 17 Aug 2014 20:32:13 +0200 Message-ID: <53F0F536.9000708@gmx.de> Date: Sun, 17 Aug 2014 20:32:22 +0200 From: olli hauer User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: perl Subject: Mk/Uses/perl.mk possible regression Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:aXwqU90yw50SJviTty7CCOJyC9M+Hl9Kzba0SFc1PFyB4J/R3KP CJSisj8yWlpQsIp/44vy/dsARLjdrCFdn93NTSDxL8hSvRsqoxfmqN7QvrYjdHC0eJHeYUw /Yko/eQckDD2NgdnSyl17HhAUi/WPY/utc3a7T32HRlL3UOtrDEhcvhimI4r6NCovB2XGM/ HTAF815GuP0XSdq9bo9DA== X-UI-Out-Filterresults: notjunk:1; Cc: Olli Hauer X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2014 18:32:19 -0000 Hi, what is wrong with the following USE(ES)_PERL5 statements? I have a port installing a packlist and the qa-script complains about the path in the .packlist file. So I add 'USE_PERL5+=fixpacklist' to the Makefile and lost all perl dependences. Using only test 1) USES= perl5 $ make -V BUILD_DEPENDS gmake:/usr/ports/devel/gmake /usr/local/bin/perl5.16.3:/usr/ports/lang/perl5.16 $ make -V RUN_DEPENDS /usr/local/bin/perl5.16.3:/usr/ports/lang/perl5.16 => OK test 2) USES= perl5 USE_PERL5+= fixpacklist $ make -V BUILD_DEPENDS gmake:/usr/ports/devel/gmake $ make -V RUN_DEPENDS -- nothing perl dependency is completely gone. Looking into Mk/Uses/perl5.mk the explanations is # USE_PERL5 - If set, this port uses perl5 in one or more of the extract, # patch, build, install or run phases. The fixpacklist is # needed in some cases, when a .packlist is created, it may # reference ${STAGEDIR} ... Any hints what's going wrong? -- olli