svn commit: r408099 - head/games/greed

John Marino marino at FreeBSD.org
Thu Feb 4 21:27:40 UTC 2016


Author: marino
Date: Thu Feb  4 21:27:38 2016
New Revision: 408099
URL: https://svnweb.freebsd.org/changeset/ports/408099

Log:
  games/greed: document ncurses requirement (USES+=ncurses)
  
  Also link with libncurses, not libcurses.
  
  approved by:	infrastructure blanket

Modified:
  head/games/greed/Makefile

Modified: head/games/greed/Makefile
==============================================================================
--- head/games/greed/Makefile	Thu Feb  4 21:26:16 2016	(r408098)
+++ head/games/greed/Makefile	Thu Feb  4 21:27:38 2016	(r408099)
@@ -12,9 +12,10 @@ COMMENT=	Text puzzle game with the aim o
 
 LICENSE=	BSD3CLAUSE
 
+USES=		ncurses
 SCOREFILE?=	/var/games/greed.hs
 CFLAGS+=	-DSCOREFILE=\"${SCOREFILE}\" -DNOTBSD -DRELEASE=\"${PORTVERSION}\"
-LDFLAGS+=	-lcurses
+LDFLAGS+=	-lncurses
 PLIST_SUB+=	SCOREFILE=${SCOREFILE}
 
 do-build:


More information about the svn-ports-all mailing list