From owner-freebsd-perl@FreeBSD.ORG Thu Mar 4 14:10:50 2010 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42F951065672 for ; Thu, 4 Mar 2010 14:10:50 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.116.15]) by mx1.freebsd.org (Postfix) with ESMTP id 02F8E8FC22 for ; Thu, 4 Mar 2010 14:10:48 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.71) (envelope-from ) id 1NnB4v-0006ui-4H; Thu, 04 Mar 2010 16:27:01 +0300 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id AB106B860; Thu, 4 Mar 2010 16:27:00 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id A5427B829; Thu, 4 Mar 2010 16:27:00 +0300 (MSK) To: FreeBSD-gnats-submit@freebsd.org From: Dmitry Marakasov X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20100304132700.A5427B829@hades.panopticon> Date: Thu, 4 Mar 2010 16:27:00 +0300 (MSK) Cc: perl@FreeBSD.org Subject: [PATCH] textproc/p5-HTML-Tidy: support nondefault LOCALBASE X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Mar 2010 14:10:50 -0000 >Submitter-Id: current-users >Originator: Dmitry Marakasov >Organization: >Confidential: no >Synopsis: [PATCH] textproc/p5-HTML-Tidy: support nondefault LOCALBASE >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 8.0-RELEASE i386 >Environment: System: FreeBSD hades.panopticon 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Tue Nov 24 22:31:59 MSK 2009 >Description: The port doesn't install with custom localbase, as /usr/local is hardcoded in include paths in Makefile.PL. The patch fixes that. Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-HTML-Tidy-1.08_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/textproc/p5-HTML-Tidy/Makefile,v retrieving revision 1.8 diff -u -u -r1.8 Makefile --- Makefile 16 Aug 2009 09:55:27 -0000 1.8 +++ Makefile 4 Mar 2010 13:05:36 -0000 @@ -23,6 +23,10 @@ MAN3= HTML::Tidy.3 HTML::Tidy::Message.3 +post-patch: + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ + ${WRKSRC}/Makefile.PL + .if !defined(NOPORTDOCS) PORTDOCS= Changes README --- p5-HTML-Tidy-1.08_1.patch ends here ---