diff options
author | nectar <nectar@FreeBSD.org> | 2001-09-07 19:53:09 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2001-09-07 19:53:09 +0000 |
commit | 0e60421e2e74efc2dbb12bc74280f0e7b81663fb (patch) | |
tree | 4ed017cd1048b3e86ef7d391938cc18b72958047 /security/krb5/Makefile | |
parent | 0c0d7ab050e19efcce688f5385f621e05febea51 (diff) | |
download | FreeBSD-ports-0e60421e2e74efc2dbb12bc74280f0e7b81663fb.zip FreeBSD-ports-0e60421e2e74efc2dbb12bc74280f0e7b81663fb.tar.gz |
= Modify `ksu' so that it uses the login cap database. Michael Allman
<msa@dinosauricon.com> provided the original patches.
= For users outside of the US, point to www.crypto-publish.org for the
distfiles. It was Chris Knight <chris@aims.com.au>'s idea.
Submitted by: Cy.Schubert@uumail.gov.bc.ca (MAINTAINER)
PR: ports/29865
Diffstat (limited to 'security/krb5/Makefile')
-rw-r--r-- | security/krb5/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/security/krb5/Makefile b/security/krb5/Makefile index 2b9113e..7fac841 100644 --- a/security/krb5/Makefile +++ b/security/krb5/Makefile @@ -7,7 +7,7 @@ PORTNAME= krb5 PORTVERSION= 1.2.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= security MASTER_SITES= # manual download @@ -24,6 +24,10 @@ CONFIGURE_ENV= INSTALL="${INSTALL}" MAKE_ARGS= INSTALL="${INSTALL}" KRB5_KRB4_COMPAT?= YES +.if defined(USA_RESIDENT) && ${USA_RESIDENT} == "NO" +MASTER_SITES= http://www.crypto-publish.org/dist/mit-kerberos5/ +.endif + .if !defined(KRB5_KRB4_COMPAT) || ${KRB5_KRB4_COMPAT} == "NO" CONFIGURE_ARGS+= --without-krb4 .endif @@ -56,6 +60,7 @@ HTML_DOCS= admin.html install_foot.html user-guide.html \ admin_toc.html krb425.html user-guide_toc.html \ install.html krb425_toc.html +.if !defined(USA_RESIDENT) || ${USA_RESIDENT} == "YES" do-fetch: @if [ ! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ]; then \ ${ECHO} ""; \ @@ -70,6 +75,7 @@ do-fetch: ${ECHO} " it in ${DISTDIR}. Then run make again."; \ ${FALSE}; \ fi +.endif pre-build: .if !defined(KRB5_KRB4_COMPAT) |