From owner-svn-ports-all@freebsd.org Thu Feb 4 17:26:07 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B68CCA9CAC3; Thu, 4 Feb 2016 17:26:07 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 87632FB1; Thu, 4 Feb 2016 17:26:07 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u14HQ6fw056275; Thu, 4 Feb 2016 17:26:06 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u14HQ6UW056273; Thu, 4 Feb 2016 17:26:06 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201602041726.u14HQ6UW056273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 4 Feb 2016 17:26:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408061 - in head/sysutils/wtail: . 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.20 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: Thu, 04 Feb 2016 17:26:07 -0000 Author: marino Date: Thu Feb 4 17:26:06 2016 New Revision: 408061 URL: https://svnweb.freebsd.org/changeset/ports/408061 Log: sysutils/wtail: document ncurses requirement (USES+=ncurses) Also link with libncurses rather than libcurses. approved by: infrastructure blanket Added: head/sysutils/wtail/files/ head/sysutils/wtail/files/patch-Makefile (contents, props changed) Modified: head/sysutils/wtail/Makefile Modified: head/sysutils/wtail/Makefile ============================================================================== --- head/sysutils/wtail/Makefile Thu Feb 4 17:25:50 2016 (r408060) +++ head/sysutils/wtail/Makefile Thu Feb 4 17:26:06 2016 (r408061) @@ -9,6 +9,7 @@ MASTER_SITES= http://www.teaser.fr/~amaj MAINTAINER= mich@FreeBSD.org COMMENT= Wtail does the equivalent of tail -f on several files at once +USES= ncurses OPTIONS_DEFINE= DOCS do-install: Added: head/sysutils/wtail/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/wtail/files/patch-Makefile Thu Feb 4 17:26:06 2016 (r408061) @@ -0,0 +1,11 @@ +--- Makefile.orig 2003-01-13 23:12:57 UTC ++++ Makefile +@@ -51,7 +51,7 @@ dist: + arc=$(ARC); cd $(TMPDIR) && tar -cf - $$arc | gzip >$$arc.tar.gz + + wtail: $(OBJ) +- $(CC) $(LDFLAGS) -o $@ $(OBJ) -lcurses ++ $(CC) $(LDFLAGS) -o $@ $(OBJ) -lncurses + + version.c: VERSION + cat VERSION | sed 's/.*/const char version[] = "&";/' >$@