From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 5 09:00:38 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8320616A4CE for ; Sun, 5 Sep 2004 09:00:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66A8143D3F for ; Sun, 5 Sep 2004 09:00:38 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i8590cIk001100 for ; Sun, 5 Sep 2004 09:00:38 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i8590cGV001099; Sun, 5 Sep 2004 09:00:38 GMT (envelope-from gnats) Resent-Date: Sun, 5 Sep 2004 09:00:38 GMT Resent-Message-Id: <200409050900.i8590cGV001099@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, Yen-Ming Lee Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE68716A4CE; Sun, 5 Sep 2004 08:53:13 +0000 (GMT) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93D1F43D48; Sun, 5 Sep 2004 08:53:13 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 85B363EAB19; Sun, 5 Sep 2004 16:53:12 +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 22069-01; Sun, 5 Sep 2004 16:53:00 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 20B063EAB18; Sun, 5 Sep 2004 16:52:59 +0800 (CST) Message-Id: <20040905085259.20B063EAB18@utopia.leeym.com> Date: Sun, 5 Sep 2004 16:52:59 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: mharo@FreeBSD.org Subject: ports/71393: [PATCH] converters/p5-Convert-PEM: add missing manpage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Sep 2004 09:00:38 -0000 >Number: 71393 >Category: ports >Synopsis: [PATCH] converters/p5-Convert-PEM: add missing manpage >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 Sep 05 09:00:37 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 5.3-BETA3 i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 5.3-BETA3 FreeBSD 5.3-BETA3 #1: Sun Sep 5 01:06:46 CST >Description: - add missing manpage (Convert::PEM::ErrorHandler.3) - use SITE_PERL directly and makes portlint happier. Port maintainer (mharo@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: http://pointyhat.freebsd.org/errorlogs/i386-5-full-logs/extras.html >Fix: --- p5-Convert-PEM-0.06.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/converters/p5-Convert-PEM/Makefile,v retrieving revision 1.7 diff -u -u -r1.7 Makefile --- Makefile 17 Apr 2004 14:04:47 -0000 1.7 +++ Makefile 5 Sep 2004 08:40:25 -0000 @@ -16,16 +16,15 @@ MAINTAINER= mharo@FreeBSD.org COMMENT= Read/write access to ASN.1-encoded PEM files with optional encryption -PERLBASE= ${SITE_PERL} -BUILD_DEPENDS= ${PERLBASE}/Convert/ASN1.pm:${PORTSDIR}/converters/p5-Convert-ASN1 \ - ${PERLBASE}/${PERL_ARCH}/Crypt/DES.pm:${PORTSDIR}/security/p5-Crypt-DES \ - ${PERLBASE}/Crypt/DES_EDE3.pm:${PORTSDIR}/security/p5-Crypt-DES_EDE3 \ - ${PERLBASE}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ - ${PERLBASE}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 +BUILD_DEPENDS= ${SITE_PERL}/Convert/ASN1.pm:${PORTSDIR}/converters/p5-Convert-ASN1 \ + ${SITE_PERL}/${PERL_ARCH}/Crypt/DES.pm:${PORTSDIR}/security/p5-Crypt-DES \ + ${SITE_PERL}/Crypt/DES_EDE3.pm:${PORTSDIR}/security/p5-Crypt-DES_EDE3 \ + ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ + ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 PERL_CONFIGURE= YES -MAN3= Convert::PEM.3 Convert::PEM::CBC.3 +MAN3= Convert::PEM.3 Convert::PEM::CBC.3 Convert::PEM::ErrorHandler.3 MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include --- p5-Convert-PEM-0.06.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: