svn commit: r407601 - in head/games/drm: . files

John Marino marino at FreeBSD.org
Sun Jan 31 09:48:55 UTC 2016


Author: marino
Date: Sun Jan 31 09:48:53 2016
New Revision: 407601
URL: https://svnweb.freebsd.org/changeset/ports/407601

Log:
  games/drm: USES+= ncurses, respect LDFLAGS, use ncurses over curses

Modified:
  head/games/drm/Makefile
  head/games/drm/files/patch-Makefile

Modified: head/games/drm/Makefile
==============================================================================
--- head/games/drm/Makefile	Sun Jan 31 09:43:55 2016	(r407600)
+++ head/games/drm/Makefile	Sun Jan 31 09:48:53 2016	(r407601)
@@ -11,7 +11,7 @@ MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Very simple Tetris-style game
 
 ALL_TARGET=	bugs
-USES=		tar:Z
+USES=		ncurses tar:Z
 
 OPTIONS_DEFINE=	DOCS
 

Modified: head/games/drm/files/patch-Makefile
==============================================================================
--- head/games/drm/files/patch-Makefile	Sun Jan 31 09:43:55 2016	(r407600)
+++ head/games/drm/files/patch-Makefile	Sun Jan 31 09:48:53 2016	(r407601)
@@ -1,5 +1,5 @@
---- Makefile	Tue Jun 16 03:13:11 1992
-+++ /home/andy/tmp/wrk/Makefile	Tue Aug  4 17:02:23 1998
+--- Makefile.orig	1992-06-16 03:13:11 UTC
++++ Makefile
 @@ -1,17 +1,17 @@
  #makefile for BUGS I - SRN 7/12/91 
  # modified for Linux on 6/15/92 Ken Corey
@@ -14,7 +14,7 @@
  bugs :  $(OBJS)   
  #use above line if parallel processing is not supported
 -	${CC} ${CFLAGS} -o bugs $(OBJS) -lcurses -ltermcap 
-+	${CC} ${CFLAGS} -o bugs $(OBJS) -lcurses
++	${CC} ${CFLAGS} -o bugs $(OBJS) $(LDFLAGS) -lncurses
  
  main.o: main.c info.h
 -	${CC} ${CFLAGS} -DLINUX -o main.o main.c


More information about the svn-ports-head mailing list