1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/net/tac_plus4/Makefile
Stefan Eßer 819f25b36d */*: Remove redundant '-[0-9]*' from CONFLICTS
The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").

Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".

Approved by:	portmgr (blanket)
2021-10-29 11:50:18 +02:00

57 lines
1.5 KiB
Makefile

# Created by: Igor Vinokurov <igor@zynaps.ru>
PORTNAME= tac_plus
PORTVERSION= F4.0.4.28
CATEGORIES= net security
MASTER_SITES= ftp://ftp.shrubbery.net/pub/${PORTNAME}/
DISTNAME= tacacs-${PORTVERSION}
MAINTAINER= marcus@FreeBSD.org
COMMENT= Cisco remote authentication/authorization/accounting server
GNU_CONFIGURE= yes
USES= bison cpe perl5 libtool
USE_PERL5= build
USE_RC_SUBR= tac_plus
USE_LDCONFIG= yes
CONFIGURE_ARGS= --with-groupid=$$(/usr/bin/id -g tacacs 2>/dev/null || echo '559') \
--with-userid=$$(/usr/bin/id -u tacacs 2>/dev/null || echo '559')
CPE_VENDOR= cisco
USERS= tacacs
GROUPS= tacacs
CONFLICTS= ru-tac+ia tac_plus-libradius
MAKE_JOBS_UNSAFE= yes
OPTIONS_DEFINE= DOCS
# check expiration dates against 'expire' field of master.passwd file
.if defined(TAC_EXPIRE_MASTER_PASSWD)
EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-bb
.endif
.if exists(/usr/include/skey.h) && !defined(WITHOUT_SKEY)
CONFIGURE_ARGS+= --with-skey
.else
CONFIGURE_ARGS+= --without-skey
.endif
.if exists(/usr/include/opie.h) && !defined(WITHOUT_OPIE)
CPPFLAGS+= -DOPIE
LIBS+= -lopie -lmd
.endif
post-patch:
@${REINPLACE_CMD} -e 's|skey_get_algorithm|skeychallenge|g' \
${WRKSRC}/configure
post-install:
${INSTALL_DATA} ${FILESDIR}/tac_plus.conf.example ${STAGEDIR}${PREFIX}/etc
@${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/tac_plus
${INSTALL_DATA} ${WRKSRC}/users_guide ${STAGEDIR}${PREFIX}/share/doc/tac_plus
${INSTALL_SCRIPT} ${WRKSRC}/tac_convert ${STAGEDIR}${PREFIX}/share/doc/tac_plus
.include <bsd.port.mk>