Date: Thu, 4 Feb 2016 17:26:06 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408061 - in head/sysutils/wtail: . files Message-ID: <201602041726.u14HQ6UW056273@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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[] = "&";/' >$@
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602041726.u14HQ6UW056273>