From owner-svn-ports-all@freebsd.org Thu Feb 4 19:34:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0197EA9CD42; Thu, 4 Feb 2016 19:34:38 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C733A9E4; Thu, 4 Feb 2016 19:34:37 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u14JYaDf096040; Thu, 4 Feb 2016 19:34:36 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u14JYaNp096038; Thu, 4 Feb 2016 19:34:36 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201602041934.u14JYaNp096038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 4 Feb 2016 19:34:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408084 - in head/games/bs: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 19:34:38 -0000 Author: marino Date: Thu Feb 4 19:34:36 2016 New Revision: 408084 URL: https://svnweb.freebsd.org/changeset/ports/408084 Log: games/bs: document ncurses rqmt (USES+=ncurses), respect LDFLAGS approved by: infrastructure blanket Added: head/games/bs/files/ head/games/bs/files/patch-Makefile (contents, props changed) Modified: head/games/bs/Makefile Modified: head/games/bs/Makefile ============================================================================== --- head/games/bs/Makefile Thu Feb 4 19:32:55 2016 (r408083) +++ head/games/bs/Makefile Thu Feb 4 19:34:36 2016 (r408084) @@ -11,7 +11,7 @@ COMMENT= Battleships solitaire game with LICENSE= BSD3CLAUSE -USES= gmake +USES= gmake ncurses MAKE_ARGS= CC="${CC}" ALL_TARGET= # empty Added: head/games/bs/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bs/files/patch-Makefile Thu Feb 4 19:34:36 2016 (r408084) @@ -0,0 +1,11 @@ +--- Makefile.orig 2016-02-04 19:19:31 UTC ++++ Makefile +@@ -8,7 +8,7 @@ CC = gcc + DESTDIR = + + bs: bs.c +- $(CC) $(CFLAGS) -o bs bs.c -lncurses ++ $(CC) $(CFLAGS) -o bs bs.c $(LDFLAGS) -lncurses + + bs.6: bs.xml + xmlto man bs.xml