From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Apr 8 19:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E1CB11065670 for ; Sun, 8 Apr 2012 19:20:09 +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 AF7528FC12 for ; Sun, 8 Apr 2012 19:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q38JK9EC025877 for ; Sun, 8 Apr 2012 19:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q38JK94H025876; Sun, 8 Apr 2012 19:20:09 GMT (envelope-from gnats) Resent-Date: Sun, 8 Apr 2012 19:20:09 GMT Resent-Message-Id: <201204081920.q38JK94H025876@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 028F3106566C; Sun, 8 Apr 2012 19:18:16 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id B21218FC12; Sun, 8 Apr 2012 19:18:15 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q38JIBjc019765 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 8 Apr 2012 15:18:11 -0400 (EDT) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q38JI7At010155; Sun, 8 Apr 2012 15:18:07 -0400 (EDT) (envelope-from steve) Message-Id: <201204081918.q38JI7At010155@meatwad.mouf.net> Date: Sun, 8 Apr 2012 15:18:07 -0400 (EDT) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: miwi@FreeBSD.org Subject: ports/166762: [PATCH] irc/p5-POE-Component-IRC-Plugin-Bollocks: add missing DEPENDS 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: Sun, 08 Apr 2012 19:20:10 -0000 >Number: 166762 >Category: ports >Synopsis: [PATCH] irc/p5-POE-Component-IRC-Plugin-Bollocks: add missing DEPENDS >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: Sun Apr 08 19:20:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #17 r233932: Thu Apr 5 22:13:25 >Description: - Add missing DEPENDS - Avoid use of SITE_PERL in DEPENDS - Bump PORTREVISION - Pet portlint Port maintainer (miwi@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-POE-Component-IRC-Plugin-Bollocks-1.00_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/irc/p5-POE-Component-IRC-Plugin-Bollocks/Makefile,v retrieving revision 1.2 diff -u -u -r1.2 Makefile --- Makefile 1 May 2009 14:03:32 -0000 1.2 +++ Makefile 8 Apr 2012 19:17:21 -0000 @@ -7,17 +7,18 @@ PORTNAME= POE-Component-IRC-Plugin-Bollocks PORTVERSION= 1.00 +PORTREVISION= 1 CATEGORIES= irc perl5 devel MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= miwi@FreeBSD.org -COMMENT= A POE::Component::IRC plugin that talks bollocks. +COMMENT= A POE::Component::IRC plugin that talks bollocks -BUILD_DEPENDS= ${SITE_PERL}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${SITE_PERL}/POE/Component/IRC.pm:${PORTSDIR}/irc/p5-POE-Component-IRC -RUN_DEPENDS= ${SITE_PERL}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${SITE_PERL}/POE/Component/IRC.pm:${PORTSDIR}/irc/p5-POE-Component-IRC +BUILD_DEPENDS= p5-Dev-Bollocks>=0.06:${PORTSDIR}/textproc/p5-Dev-Bollocks \ + p5-POE-Component-IRC>=0:${PORTSDIR}/irc/p5-POE-Component-IRC \ + p5-POE>=0:${PORTSDIR}/devel/p5-POE +RUN_DEPENDS:= ${BUILD_DEPENDS} PLIST_SUB= EXAMPLESDIR="share/examples/${PORTNAME}" PERL_CONFIGURE= yes --- p5-POE-Component-IRC-Plugin-Bollocks-1.00_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: