2003-04-09 23:50:02 +02:00
|
|
|
# New ports collection makefile for: multitail
|
|
|
|
# Date created: 10 April 2003
|
|
|
|
# Whom: Oliver Braun <obraun@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= multitail
|
2008-05-20 20:33:38 +02:00
|
|
|
PORTVERSION= 5.2.2
|
2003-04-09 23:50:02 +02:00
|
|
|
CATEGORIES= sysutils
|
|
|
|
MASTER_SITES= http://www.vanheusden.com/multitail/
|
|
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
|
2008-11-09 08:47:01 +01:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-04-09 23:50:02 +02:00
|
|
|
COMMENT= Tail multiple files on console with ncurses
|
|
|
|
|
2004-05-28 19:25:41 +02:00
|
|
|
USE_GMAKE= yes
|
2003-04-09 23:50:02 +02:00
|
|
|
|
|
|
|
MAN1= multitail.1
|
2006-09-08 15:20:52 +02:00
|
|
|
PLIST_FILES= bin/multitail etc/multitail.conf.sample
|
|
|
|
PORTDOCS= readme.txt license.txt
|
2003-04-09 23:50:02 +02:00
|
|
|
|
|
|
|
post-patch:
|
2003-10-07 20:27:03 +02:00
|
|
|
@${REINPLACE_CMD} -e 's,/etc/multitail.conf,${PREFIX}/etc/multitail.conf,' \
|
2006-06-09 16:34:50 +02:00
|
|
|
${WRKSRC}/mt.c ${WRKSRC}/Makefile
|
2003-04-09 23:50:02 +02:00
|
|
|
|
|
|
|
do-install:
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/multitail ${PREFIX}/bin/
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/multitail.1 ${MANPREFIX}/man/man1
|
2004-06-01 09:17:15 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/multitail.conf ${PREFIX}/etc/multitail.conf.sample
|
2003-10-07 20:27:03 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
${MKDIR} ${DOCSDIR}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/license.txt ${DOCSDIR}
|
|
|
|
.endif
|
2003-04-09 23:50:02 +02:00
|
|
|
|
2007-04-05 22:41:02 +02:00
|
|
|
.include <bsd.port.mk>
|