30 lines
590 B
Makefile
30 lines
590 B
Makefile
|
# New ports collection makefile for: tacshell
|
||
|
# Date created: 13.06.2003
|
||
|
# Whom: Kirill Ponomarew <ponomarew@oberon.net>
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
PORTNAME= tacshell
|
||
|
PORTVERSION= 0.8
|
||
|
CATEGORIES= net
|
||
|
MASTER_SITES= http://www.rezrov.net/software/
|
||
|
|
||
|
MAINTAINER= ponomarew@oberon.net
|
||
|
COMMENT= Shell authentication for TACACS+ protocol
|
||
|
|
||
|
GNU_CONFIGURE= yes
|
||
|
|
||
|
post-install:
|
||
|
.for i in ${PORTNAME}
|
||
|
${STRIP_CMD} ${PREFIX}/bin/${i}
|
||
|
.endfor
|
||
|
.if !defined(NOPORTDOCS)
|
||
|
${MKDIR} ${DOCSDIR}
|
||
|
.for i in README WHATSNEW ChangeLog
|
||
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
||
|
.endfor
|
||
|
.endif
|
||
|
|
||
|
.include <bsd.port.mk>
|