svn commit: r408061 - in head/sysutils/wtail: . files

John Marino marino at FreeBSD.org
Thu Feb 4 17:26:07 UTC 2016


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 at 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[] = "&";/' >$@


More information about the svn-ports-all mailing list