svn commit: r407590 - head/games/xtgyoretsu/files

John Marino marino at FreeBSD.org
Sun Jan 31 08:40:12 UTC 2016


Author: marino
Date: Sun Jan 31 08:40:10 2016
New Revision: 407590
URL: https://svnweb.freebsd.org/changeset/ports/407590

Log:
  games/xtgyoretsu: document ncurses requirement (USES+=ncurses)
  
  while here:
    * repect LDFLAGS
    * Also specify lncurses instead of lcurses.  On FreeBSD, libcurses is
      symlinked to lncurses, but the former does not exist in ports ncurses.
  
  approved by:	infrastructure blanket

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

Added: head/games/xtgyoretsu/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/xtgyoretsu/files/patch-Makefile	Sun Jan 31 08:40:10 2016	(r407590)
@@ -0,0 +1,11 @@
+--- Makefile.orig	2014-08-21 16:30:06 UTC
++++ Makefile
+@@ -5,7 +5,7 @@ DESTDIR?=	#empty
+ PREFIX?=	/usr
+ 
+ all:
+-	${CC} ${CFLAGS} -o xtgyoretsu xtgyoretsu.c -lcurses -lm
++	${CC} ${CFLAGS} -o xtgyoretsu xtgyoretsu.c ${LDFLAGS} -lncurses -lm
+ 	strip --strip-unneeded xtgyoretsu
+ 
+ install:


More information about the svn-ports-all mailing list