svn commit: r408084 - in head/games/bs: . files

John Marino marino at FreeBSD.org
Thu Feb 4 19:34:38 UTC 2016


Author: marino
Date: Thu Feb  4 19:34:36 2016
New Revision: 408084
URL: https://svnweb.freebsd.org/changeset/ports/408084

Log:
  games/bs: document ncurses rqmt (USES+=ncurses), respect LDFLAGS
  
  approved by:	infrastructure blanket

Added:
  head/games/bs/files/
  head/games/bs/files/patch-Makefile   (contents, props changed)
Modified:
  head/games/bs/Makefile

Modified: head/games/bs/Makefile
==============================================================================
--- head/games/bs/Makefile	Thu Feb  4 19:32:55 2016	(r408083)
+++ head/games/bs/Makefile	Thu Feb  4 19:34:36 2016	(r408084)
@@ -11,7 +11,7 @@ COMMENT=	Battleships solitaire game with
 
 LICENSE=	BSD3CLAUSE
 
-USES=		gmake
+USES=		gmake ncurses
 MAKE_ARGS=	CC="${CC}"
 ALL_TARGET=	# empty
 

Added: head/games/bs/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/bs/files/patch-Makefile	Thu Feb  4 19:34:36 2016	(r408084)
@@ -0,0 +1,11 @@
+--- Makefile.orig	2016-02-04 19:19:31 UTC
++++ Makefile
+@@ -8,7 +8,7 @@ CC = gcc
+ DESTDIR = 
+ 
+ bs: bs.c
+-	$(CC) $(CFLAGS) -o bs bs.c -lncurses
++	$(CC) $(CFLAGS) -o bs bs.c $(LDFLAGS) -lncurses
+ 
+ bs.6: bs.xml
+ 	xmlto man bs.xml


More information about the svn-ports-all mailing list