From owner-svn-ports-all@freebsd.org Sun Jan 31 08:28:48 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 E5724A735EE; Sun, 31 Jan 2016 08:28:48 +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 B69201AB; Sun, 31 Jan 2016 08:28:48 +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 u0V8SlA1070920; Sun, 31 Jan 2016 08:28:47 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0V8SlH0070918; Sun, 31 Jan 2016 08:28:47 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201601310828.u0V8SlH0070918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 31 Jan 2016 08:28:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407586 - in head/games/tt: . 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: Sun, 31 Jan 2016 08:28:49 -0000 Author: marino Date: Sun Jan 31 08:28:47 2016 New Revision: 407586 URL: https://svnweb.freebsd.org/changeset/ports/407586 Log: games/tt: document ncurses requirement (USES+= ncurses) It was linking -lcurses -ltermcap but on FreeBSD these are the aliases for the same library, -lncurses, so just specific that directly. Modified: head/games/tt/Makefile head/games/tt/files/patch-Makefile Modified: head/games/tt/Makefile ============================================================================== --- head/games/tt/Makefile Sun Jan 31 08:21:49 2016 (r407585) +++ head/games/tt/Makefile Sun Jan 31 08:28:47 2016 (r407586) @@ -9,6 +9,8 @@ MASTER_SITES= http://www.miketaylor.org. MAINTAINER= ports@FreeBSD.org COMMENT= Tetris for Terminals +USES= ncurses + ALL_TARGET= tt OPTIONS_DEFINE= DOCS Modified: head/games/tt/files/patch-Makefile ============================================================================== --- head/games/tt/files/patch-Makefile Sun Jan 31 08:21:49 2016 (r407585) +++ head/games/tt/files/patch-Makefile Sun Jan 31 08:28:47 2016 (r407586) @@ -1,6 +1,6 @@ ---- Makefile.orig Thu Sep 11 15:09:08 2003 -+++ Makefile Fri Sep 12 22:20:35 2003 -@@ -6,10 +6,10 @@ +--- Makefile.orig 2003-05-27 10:46:17 UTC ++++ Makefile +@@ -6,13 +6,14 @@ OBJ = $(SRC:.c=.o) LINTFLAGS = -abh # --- Choose one of these CFLAGS --- @@ -14,4 +14,9 @@ +#CFLAGS += $(OPT) -DNO_USLEEP_SYSCALL # Generic BSD? # --- Choose one of these LDLIBS --- - LDLIBS = -lcurses -ltermcap # Sun and Generic BSD +-LDLIBS = -lcurses -ltermcap # Sun and Generic BSD ++LDLIBS= -lncurses ++#LDLIBS = -lcurses -ltermcap # Sun and Generic BSD + #LDLIBS = -lcurses -lx # SCO System V + #LBLIBS = -lcurses # Generic System V? +