1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00
freebsd-ports/sysutils/multitail/Makefile
Baptiste Daroussin ced94c6976 Rework multitail to be futur friendly regarding ncurses
Drop useless post-patch which are not doing anything anymore
Patch the Makefile to link to ncursesw if this is the implementation we do use
or in the futur link to ncurses (and panel) when only this version will be left
in base
2019-12-27 16:07:55 +00:00

34 lines
975 B
Makefile

# Created by: Oliver Braun <obraun@FreeBSD.org>
# $FreeBSD$
PORTNAME= multitail
PORTVERSION= 6.5.0
CATEGORIES= sysutils
MASTER_SITES= http://www.vanheusden.com/multitail/ \
http://fossies.org/unix/privat/
MAINTAINER= beat@FreeBSD.org
COMMENT= Tail multiple files on console with ncurses
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/license.txt
USES= alias gmake ncurses tar:tgz
PLIST_FILES= bin/multitail etc/multitail.conf.sample \
man/man1/multitail.1.gz
PORTDOCS= readme.txt license.txt
MAKE_ARGS= NCURSES_IMPL="${NCURSES_IMPL}"
OPTIONS_DEFINE= DOCS
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/multitail ${STAGEDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/multitail.1 ${STAGEDIR}${MANPREFIX}/man/man1
${INSTALL_DATA} ${WRKSRC}/multitail.conf ${STAGEDIR}${PREFIX}/etc/multitail.conf.sample
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/license.txt ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>