From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 20 17:00:07 2008 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 C70891065677 for ; Sat, 20 Dec 2008 17:00:07 +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 A14FD8FC14 for ; Sat, 20 Dec 2008 17:00:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id mBKH071O075330 for ; Sat, 20 Dec 2008 17:00:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id mBKH07vN075329; Sat, 20 Dec 2008 17:00:07 GMT (envelope-from gnats) Resent-Date: Sat, 20 Dec 2008 17:00:07 GMT Resent-Message-Id: <200812201700.mBKH07vN075329@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, Tod McQuillin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 829C6106564A; Sat, 20 Dec 2008 16:53:16 +0000 (UTC) (envelope-from root@distalzou.net) Received: from mail.distalzou.net (203.141.139.231.static.zoot.jp [203.141.139.231]) by mx1.freebsd.org (Postfix) with ESMTP id 08FC08FC12; Sat, 20 Dec 2008 16:53:15 +0000 (UTC) (envelope-from root@distalzou.net) Received: from root by mail.distalzou.net with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1LE4VJ-00073J-VF; Sun, 21 Dec 2008 01:16:37 +0900 Message-Id: Date: Sun, 21 Dec 2008 01:16:37 +0900 From: Tod McQuillin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: miwi@FreeBSD.org Subject: ports/129791: [PATCH] irc/p5-POE-Component-IRC: [Add missing dependency] 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: Sat, 20 Dec 2008 17:00:07 -0000 >Number: 129791 >Category: ports >Synopsis: [PATCH] irc/p5-POE-Component-IRC: [Add missing dependency] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 20 17:00:07 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Tod McQuillin >Release: FreeBSD 6.4-STABLE i386 >Organization: >Environment: System: FreeBSD plexi.pun-pun.prv 6.4-STABLE FreeBSD 6.4-STABLE #0: Sat Dec 20 23:13:14 JST 2008 >Description: Recent versions of POE::Component::IRC depend at runtime on POE::Component::Pluggable, but this dependendy is not noted in the port Makefile. Port maintainer (miwi@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: Install and use POE::Component::IRC on a system which does not have POE::Component::Pluggable installed, run a perl script which uses POE::Component::IRC and note the following error message: Base class package "POE::Component::Pluggable" is empty. (Perhaps you need to 'use' the module which defines that package first.) at /usr/local/lib/perl5/site_perl/5.8.8/POE/Component/IRC.pm line 17 BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.8.8/POE/Component/IRC.pm line 17. Compilation failed in require at ./shortenbot.pl line 7. BEGIN failed--compilation aborted at ./shortenbot.pl line 7. >Fix: --- p5-POE-Component-IRC-5.88_1.patch begins here --- Index: Makefile =================================================================== RCS file: /usr/src/cvs-repo/ports/irc/p5-POE-Component-IRC/Makefile,v retrieving revision 1.47 diff -u -u -r1.47 Makefile --- Makefile 30 Aug 2008 20:17:43 -0000 1.47 +++ Makefile 20 Dec 2008 16:14:15 -0000 @@ -8,6 +8,7 @@ PORTNAME= POE-Component-IRC PORTVERSION= 5.88 +PORTREVISION= 1 CATEGORIES= irc devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -19,7 +20,8 @@ p5-POE-Filter-IRCD>=1.7:${PORTSDIR}/irc/p5-POE-Filter-IRCD \ ${SITE_PERL}/POE/Component/Client/DNS.pm:${PORTSDIR}/dns/p5-POE-Component-Client-DNS \ ${SITE_PERL}/POE/Component/Client/Ident.pm:${PORTSDIR}/net/p5-POE-Component-Client-Ident \ - ${SITE_PERL}/POE/Component/SSLify.pm:${PORTSDIR}/security/p5-POE-Component-SSLify + ${SITE_PERL}/POE/Component/SSLify.pm:${PORTSDIR}/security/p5-POE-Component-SSLify \ + ${SITE_PERL}/POE/Component/Pluggable.pm:${PORTSDIR}/devel/p5-POE-Component-Pluggable BUILD_DEPENDS= ${RUN_DEPENDS} PERL_CONFIGURE= yes --- p5-POE-Component-IRC-5.88_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: