mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
32 lines
715 B
Makefile
32 lines
715 B
Makefile
# Created by: C.S. Peron <bugs@sqrt.ca>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= termlog
|
|
PORTVERSION= 2.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= security sysutils
|
|
MASTER_SITES= http://www.seccuris.com/documents/downloads/
|
|
MASTER_SITE_SUBDIR= termlog
|
|
|
|
MAINTAINER= csjp@FreeBSD.org
|
|
COMMENT= Monitor or log multiple system terminals synchronously
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
MAN1= termlog.1
|
|
PLIST_FILES= bin/termlog
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} > 900007
|
|
BROKEN= fails to build with new utmpx
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/termlog ${PREFIX}/bin/termlog
|
|
${INSTALL_MAN} ${WRKSRC}/termlog.1 ${MANPREFIX}/man/man1/termlog.1
|
|
|
|
.include <bsd.port.post.mk>
|