diff options
author | fhajny <fhajny@pkgsrc.org> | 2014-07-28 18:23:39 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2014-07-28 18:23:39 +0000 |
commit | ae67c63f47a66d48e47c81a51fde1c35a1f0f39f (patch) | |
tree | 6566e73563ffd1ccb1ce7899622790bffd000cbd /security | |
parent | 44b3d1ee54029b8845b5d82caa9fcc04f7a80dc5 (diff) | |
download | pkgsrc-ae67c63f47a66d48e47c81a51fde1c35a1f0f39f.tar.gz |
This package is still useful on SunOS, as it provides more functionality
compared to the one shipped with the platform. Enable for SunOS, but disable
the INSTALL/DEINSTALL symlinks. Bump PKGREVISION.
Diffstat (limited to 'security')
-rw-r--r-- | security/pam-ldap/DEINSTALL | 6 | ||||
-rw-r--r-- | security/pam-ldap/INSTALL | 6 | ||||
-rw-r--r-- | security/pam-ldap/Makefile | 6 |
3 files changed, 11 insertions, 7 deletions
diff --git a/security/pam-ldap/DEINSTALL b/security/pam-ldap/DEINSTALL index 4da6b011aea..ce46738ea8a 100644 --- a/security/pam-ldap/DEINSTALL +++ b/security/pam-ldap/DEINSTALL @@ -1,7 +1,9 @@ -# $NetBSD: DEINSTALL,v 1.1 2014/05/29 19:59:39 tron Exp $ +# $NetBSD: DEINSTALL,v 1.2 2014/07/28 18:23:39 fhajny Exp $ case ${STAGE} in POST-DEINSTALL) - rm -f /usr/lib/security/pam_ldap.so + if test "`uname -s`" != "SunOS"; then + rm -f /usr/lib/security/pam_ldap.so + fi ;; esac diff --git a/security/pam-ldap/INSTALL b/security/pam-ldap/INSTALL index ac2d387db74..bdd87a56684 100644 --- a/security/pam-ldap/INSTALL +++ b/security/pam-ldap/INSTALL @@ -1,7 +1,9 @@ -# $NetBSD: INSTALL,v 1.1 2014/05/29 19:59:39 tron Exp $ +# $NetBSD: INSTALL,v 1.2 2014/07/28 18:23:39 fhajny Exp $ case ${STAGE} in POST-INSTALL) - ln -sf ${PREFIX}/lib/security/pam_ldap.so /usr/lib/security/pam_ldap.so + if test "`uname -s`" != "SunOS"; then + ln -sf ${PREFIX}/lib/security/pam_ldap.so /usr/lib/security/pam_ldap.so + fi ;; esac diff --git a/security/pam-ldap/Makefile b/security/pam-ldap/Makefile index 99d33b837bc..6864a79da7f 100644 --- a/security/pam-ldap/Makefile +++ b/security/pam-ldap/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.42 2014/06/02 10:22:17 tron Exp $ +# $NetBSD: Makefile,v 1.43 2014/07/28 18:23:39 fhajny Exp $ DISTNAME= pam_ldap-186 PKGNAME= ${DISTNAME:S/_/-/} -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= security MASTER_SITES= ftp://ftp.padl.com/pub/ \ http://www.padl.com/download/ @@ -12,7 +12,7 @@ HOMEPAGE= http://www.padl.com/pam_ldap.html COMMENT= Pluggable authentication module for LDAP directories LICENSE= gnu-lgpl-v2 -ONLY_FOR_PLATFORM= NetBSD-[3-9]*-* FreeBSD-*-* +ONLY_FOR_PLATFORM= NetBSD-[3-9]*-* FreeBSD-*-* SunOS-*-* USE_LIBTOOL= yes USE_TOOLS+= gmake |