Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Jan 2016 08:50:56 +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: r407593 - in head/games/miscom: . files
Message-ID:  <201601310850.u0V8ouJR077595@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601310850.u0V8ouJR077595>