diff options
author | cy <cy@FreeBSD.org> | 2002-01-08 23:05:08 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2002-01-08 23:05:08 +0800 |
commit | 151e97c825fd466356f70a66b8ab60294e5d29b1 (patch) | |
tree | 163a39f1d2d09d16911fe6c504ccf3e2dc4eb48b /security/krb5-16/Makefile | |
parent | d5da3276f7ff822e6d897e2225a1d24d3218dfc2 (diff) | |
download | freebsd-ports-gnome-151e97c825fd466356f70a66b8ab60294e5d29b1.tar.gz freebsd-ports-gnome-151e97c825fd466356f70a66b8ab60294e5d29b1.tar.zst freebsd-ports-gnome-151e97c825fd466356f70a66b8ab60294e5d29b1.zip |
In order to make the MIT KRB5 port compatible with FreeBSD, the port
now makes use of login.conf and login.access. This is performed by
using FreeBSD login(1) instead of MIT KRB5 login.krb5(8).
The MIT KRB5 login.krb5(8) can still be used by specifying "-L" in
the klogind and telnetd arguments in inetd.conf. This is documented
in a new file called README.FreeBSD.
Reviewed by: nectar
Diffstat (limited to 'security/krb5-16/Makefile')
-rw-r--r-- | security/krb5-16/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/security/krb5-16/Makefile b/security/krb5-16/Makefile index 7fac84161a4a..3a0bf189ab7f 100644 --- a/security/krb5-16/Makefile +++ b/security/krb5-16/Makefile @@ -7,11 +7,11 @@ PORTNAME= krb5 PORTVERSION= 1.2.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security MASTER_SITES= # manual download -MAINTAINER= Cy.Schubert@uumail.gov.bc.ca +MAINTAINER= cy@FreeBSD.org BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 @@ -113,5 +113,15 @@ post-install: ${GREP} -v '\.so$$' ${TMPPLIST}.new > ${TMPPLIST} ${RM} ${TMPPLIST}.new .endif + @${SED} "s%\${PREFIX}%${PREFIX}%" ${FILESDIR} > ${PREFIX}/share/doc/krb5/README.FreeBSD + @${CHMOD} 444 ${PREFIX}/share/doc/krb5/README.FreeBSD + @${ECHO} "------------------------------------------------------" + @${ECHO} "This port of MIT Kerberos 5 includes remote login " + @${ECHO} "daemons (telnetd and klogind). These daemons default " + @${ECHO} "to using the system login program (/usr/bin/login). " + @${ECHO} "Please see the file " + @${ECHO} "${PREFIX}/share/doc/krb5/README.FreeBSD" + @${ECHO} "for more information. " + @${ECHO} "------------------------------------------------------" .include <bsd.port.post.mk> |