pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/heimdal



Module Name:    pkgsrc
Committed By:   wiz
Date:           Fri Oct 22 07:31:54 UTC 2021

Modified Files:
        pkgsrc/security/heimdal: Makefile options.mk

Log Message:
heimdal: fix su -> ksu name change with kerberos-prefix-cmds option

Bump PKGREVISION, since it's on by default.


To generate a diff of this commit:
cvs rdiff -u -r1.149 -r1.150 pkgsrc/security/heimdal/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/heimdal/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/heimdal/Makefile
diff -u pkgsrc/security/heimdal/Makefile:1.149 pkgsrc/security/heimdal/Makefile:1.150
--- pkgsrc/security/heimdal/Makefile:1.149      Thu Oct 21 09:02:25 2021
+++ pkgsrc/security/heimdal/Makefile    Fri Oct 22 07:31:54 2021
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.149 2021/10/21 09:02:25 wiz Exp $
+# $NetBSD: Makefile,v 1.150 2021/10/22 07:31:54 wiz Exp $
 
 DISTNAME=      heimdal-7.7.0
+PKGREVISION=   1
 CATEGORIES=    security
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=heimdal/}
 GITHUB_RELEASE=        ${DISTNAME}

Index: pkgsrc/security/heimdal/options.mk
diff -u pkgsrc/security/heimdal/options.mk:1.5 pkgsrc/security/heimdal/options.mk:1.6
--- pkgsrc/security/heimdal/options.mk:1.5      Thu Oct 21 07:46:02 2021
+++ pkgsrc/security/heimdal/options.mk  Fri Oct 22 07:31:54 2021
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.5 2021/10/21 07:46:02 wiz Exp $
+# $NetBSD: options.mk,v 1.6 2021/10/22 07:31:54 wiz Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.heimdal
 PKG_SUPPORTED_OPTIONS= inet6 kerberos-prefix-cmds ldap
@@ -38,14 +38,10 @@ heimdal-ldap-schema:
 ###
 .if !empty(PKG_OPTIONS:Mkerberos-prefix-cmds)
 KRB5_PREFIX=           k
-HEIMDAL_TRANSFORM=     s/^ftp/${KRB5_PREFIX}&/;                        \
-                       s/^login/${KRB5_PREFIX}&/;                      \
-                       s/^${KRB5_PREFIX}login.access/login.access/;    \
-                       s/^su/${KRB5_PREFIX}&/;                         \
-                       .else
+HEIMDAL_TRANSFORM=     s/^su/${KRB5_PREFIX}&/;
+CONFIGURE_ARGS+=       --program-transform-name=${HEIMDAL_TRANSFORM:Q}
+.else
 KRB5_PREFIX=           # empty
-HEIMDAL_TRANSFORM=     s/^ftp/k&/
 .endif
 
 PLIST_SUBST+=          KRB5_PREFIX=${KRB5_PREFIX:Q}
-CONFIGURE_ARGS+=       --program-transform-name=${HEIMDAL_TRANSFORM:Q}



Home | Main Index | Thread Index | Old Index