Date: Sun, 31 Jan 2016 09:48:53 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407601 - in head/games/drm: . files Message-ID: <201601310948.u0V9mrE6095514@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601310948.u0V9mrE6095514>