svn commit: r407593 - in head/games/miscom: . files

John Marino marino at FreeBSD.org
Sun Jan 31 08:50:58 UTC 2016


Author: marino
Date: Sun Jan 31 08:50:56 2016
New Revision: 407593
URL: https://svnweb.freebsd.org/changeset/ports/407593

Log:
  games/miscom: USES+=ncurses, respect LDFLAGS

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

Modified: head/games/miscom/Makefile
==============================================================================
--- head/games/miscom/Makefile	Sun Jan 31 08:46:22 2016	(r407592)
+++ head/games/miscom/Makefile	Sun Jan 31 08:50:56 2016	(r407593)
@@ -13,6 +13,8 @@ COMMENT=	Atari "Missile Command" clone
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+USES=		ncurses
+
 ALL_TARGET=	# empty
 
 MAKE_ARGS=	CC="${CC}" DATADIR="${DATADIR}" \

Added: head/games/miscom/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/miscom/files/patch-Makefile	Sun Jan 31 08:50:56 2016	(r407593)
@@ -0,0 +1,11 @@
+--- Makefile.orig	1997-03-15 21:37:42 UTC
++++ Makefile
+@@ -41,7 +41,7 @@ LIBS=-lncurses
+ FILES=main.o draw.o wwn.o fire.o unix.o level.o sound.o
+ 
+ miscom: $(FILES)
+-	$(CC) $(CFLAGS) -o miscom $(FILES) $(LIBS)
++	$(CC) $(CFLAGS) -o miscom $(FILES) $(LDFLAGS) $(LIBS)
+ 
+ install:
+ 	install -m 511 miscom $(BINDIR)


More information about the svn-ports-all mailing list