From owner-freebsd-apache@FreeBSD.ORG Mon Aug 30 18:51:37 2004 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA91F16A4CE; Mon, 30 Aug 2004 18:51:37 +0000 (GMT) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71E5543D1F; Mon, 30 Aug 2004 18:51:37 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id DD30F3EAD65; Tue, 31 Aug 2004 02:51:36 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 78200-05; Tue, 31 Aug 2004 02:51:33 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 485FE3EAD5F; Tue, 31 Aug 2004 02:51:33 +0800 (CST) Date: Tue, 31 Aug 2004 02:51:32 +0800 From: Yen-Ming Lee To: Mathieu Arnold Message-ID: <20040830185132.GA78984@utopia.leeym.com> References: <20040830170301.47EAF3EAD5F@utopia.leeym.com> <77580E1C860399E80F243DDD@[192.168.1.51]> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ZmUaFz6apKcXQszQ" Content-Disposition: inline In-Reply-To: <77580E1C860399E80F243DDD@[192.168.1.51]> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new at leeym.com cc: FreeBSD-gnats-submit@FreeBSD.org cc: apache@FreeBSD.org Subject: Re: ports/71157: [PATCH] www/mod_perl: add missing manpage X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 18:51:37 -0000 --ZmUaFz6apKcXQszQ Content-Type: text/plain; charset=big5 Content-Disposition: inline On Mon, Aug 30, 2004 at 07:19:07PM +0200, Mathieu Arnold wrote: > +-Le 31/08/2004 01:03 +0800, Yen-Ming Lee a dit : > | - Bundle::Apache.3 \ > | + Bundle::Apache.3 Apache::MyConfig.3 \ > > This is true with 5.8.5 but not with 5.6.1 or 5.005_03, this is a bug in > ExtUtils, so, you also have to add a patch to the Makefile.PL to add the > full list of man pages. How about add a conditional MAN3 after ".include "? -- Yen-Ming Lee [utf7:+Z05fZWYO] | KeyID:0x5EB52E51 | Taipei, Taiwan --ZmUaFz6apKcXQszQ Content-Type: text/plain; charset=big5 Content-Disposition: attachment; filename="mod_perl.diff" Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/mod_perl/Makefile,v retrieving revision 1.29 diff -u -r1.29 Makefile --- Makefile 18 Aug 2004 19:11:12 -0000 1.29 +++ Makefile 30 Aug 2004 18:48:27 -0000 @@ -7,6 +7,7 @@ PORTNAME= mod_perl PORTVERSION= 1.29 +PORTREVISION= 1 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Apache @@ -45,6 +46,10 @@ .endif .include + +.if ${PERL_LEVEL} >= 500800 +MAN3+= Apache::MyConfig.3 +.endif post-install: ${MKDIR} ${PREFIX}/include/apache/modules/perl --ZmUaFz6apKcXQszQ--