Update multitail to version 2.7.1

--
Patch accepted by author, therefore removed.
Several bugfixes and some enhancements.
Changelog: http://www.vanheusden.com/multitail/changelog.html
This commit is contained in:
margarida 2003-06-01 19:19:17 +00:00
parent f2a2c184ce
commit 5c8194c1b0
3 changed files with 16 additions and 38 deletions

View File

@ -1,15 +1,15 @@
# $OpenBSD: Makefile,v 1.1.1.1 2003/05/04 17:47:42 margarida Exp $
# $OpenBSD: Makefile,v 1.2 2003/06/01 19:19:17 margarida Exp $
COMMENT= "multi-window tail(1) utility"
COMMENT= "multi-window tail(1) utility"
DISTNAME= multitail-2.4
CATEGORIES= sysutils
DISTNAME= multitail-2.7.1
CATEGORIES= sysutils
HOMEPAGE= http://www.vanheusden.com/multitail/
HOMEPAGE= http://www.vanheusden.com/multitail/
MASTER_SITES= ${HOMEPAGE}
MASTER_SITES= ${HOMEPAGE}
MAINTAINER= Margarida Sequeira <margarida@openbsd.org>
MAINTAINER= Margarida Sequeira <margarida@openbsd.org>
# GPL
PERMIT_PACKAGE_CDROM= Yes
@ -17,13 +17,15 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
EXTRACT_SUFX= .tgz
EXTRACT_SUFX= .tgz
NO_REGRESS= Yes
NO_REGRESS= Yes
SEPARATE_BUILD= concurrent
SEPARATE_BUILD= concurrent
LDFLAGS= -lcurses -lutil
LDFLAGS= -lcurses -lutil
WRKSRC= ${WRKDIR}/multitail-2.7
do-build:
cd ${WRKBUILD}; \

View File

@ -1,3 +1,3 @@
MD5 (multitail-2.4.tgz) = bc1eb0678e5406452795b4d14d0eab7f
RMD160 (multitail-2.4.tgz) = 24faf18baafedb0740a6e8c0750d726df76b6856
SHA1 (multitail-2.4.tgz) = 2d8c6387546b4cb9631a975f70586c4143499a03
MD5 (multitail-2.7.1.tgz) = 212c34211f66e6fb4680e0ed9ce53e7e
RMD160 (multitail-2.7.1.tgz) = 848943e438886cc1231588346a0ab87e69c2d6a0
SHA1 (multitail-2.7.1.tgz) = d427a361222594b8bfbde069508e47484f3d0ea9

View File

@ -1,24 +0,0 @@
$OpenBSD: patch-mt_c,v 1.1.1.1 2003/05/04 17:47:42 margarida Exp $
--- mt.c.orig Fri May 2 18:14:01 2003
+++ mt.c Fri May 2 18:16:37 2003
@@ -188,7 +188,7 @@ int start_tail(int f_index, char retry,
if (-1 == dup(fd_slave)) error_exit("dup failed\n");
/* start process */
- if (-1 == execlp("/bin/sh", "/bin/sh", "-c", pi[f_index].filename, NULL)) error_exit("execlp of %s failed\n", pi[f_index].filename);
+ if (-1 == execlp("/bin/sh", "/bin/sh", "-c", pi[f_index].filename, (void *)NULL)) error_exit("execlp of %s failed\n", pi[f_index].filename);
exit(1);
}
@@ -269,9 +269,9 @@ int start_tail(int f_index, char retry,
/* run tail! */
#if defined(sun)
- if (-1 == execlp("tail", "tail", n_lines, pi[f_index].filename, NULL)) error_exit("execlp of tail failed");
+ if (-1 == execlp("tail", "tail", n_lines, pi[f_index].filename, (void *)NULL)) error_exit("execlp of tail failed");
#else
- if (-1 == execlp("tail", "tail", n_lines, follow, pi[f_index].filename, NULL)) error_exit("execlp of tail failed");
+ if (-1 == execlp("tail", "tail", n_lines, follow, pi[f_index].filename, (void *)NULL)) error_exit("execlp of tail failed");
#endif
/* if execlp returns, an error occured */