mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
828b215af2
"Using tacacs I found that ckfinger() function from maxsess.c module returns wrong count of current sessions for users with "maxsess" parameter established in tac_plus.conf. It happens if Cisco access server works with IOS v 12.x. On the other hand ckfinger() works well with IOS v 11.x Here are patches for both maxsess.c and port's Makefile to fix this problem (but it is just workaround, ckfinger() should be fully rewritten)." From me: changed variable name by prepending string "TAC_", so that tacacs+ ports variables follow an unique scheme. Please note: this doesn't compile with the new TAC_IOS_VERSION variable if you have CFLAGS redefined in /etc/make.conf as: CFLAGS=-pipe -O (or whatever) You have to use CFLAGS+=-pipe -O (or whatever) Mailed to -developers. Am really not sure, what's the culprit here. Fact is, that a part of CFLAGS get lost when compiling the port, if you redefine CFLAGS in /etc/make.conf without the "+" sign ... I personally removed my CFLAGS define in /etc/make.conf as it defaults to -pipe -O, which is fine for me. Submitted by: Sergey E. Levov (serg@informika.ru)
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
# New ports collection makefile for: tac_plus
|
|
# Date created: 4 Mar 1997
|
|
# Whom: Igor Vinokurov <igor@zynaps.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tac_plus
|
|
PORTVERSION= F4.0.4
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp-eng.cisco.com/pub/tacacs/
|
|
DISTNAME= tac_plus.F4.0.4.alpha
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= andreas@FreeBSD.org
|
|
|
|
ALL_TARGET= tac_plus
|
|
MAN1= tac_plus.1
|
|
|
|
# To change the text displayed when users are prompted to enter
|
|
# a username, set appropriately TAC_CHANGE_PROMPT variable.
|
|
.if defined(TAC_CHANGE_PROMPT) && ${TAC_CHANGE_PROMPT} == YES
|
|
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-ba
|
|
.endif
|
|
|
|
# check expiration dates against 'expire' field of master.passwd file
|
|
.if defined(TAC_EXPIRE_MASTER_PASSWD) && ${TAC_EXPIRE_MASTER_PASSWD} == YES
|
|
EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-bb
|
|
.endif
|
|
|
|
# finger output differs for CISCO IOS versions 11 and 12.
|
|
# Define version of your IOS (default is 11):
|
|
# Example: make TAC_IOS_VERSION=12
|
|
#
|
|
.if defined(TAC_IOS_VERSION)
|
|
CFLAGS+= -DTAC_IOS_VERSION=${TAC_IOS_VERSION}
|
|
.else
|
|
CFLAGS+= -DTAC_IOS_VERSION=11
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tac_plus ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/tac_plus.1 ${PREFIX}/man/man1/tac_plus.1
|
|
${INSTALL_DATA} ${FILESDIR}/tac_plus.conf.example ${PREFIX}/etc/
|
|
@if [ ! -f ${PREFIX}/etc/rc.d/tac_plus.sh ]; then \
|
|
${ECHO} "Installing ${PREFIX}/etc/rc.d/tac_plus.sh startup file."; \
|
|
${INSTALL_SCRIPT} -m 751 ${FILESDIR}/tac_plus.sh ${PREFIX}/etc/rc.d/tac_plus.sh; \
|
|
fi
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/tac_plus
|
|
${INSTALL_DATA} ${WRKSRC}/users_guide ${PREFIX}/share/doc/tac_plus
|
|
${INSTALL_SCRIPT} ${WRKSRC}/convert.pl ${PREFIX}/share/doc/tac_plus
|
|
.endif
|
|
|
|
post-install:
|
|
strip ${PREFIX}/sbin/tac_plus
|
|
|
|
.include <bsd.port.mk>
|