2015-05-18 22:05:38 +00:00
|
|
|
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
|
2004-05-04 21:27:36 +00:00
|
|
|
|
2015-05-18 22:05:38 +00:00
|
|
|
PortSystem 1.0
|
2004-05-04 21:27:36 +00:00
|
|
|
|
2015-05-18 22:05:38 +00:00
|
|
|
name multitail
|
2019-11-08 05:46:01 -06:00
|
|
|
version 6.5.0
|
|
|
|
|
revision 0
|
2015-05-18 22:05:38 +00:00
|
|
|
categories sysutils
|
|
|
|
|
license GPL-2
|
|
|
|
|
maintainers nomaintainer
|
|
|
|
|
platforms darwin
|
2004-05-04 21:27:36 +00:00
|
|
|
|
2015-05-18 22:05:38 +00:00
|
|
|
description Tail multiple files in one terminal at once
|
|
|
|
|
long_description MultiTail lets you view one or multiple files like the \
|
|
|
|
|
original tail program. The difference is that it creates multiple \
|
|
|
|
|
windows on your console (with ncurses). Merging of 2 or even more \
|
|
|
|
|
logfiles is possible. It can also use colors while displaying the \
|
|
|
|
|
logfiles (through regular expressions), for faster recognition of what \
|
|
|
|
|
is important and what not. It can also filter lines (again with \
|
|
|
|
|
regular expressions). It has interactive menus for editing given \
|
|
|
|
|
regular expressions and deleting and adding windows. One can also have \
|
|
|
|
|
windows with the output of shell scripts and other software. When \
|
|
|
|
|
viewing the output of external software, MultiTail can mimic the \
|
|
|
|
|
functionality of tools like 'watch' and such.
|
2004-05-04 21:27:36 +00:00
|
|
|
|
2021-06-21 08:06:46 -05:00
|
|
|
homepage https://web.archive.org/web/20200929062205/https://www.vanheusden.com/multitail/
|
2015-05-18 22:05:38 +00:00
|
|
|
master_sites ${homepage}
|
|
|
|
|
extract.suffix .tgz
|
2014-05-28 04:27:37 +00:00
|
|
|
|
2019-11-08 05:46:01 -06:00
|
|
|
checksums rmd160 7a6261e47bfe1563c237541e1b8968785d46de38 \
|
|
|
|
|
sha256 b29d5e77dfc663c7500f78da67de5d82d35d9417a4741a89a18ce9ee7bdba9ed \
|
|
|
|
|
size 157578
|
|
|
|
|
|
|
|
|
|
depends_build port:pkgconfig
|
2014-05-28 04:27:37 +00:00
|
|
|
|
2015-05-18 22:05:38 +00:00
|
|
|
depends_lib port:ncurses
|
|
|
|
|
|
2014-05-28 04:27:37 +00:00
|
|
|
post-patch {
|
2015-05-18 22:05:38 +00:00
|
|
|
reinplace "s|\$(DESTDIR)/usr|\$(DESTDIR)${prefix}|g" \
|
|
|
|
|
${worksrcpath}/makefile.macosx
|
2019-11-08 05:46:01 -06:00
|
|
|
reinplace "s|\$(DESTDIR)/etc|\$(DESTDIR)${prefix}/etc|g" \
|
|
|
|
|
${worksrcpath}/makefile.macosx
|
|
|
|
|
reinplace "s|local/local|local|g" \
|
|
|
|
|
${worksrcpath}/makefile.macosx
|
2014-05-28 04:27:37 +00:00
|
|
|
}
|
2006-09-03 08:25:56 +00:00
|
|
|
|
2015-05-18 22:05:38 +00:00
|
|
|
use_configure no
|
2004-05-04 21:27:36 +00:00
|
|
|
|
2014-05-28 04:27:37 +00:00
|
|
|
variant universal {}
|
2004-05-04 21:27:36 +00:00
|
|
|
|
2015-05-18 22:05:38 +00:00
|
|
|
build.args -f makefile.macosx \
|
|
|
|
|
CC="${configure.cc} [get_canonical_archflags cc]"
|
2014-05-28 04:27:37 +00:00
|
|
|
|
2017-02-10 03:20:01 +11:00
|
|
|
destroot.args {*}${build.args}
|
2014-05-28 04:27:37 +00:00
|
|
|
|
2021-06-21 08:06:46 -05:00
|
|
|
livecheck.type none
|