From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 12 13:10:17 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B45416A4CE for ; Fri, 12 Dec 2003 13:10:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E039F43D37 for ; Fri, 12 Dec 2003 13:10:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) hBCLABFR014062 for ; Fri, 12 Dec 2003 13:10:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBCLAB7k014061; Fri, 12 Dec 2003 13:10:11 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 12 Dec 2003 13:10:11 -0800 (PST) Resent-Message-Id: <200312122110.hBCLAB7k014061@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Le Brun Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A13E16A4CE for ; Fri, 12 Dec 2003 13:04:18 -0800 (PST) Received: from da-quirk.org (raspail-2-81-57-235-55.fbx.proxad.net [81.57.235.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FA8F43D35 for ; Fri, 12 Dec 2003 13:04:16 -0800 (PST) (envelope-from david@da-quirk.org) Received: from da-quirk.org (localhost [127.0.0.1]) by da-quirk.org (8.12.9/8.12.9) with ESMTP id hBCL4Kpa028185 for ; Fri, 12 Dec 2003 22:04:20 +0100 (CET) (envelope-from david@da-quirk.org) Received: (from david@localhost) by da-quirk.org (8.12.9/8.12.9/Submit) id hBCL4JAT028184; Fri, 12 Dec 2003 22:04:19 +0100 (CET) Message-Id: <200312122104.hBCL4JAT028184@da-quirk.org> Date: Fri, 12 Dec 2003 22:04:19 +0100 (CET) From: David Le Brun To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/60190: [Maintainer Patch] Unbreak audio/gnupod under 4.X X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Le Brun List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Dec 2003 21:10:17 -0000 >Number: 60190 >Category: ports >Synopsis: [Maintainer Patch] Unbreak audio/gnupod under 4.X >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 12 13:10:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: David Le Brun >Release: FreeBSD 5.1-RELEASE-p10 i386 >Organization: >Environment: System: FreeBSD da-quirk.org 5.1-RELEASE-p10 FreeBSD 5.1-RELEASE-p10 #16: Tue Oct 7 21:34:53 CEST 2003 root@poyel:/usr/src/sys/i386/compile/POYEL i386 >Description: Bento reports this port as broken under FreeBSD 4.X This is due to few differences between Perl 5.005 and Perl 5.6.1 in the function mkdir. This patch allow the port to be build with any version of Perl. >How-To-Repeat: >Fix: --- gnupod.diff begins here --- diff -ruN gnupod.old/files/patch-tools::gnupod_install.pl gnupod/files/patch-tools::gnupod_install.pl --- gnupod.old/files/patch-tools::gnupod_install.pl Thu Jan 1 01:00:00 1970 +++ gnupod/files/patch-tools::gnupod_install.pl Fri Dec 12 21:41:52 2003 @@ -0,0 +1,12 @@ +--- tools/gnupod_install.pl.old Sun Oct 5 12:10:32 2003 ++++ tools/gnupod_install.pl Fri Dec 12 21:38:37 2003 +@@ -70,8 +70,7 @@ + my($basedir, $modi, $perlbin) = @_; + die "Strange Perl installation, no \@INC! Can't install Perl-Module(s), killing myself..\n" if !$INC[0]; + +-mkdir("$INC[0]/$modi"); +-chmod 0755, "$INC[0]/$modi"; ++mkdir("$INC[0]/$modi", 0755); + print "Installing Modules at $INC[0]/$modi\n"; + + foreach my $file (glob("$basedir/*.pm")) { --- gnupod.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: