Date: Mon, 24 Feb 2014 16:58:36 +0000 (UTC) From: Steven Kreuzer <skreuzer@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345880 - in head/sysutils/multitail: . files Message-ID: <201402241658.s1OGwaJd014983@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: skreuzer Date: Mon Feb 24 16:58:36 2014 New Revision: 345880 URL: http://svnweb.freebsd.org/changeset/ports/345880 QAT: https://qat.redports.org/buildarchive/r345880/ Log: Update to 6.2.1 Approved by: beat (maintainer) Added: head/sysutils/multitail/files/ head/sysutils/multitail/files/patch-mt.c (contents, props changed) head/sysutils/multitail/files/patch-mt.h (contents, props changed) head/sysutils/multitail/files/patch-term.c (contents, props changed) Modified: head/sysutils/multitail/Makefile head/sysutils/multitail/distinfo Modified: head/sysutils/multitail/Makefile ============================================================================== --- head/sysutils/multitail/Makefile Mon Feb 24 16:48:35 2014 (r345879) +++ head/sysutils/multitail/Makefile Mon Feb 24 16:58:36 2014 (r345880) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= multitail -PORTVERSION= 5.2.12 -PORTREVISION= 1 +PORTVERSION= 6.2.1 CATEGORIES= sysutils MASTER_SITES= http://www.vanheusden.com/multitail/ \ http://fossies.org/unix/privat/ Modified: head/sysutils/multitail/distinfo ============================================================================== --- head/sysutils/multitail/distinfo Mon Feb 24 16:48:35 2014 (r345879) +++ head/sysutils/multitail/distinfo Mon Feb 24 16:58:36 2014 (r345880) @@ -1,2 +1,2 @@ -SHA256 (multitail-5.2.12.tgz) = 681d87cd49e11aab1d82ad7818ee639c88a3d305db8accf0859977beda6c493c -SIZE (multitail-5.2.12.tgz) = 163735 +SHA256 (multitail-6.2.1.tgz) = 1e586cd62c3cdb8089062c9670a6d8588359e2f8030b8b18dbc715ea59d92e11 +SIZE (multitail-6.2.1.tgz) = 166049 Added: head/sysutils/multitail/files/patch-mt.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/multitail/files/patch-mt.c Mon Feb 24 16:58:36 2014 (r345880) @@ -0,0 +1,15 @@ +--- mt.c.orig 2014-02-16 09:06:54.000000000 -0500 ++++ mt.c 2014-02-24 14:35:45.000000000 -0500 +@@ -23,8 +23,12 @@ + #include <sys/ioctl.h> + #include <sys/stat.h> + #ifndef AIX ++#if defined(__FreeBSD__) ++#include <termios.h> ++#else + #include <sys/termios.h> /* needed on Solaris 8 */ + #endif ++#endif + #include <sys/time.h> + #include <sys/wait.h> + #include <unistd.h> Added: head/sysutils/multitail/files/patch-mt.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/multitail/files/patch-mt.h Mon Feb 24 16:58:36 2014 (r345880) @@ -0,0 +1,18 @@ +--- mt.h.orig 2014-02-16 09:06:54.000000000 -0500 ++++ mt.h 2014-02-24 14:32:20.000000000 -0500 +@@ -49,8 +49,13 @@ + #endif + + #ifdef UTF8_SUPPORT +- #include <ncursesw/panel.h> +- #include <ncursesw/ncurses.h> ++ #if defined(__FreeBSD__) ++ #include <panel.h> ++ #include <curses.h> ++ #else ++ #include <ncursesw/panel.h> ++ #include <ncursesw/ncurses.h> ++ #endif + #else + #if defined(sun) || defined(__sun) || defined(scoos) || defined(_HPUX_SOURCE) || defined(AIX) || defined(__CYGWIN__) + #include <ncurses/panel.h> Added: head/sysutils/multitail/files/patch-term.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/multitail/files/patch-term.c Mon Feb 24 16:58:36 2014 (r345880) @@ -0,0 +1,15 @@ +--- term.c.orig 2014-02-24 14:33:39.000000000 -0500 ++++ term.c 2014-02-24 14:35:02.000000000 -0500 +@@ -16,8 +16,12 @@ + #include <stropts.h> + #endif + #ifndef AIX ++#if defined(__FreeBSD__) ++#include <termios.h> ++#else + #include <sys/termios.h> /* needed on Solaris 8 */ + #endif ++#endif + #include <sys/socket.h> + #include <netinet/in.h> +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402241658.s1OGwaJd014983>