pkgsrc/net/samba35/INSTALL.nss_winbind
sbd cd02f563d8 Sync net/samba35 with the below changes as it uses net/samba/options.mk.
Bump PKGREVISION

---
   Module Name:	pkgsrc
   Committed By:	sbd
   Date:		Sun Aug 19 07:28:36 UTC 2012

   Modified Files:
   	pkgsrc/net/samba: INSTALL.nss_winbind Makefile options.mk
   Added Files:
   	pkgsrc/net/samba: DEINSTALL.nss_winbind

   Log Message:
   NSS winbind option install script fixes:

     1) Move the INSTALL_TEMPLATES line to the 'winbind' option section.
     2) Enable the install script on all platforms.
     3) Use the value of ${NSS_WINBIND} in the script as the name of the
        library (should work on all platforms).
     4) In the install script only create the symlink if ${NSS_WINBIND} doesn't
        start with '@comment' (i.e. no nss winbind on this platform) and the
        target file exists and the symlink _doesn't_ already exist.
     5) Create a DEINSTALL_TEMPLATES to remove the nss winbind symlink if it
        exists and point to the correct target.

   Bump PKGREVISION.


   To generate a diff of this commit:
   cvs rdiff -u -r0 -r1.1 pkgsrc/net/samba/DEINSTALL.nss_winbind
   cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/samba/INSTALL.nss_winbind
   cvs rdiff -u -r1.220 -r1.221 pkgsrc/net/samba/Makefile
   cvs rdiff -u -r1.29 -r1.30 pkgsrc/net/samba/options.mk
2012-09-11 07:50:50 +00:00

17 lines
420 B
Text

# $NetBSD: INSTALL.nss_winbind,v 1.2 2012/09/11 07:50:50 sbd Exp $
case ${STAGE} in
POST-INSTALL)
NSS_WINBIND='@NSS_WINBIND@'
case $NSS_WINBIND in
"@comment *") ;;
*)
if ${TEST} -f ${PREFIX}/${NSS_WINBIND} && \
${TEST} ! -e /usr/lib/${NSS_WINBIND##*/} ;then
${ECHO} "Creating /usr/lib/${NSS_WINBIND##*/} symlink."
${LN} -sf ${PREFIX}/${NSS_WINBIND} /usr/lib/${NSS_WINBIND##*/}
fi
;;
esac
;;
esac