diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2006-07-14 04:49:57 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2006-07-14 04:49:57 +0000 |
commit | ec608f4f8bc6b4560e7acfa2528063a6292b8913 (patch) | |
tree | 4c60bbb3c5b9fef944b4821e33c7a7622f55c695 | |
parent | Mark as broken: fails to configure. (diff) |
- Fix error to build on 4.X
- Take maintainership
PR: ports/100205
Submitted by: chinsan <chinsan dot tw_AT_gmail dot com>
Notes
Notes:
svn path=/head/; revision=167746
-rw-r--r-- | security/p5-GSSAPI/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/p5-GSSAPI/Makefile b/security/p5-GSSAPI/Makefile index 2a3414e4992b..fd26c84b13b3 100644 --- a/security/p5-GSSAPI/Makefile +++ b/security/p5-GSSAPI/Makefile @@ -12,7 +12,7 @@ MASTER_SITES= ${MASTER_SITE_PERL_CPAN} 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 @@ -30,4 +30,9 @@ MAN3= GSSAPI.3 \ IGNORE= requires perl 5.6.0 or later. Install lang/perl5.8 and try again .endif +.if ${OSVERSION} < 500000 +BUILD_DEPENDS+= krb5-config:${PORTSDIR}/security/krb5 +LIB_DEPENDS+= krb5:${PORTSDIR}/security/krb5 +.endif + .include <bsd.port.post.mk> |