From owner-svn-ports-all@FreeBSD.ORG Mon Feb 24 16:58:37 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA7ED76D; Mon, 24 Feb 2014 16:58:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B37281C7A; Mon, 24 Feb 2014 16:58:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1OGwbBH014990; Mon, 24 Feb 2014 16:58:37 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1OGwaJd014983; Mon, 24 Feb 2014 16:58:36 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201402241658.s1OGwaJd014983@svn.freebsd.org> From: Steven Kreuzer Date: Mon, 24 Feb 2014 16:58:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345880 - in head/sysutils/multitail: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2014 16:58:38 -0000 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 + #include + #ifndef AIX ++#if defined(__FreeBSD__) ++#include ++#else + #include /* needed on Solaris 8 */ + #endif ++#endif + #include + #include + #include 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 +- #include ++ #if defined(__FreeBSD__) ++ #include ++ #include ++ #else ++ #include ++ #include ++ #endif + #else + #if defined(sun) || defined(__sun) || defined(scoos) || defined(_HPUX_SOURCE) || defined(AIX) || defined(__CYGWIN__) + #include 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 + #endif + #ifndef AIX ++#if defined(__FreeBSD__) ++#include ++#else + #include /* needed on Solaris 8 */ + #endif ++#endif + #include + #include +