From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 30 10:40:10 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03B011065770 for ; Fri, 30 Oct 2009 10:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DD9548FC1E for ; Fri, 30 Oct 2009 10:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n9UAe8Y7034492 for ; Fri, 30 Oct 2009 10:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n9UAe8AE034491; Fri, 30 Oct 2009 10:40:08 GMT (envelope-from gnats) Resent-Date: Fri, 30 Oct 2009 10:40:08 GMT Resent-Message-Id: <200910301040.n9UAe8AE034491@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, Frank Wall Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E33AF1065676 for ; Fri, 30 Oct 2009 10:30:19 +0000 (UTC) (envelope-from fw@inotronic.de) Received: from mail.inotronic.de (mail.inotronic.de [77.73.248.111]) by mx1.freebsd.org (Postfix) with ESMTP id 4C38B8FC0C for ; Fri, 30 Oct 2009 10:30:18 +0000 (UTC) Received: from localhost (mail [77.73.248.111]) by mail.inotronic.de (8.14.3/8.14.3) with ESMTP id n9UAUIid059617; Fri, 30 Oct 2009 11:30:18 +0100 (CET) (envelope-from fw@inotronic.de) Received: from boron.inotronic.de (boron.inotronic-intern.de [10.1.2.10]) by mail.inotronic.de (8.14.3/8.14.3) with ESMTP id n9UAUFMg059611 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 30 Oct 2009 11:30:15 +0100 (CET) (envelope-from fw@inotronic.de) Received: from boron.inotronic-intern.de (fw@localhost [127.0.0.1]) by boron.inotronic.de (8.14.3/8.14.3) with ESMTP id n9UAUFoT044814; Fri, 30 Oct 2009 11:30:15 +0100 (CET) (envelope-from fw@boron.inotronic-intern.de) Received: (from fw@localhost) by boron.inotronic-intern.de (8.14.3/8.14.3/Submit) id n9UAUFcf044813; Fri, 30 Oct 2009 11:30:15 +0100 (CET) (envelope-from fw) Message-Id: <200910301030.n9UAUFcf044813@boron.inotronic-intern.de> Date: Fri, 30 Oct 2009 11:30:15 +0100 (CET) From: Frank Wall To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: skv@FreeBSD.org Subject: ports/140103: [PATCH] devel/otrs: fix build problem (dependency error) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Oct 2009 10:40:10 -0000 >Number: 140103 >Category: ports >Synopsis: [PATCH] devel/otrs: fix build problem (dependency error) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 30 10:40:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Frank Wall >Release: FreeBSD 7.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD 7.1-RELEASE-p4 FreeBSD 7.1-RELEASE-p4 #0: Sun Mar 22 09:43:46 UTC 2009 >Description: The latest update of devel/p5-Date-Pcalc leads to build problems. The dependency devel/p5-Date-Pcalc moved it's files to a different location. A small change to the dependency list fixes the build problem. Port maintainer (skv@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: 1. cd /usr/ports/devel/otrs 2. make install 3. build fails even if devel/p5-Date-Pcalc is installed: ===> otrs-2.4.4 depends on file: /usr/local/lib/perl5/site_perl/5.8.9/Date/Pcalc.pm - not found >Fix: --- otrs-2.4.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/otrs/Makefile /tmp/otrs/Makefile --- /usr/ports/devel/otrs/Makefile 2009-09-04 12:50:53.000000000 +0200 +++ /tmp/otrs/Makefile 2009-10-30 11:19:47.000000000 +0100 @@ -17,7 +17,7 @@ COMMENT= Open Ticket Request System BUILD_DEPENDS= p5-CGI.pm>=3.33:${PORTSDIR}/www/p5-CGI.pm \ - ${SITE_PERL}/Date/Pcalc.pm:${PORTSDIR}/devel/p5-Date-Pcalc \ + ${SITE_PERL}/${PERL_ARCH}/Date/Pcalc.pm:${PORTSDIR}/devel/p5-Date-Pcalc \ ${SITE_PERL}/Date/Format.pm:${PORTSDIR}/devel/p5-TimeDate \ ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \ ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ --- otrs-2.4.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: