05317facbe
The Fedora 10 infrastructure ports have been in use since June 2009 and, while having served a great deed, have become unsupported upstream and hence affected by unfixed security vulnerabilities. In addition to that, many recent Linux binaries need newer libc / stdlibc++ versions. This commit adds the linux-c6- userland as drop-in replacement for the -f10 infrastructure, as well as upgrading the linux_base-c6 port to CentOS 6.5. If you want to switch to linux-c6 ports, please define at /etc/make.conf: OVERRIDE_LINUX_BASE_PORT=c6 OVERRIDE_LINUX_NONBASE_PORTS=c6 Additionally, please add the following line to /etc/sysctl.conf: compat.linux.osrelease=2.6.18 Upgrading procedures are shown in /usr/ports/UPDATING. This work has been inspired by Artyom Mirgorodskiy's post to emulation@ in November 2013, using and extending mav@'s work. It has been tested extensively and most reported issues were already fixed. Please report any additional bug or "features" to the emulation mailing list. Many thanks to: mav@, rene@, allanjude@, netchild@, antoine@, everyone who's filed Issues and Pull requests on GitHub, PR: 186820 Differential Revision: https://reviews.freebsd.org/D793 Reviewed by: allanjude, antoine, bapt, rene Approved by: portmgr (antoine, bapt) Approved by: koobs (mentor) Sponsored by: Perceivon Hosting Inc.
82 lines
2.6 KiB
Makefile
82 lines
2.6 KiB
Makefile
# Created by: rskinner port_maintainer@herveybayaustralia.com.au
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nss_ldap
|
|
PORTVERSION= ${NSS_LDAP_VERSION}
|
|
PORTREVISION= 1
|
|
CATEGORIES= net linux
|
|
MASTER_SITES= ftp://ftp.pbone.net/mirror/archive.fedoraproject.org/fedora/linux/updates/testing/10/i386/ \
|
|
http://archives.fedoraproject.org/pub/archive/fedora/linux/updates/testing/10/i386/ \
|
|
http://herveybayaustralia.com.au/ports/distfiles/
|
|
|
|
MAINTAINER= emulation@FreeBSD.org
|
|
COMMENT= RFC 2307 NSS Module (Linux Fedora 10)
|
|
|
|
#LICENSE= GPLv2
|
|
#NO_LICENSES_INSTALL=yes # license framework does not rm the "share" directory
|
|
|
|
OPTIONS_DEFINE= DOCS PAM
|
|
|
|
NSS_LDAP_VERSION=264
|
|
|
|
USE_LINUX= f10
|
|
USE_LINUX_RPM= yes
|
|
USE_LINUX_PREFIX=yes
|
|
|
|
RPMVERSION= 6.fc10
|
|
USE_LDCONFIG= yes
|
|
|
|
DOCSDIR= ${PREFIX}/usr/share/doc/${PORTNAME}-${NSS_LDAP_VERSION}
|
|
|
|
MANPREFIX= ${PREFIX}/usr/share
|
|
|
|
OPTIONS_SUB= yes
|
|
|
|
PORTDOCS= ANNOUNCE.nss_ldap AUTHORS.nss_ldap COPYING.nss_ldap \
|
|
ChangeLog.nss_ldap NEWS.nss_ldap README.TLS README.nss_ldap \
|
|
ldap.conf.nss_ldap ldapns.schema ns-pwd-policy.schema \
|
|
nsswitch.ldap
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MPAM}
|
|
PORTDOCS+= AUTHORS.pam_ldap COPYING.LIB.pam_ldap COPYING.pam_ldap \
|
|
ChangeLog.pam_ldap NEWS.pam_ldap README.pam_ldap \
|
|
ldap.conf.pam_ldap pam.d/chfn pam.d/chsh pam.d/ftp \
|
|
pam.d/gdm pam.d/halt pam.d/imap pam.d/kde pam.d/linuxconf \
|
|
pam.d/linuxconf-pair pam.d/login pam.d/mcserv pam.d/other \
|
|
pam.d/passwd pam.d/pop pam.d/poweroff pam.d/ppp pam.d/reboot \
|
|
pam.d/rexec pam.d/rlogin pam.d/rsh pam.d/samba pam.d/shutdown \
|
|
pam.d/ssh pam.d/su pam.d/vlock pam.d/xdm pam.d/xlock \
|
|
pam.d/xscreensaver pam.d/xserver
|
|
.endif
|
|
|
|
pre-fetch:
|
|
.if !${PORT_OPTIONS:MPAM}
|
|
@${ECHO_MSG} "Select PAM if you require more advanced ldap support in the linuxulator"
|
|
.endif
|
|
|
|
post-extract:
|
|
@if [ -f ${WRKDIR}/etc/ldap.conf ]; then \
|
|
${MV} ${WRKDIR}/etc/ldap.conf ${WRKDIR}/etc/ldap.conf.dist; \
|
|
fi
|
|
.if !${PORT_OPTIONS:MPAM}
|
|
@if [ -f ${WRKDIR}/lib/security/pam_ldap.so ]; then \
|
|
${RM} -rf ${WRKDIR}/lib/; \
|
|
fi
|
|
@if [ -f ${WRKDIR}/usr/share/doc/${PORTNAME}-${NSS_LDAP_VERSION}/COPYING.pam_ldap ]; then \
|
|
${RM} ${WRKDIR}/usr/share/doc/${PORTNAME}-${NSS_LDAP_VERSION}/*.pam*; \
|
|
${RM} -rf ${WRKDIR}/usr/share/doc/${PORTNAME}-${NSS_LDAP_VERSION}/pam.d; \
|
|
fi
|
|
@if [ -f ${WRKDIR}/usr/share/man/man5/pam_ldap.5.gz ]; then \
|
|
${RM} ${WRKDIR}/usr/share/man/man5/pam_ldap.5.gz; \
|
|
fi
|
|
.else
|
|
.if !${PORT_OPTIONS:MDOCS}
|
|
@if [ -d ${WRKDIR}/usr/share/doc/${PORTNAME}-${NSS_LDAP_VERSION}/pam.d ]; then \
|
|
${RM} -rf ${WRKDIR}/usr/share/doc/${PORTNAME}-${NSS_LDAP_VERSION}/pam.d/; \
|
|
fi
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|