From owner-freebsd-perl@FreeBSD.ORG Tue Oct 8 01:40:02 2013 Return-Path: Delivered-To: perl@smarthost.ysv.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 ESMTP id 41072EDF for ; Tue, 8 Oct 2013 01:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2DC1E25D7 for ; Tue, 8 Oct 2013 01:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r981e1qM021909 for ; Tue, 8 Oct 2013 01:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r981e1gN021908; Tue, 8 Oct 2013 01:40:01 GMT (envelope-from gnats) Date: Tue, 8 Oct 2013 01:40:01 GMT Message-Id: <201310080140.r981e1gN021908@freefall.freebsd.org> To: perl@FreeBSD.org From: "Dewayne" Subject: Re: ports/182790: Perl 5.16.3 & 5.18.1_1 package build failure X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Dewayne List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Oct 2013 01:40:02 -0000 The following reply was made to PR ports/182790; it has been noted by GNATS. From: "Dewayne" To: Cc: Subject: Re: ports/182790: Perl 5.16.3 & 5.18.1_1 package build failure Date: Tue, 8 Oct 2013 12:31:13 +1100 The problem seems to lie in the build process. The step that is missing is the one that converts man1 and MAN3 pages into gz format. The build log provides no warning or error messages, it is a clean build without compressed man pages. This is also occurring for autoconf-2.69. A quick fix, which isn't the right answer, is to: cd /usr/ports/lang/perl5.16 sed -i "" -e "/man1/s;.gz;;g" -e "/MAN3/s;.gz;;g" pkg-plist make clean deinstall package The build environment does not use pkgng nor poudiere. The following may be relevant from /etc/make.conf WRKDIRPREFIX= /var/ports DISTDIR= /distfiles TMPDIR= /tmp PACKAGES= /packages DEFAULT_VERSIONS=perl5=5.16 python=2.7 python2=2.7 apache=22 apache2=22 NO_STAGE=yes Kind regards, Dewayne.