openbsd-ports/sysutils/multitail/Makefile
margarida 05bb2ebc95 Initial import of multitail-2.4
--
multitail allows the viewing of one or multiple files like
the original tail(1) program. 
The difference is that this program creates multiple windows
windows on the console (with ncurses). It can also use colors
while displaying the logfiles for faster recognizing which
lines are important and which are not. It is optimized for
terminal-sessions through slow links.
2003-05-04 17:47:42 +00:00

40 lines
866 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2003/05/04 17:47:42 margarida Exp $
COMMENT= "multi-window tail(1) utility"
DISTNAME= multitail-2.4
CATEGORIES= sysutils
HOMEPAGE= http://www.vanheusden.com/multitail/
MASTER_SITES= ${HOMEPAGE}
MAINTAINER= Margarida Sequeira <margarida@openbsd.org>
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
EXTRACT_SUFX= .tgz
NO_REGRESS= Yes
SEPARATE_BUILD= concurrent
LDFLAGS= -lcurses -lutil
do-build:
cd ${WRKBUILD}; \
${CC} ${CFLAGS} -c ${WRKSRC}/mt.c; \
${CC} ${CFLAGS} -c ${WRKSRC}/error.c; \
${CC} ${CFLAGS} -c ${WRKSRC}/my_pty.c; \
${CC} ${CFLAGS} mt.o error.o my_pty.o ${LDFLAGS} -o multitail
do-install:
${INSTALL_PROGRAM} ${WRKBUILD}/multitail ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/multitail.1 ${PREFIX}/man/man1
.include <bsd.port.mk>