From owner-freebsd-perl@FreeBSD.ORG Thu Jul 13 10:38:03 2006 Return-Path: X-Original-To: perl@FreeBSD.org Delivered-To: freebsd-perl@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01EAA16A4E1; Thu, 13 Jul 2006 10:38:03 +0000 (UTC) (envelope-from chinsan.tw@gmail.com) Received: from smtp2.bc.hgc.com.tw (smtp2.bc.hgc.com.tw [203.133.1.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40BD543D49; Thu, 13 Jul 2006 10:38:02 +0000 (GMT) (envelope-from chinsan.tw@gmail.com) Received: from smtp2.bc.hgc.com.tw (u14-109.u203-187.giga.net.tw [203.187.14.109]) by smtp2.bc.hgc.com.tw (Postfix) with SMTP id ABCF62F069; Thu, 13 Jul 2006 18:38:02 +0800 (CST) Received: by smtp2.bc.hgc.com.tw (sSMTP sendmail emulation); Thu, 13 Jul 2006 18:42:00 +0800 Date: Thu, 13 Jul 2006 18:42:00 +0800 To: FreeBSD-gnats-submit@freebsd.org From: chinsan X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20060713103802.ABCF62F069@smtp2.bc.hgc.com.tw> Cc: perl@FreeBSD.org Subject: [PATCH] security/p5-GSSAPI: Fix error to build on 4.X, take maintainership 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, 13 Jul 2006 10:38:03 -0000 >Submitter-Id: current-users >Originator: chinsan >Organization: FreeBSD Taiwan >Confidential: no >Synopsis: [PATCH] security/p5-GSSAPI: Fix error to build on 4.X, take maintainership >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 6.1-STABLE i386 >Environment: System: FreeBSD chinsan2.twbbs.org 6.1-STABLE FreeBSD 6.1-STABLE #1: Fri Jun 2 16:44:35 CST >Description: - Fix error to build on 4.X - Take maintainership Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-GSSAPI-0.22.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/p5-GSSAPI/Makefile /usr/home/chinsan/project/p5-GSSAPI/Makefile --- /usr/ports/security/p5-GSSAPI/Makefile Wed May 31 06:26:36 2006 +++ /usr/home/chinsan/project/p5-GSSAPI/Makefile Thu Jul 13 18:40:49 2006 @@ -12,7 +12,7 @@ MASTER_SITE_SUBDIR= ../../authors/id/A/AG/AGROLMS PKGNAMEPREFIX= p5- -MAINTAINER= perl@FreeBSD.org +MAINTAINER= chinsan.tw@gmail.com COMMENT= Perl extension providing access to the GSSAPIv2 library BUILD_DEPENDS= ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple @@ -28,6 +28,11 @@ .if ${PERL_LEVEL} < 500600 IGNORE= requires perl 5.6.0 or later. Install lang/perl5.8 and try again +.endif + +.if ${OSVERSION} < 500000 +BUILD_DEPENDS+= krb5:${PORTSDIR}/security/krb5 +LIB_DEPENDS+= krb5:${PORTSDIR}/security/krb5 .endif .include --- p5-GSSAPI-0.22.patch ends here ---