svn commit: r408083 - in head/games/bluemoon: . files

John Marino marino at FreeBSD.org
Thu Feb 4 19:32:56 UTC 2016


Author: marino
Date: Thu Feb  4 19:32:55 2016
New Revision: 408083
URL: https://svnweb.freebsd.org/changeset/ports/408083

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

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

Modified: head/games/bluemoon/Makefile
==============================================================================
--- head/games/bluemoon/Makefile	Thu Feb  4 19:29:58 2016	(r408082)
+++ head/games/bluemoon/Makefile	Thu Feb  4 19:32:55 2016	(r408083)
@@ -11,7 +11,7 @@ COMMENT=	Blue Moon card solitaire
 
 LICENSE=	BSD3CLAUSE
 
-USES=		gmake
+USES=		gmake ncurses
 ALL_TARGET=	${PORTNAME}
 
 PLIST_FILES=	bin/${PORTNAME} \

Added: head/games/bluemoon/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/bluemoon/files/patch-Makefile	Thu Feb  4 19:32:55 2016	(r408083)
@@ -0,0 +1,11 @@
+--- Makefile.orig	2014-05-21 12:29:36 UTC
++++ Makefile
+@@ -6,7 +6,7 @@ SOURCES = README COPYING NEWS Makefile c
+ CFLAGS=-O
+ 
+ bluemoon: bluemoon.c
+-	cc $(CFLAGS) -DRELEASE=\"$(VERS)\" bluemoon.c -lncurses -o bluemoon
++	$(CC) $(CFLAGS) -DRELEASE=\"$(VERS)\" bluemoon.c $(LDFLAGS) -lncurses -o bluemoon
+ 
+ bluemoon.6: bluemoon.xml
+ 	xmlto man bluemoon.xml


More information about the svn-ports-all mailing list