From owner-svn-ports-all@freebsd.org Thu Feb 4 14:42:56 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 A709DA9A32B; Thu, 4 Feb 2016 14:42:56 +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 5F4F115AC; Thu, 4 Feb 2016 14:42:56 +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 u14EgtY5007019; Thu, 4 Feb 2016 14:42:55 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u14EgtZF007017; Thu, 4 Feb 2016 14:42:55 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201602041442.u14EgtZF007017@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 14:42:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408037 - in head/sysutils/fonteditfs: . 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 14:42:56 -0000 Author: marino Date: Thu Feb 4 14:42:55 2016 New Revision: 408037 URL: https://svnweb.freebsd.org/changeset/ports/408037 Log: sysutils/fonteditfs: document ncurses rqmt (USES+=ncurses), respect LDFLAGS Also link to libncurses, not libcurses approved by: infrastructure blanket Modified: head/sysutils/fonteditfs/Makefile head/sysutils/fonteditfs/files/patch-Makefile Modified: head/sysutils/fonteditfs/Makefile ============================================================================== --- head/sysutils/fonteditfs/Makefile Thu Feb 4 14:41:06 2016 (r408036) +++ head/sysutils/fonteditfs/Makefile Thu Feb 4 14:42:55 2016 (r408037) @@ -11,6 +11,7 @@ EXTRACT_SUFX= .tgz MAINTAINER= uri@keves.org COMMENT= Full screen syscons font editor +USES= ncurses PLIST_FILES= bin/fnteditfs man/man1/fnteditfs.1.gz post-patch: Modified: head/sysutils/fonteditfs/files/patch-Makefile ============================================================================== --- head/sysutils/fonteditfs/files/patch-Makefile Thu Feb 4 14:41:06 2016 (r408036) +++ head/sysutils/fonteditfs/files/patch-Makefile Thu Feb 4 14:42:55 2016 (r408037) @@ -1,5 +1,5 @@ ---- Makefile.orig 2003-09-20 08:17:34.000000000 -0700 -+++ Makefile 2014-01-01 12:27:59.000000000 -0800 +--- Makefile.orig 2003-09-20 15:17:34 UTC ++++ Makefile @@ -2,14 +2,9 @@ # - TODO: MAKE NEATER ONE # This makefile should work under most POSIX OSes (at least FreeBSD) @@ -13,11 +13,11 @@ +all: fnteditfs fnteditfs: fnteditfs.o font.o stack.o - gcc -o fnteditfs fnteditfs.o font.o stack.o -lcurses -+ ${CC} -o fnteditfs fnteditfs.o font.o stack.o -lcurses ++ ${CC} -o fnteditfs fnteditfs.o font.o stack.o ${LDFLAGS} -lncurses strip fnteditfs fnteditfs.o: fnteditfs.c font.h stack.h -@@ -17,8 +12,8 @@ +@@ -17,8 +12,8 @@ font.o: font.c font.h stack.o: stack.c stack.h install: fnteditfs fnteditfs.1