From owner-svn-ports-head@freebsd.org Sun Jan 31 13:38:51 2016 Return-Path: Delivered-To: svn-ports-head@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 9FF0DA74912; Sun, 31 Jan 2016 13:38:51 +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 71E6737A; Sun, 31 Jan 2016 13:38:51 +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 u0VDcoFo065296; Sun, 31 Jan 2016 13:38:50 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0VDcolW065294; Sun, 31 Jan 2016 13:38:50 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201601311338.u0VDcolW065294@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 13:38:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407634 - in head/editors/biew: . 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-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 13:38:51 -0000 Author: marino Date: Sun Jan 31 13:38:50 2016 New Revision: 407634 URL: https://svnweb.freebsd.org/changeset/ports/407634 Log: editors/biew: document ncurses requirement (USES+=ncurses) Also make it actually link with ncurses, not termlib approved by: infrastructure blanket Modified: head/editors/biew/Makefile head/editors/biew/files/patch-configure Modified: head/editors/biew/Makefile ============================================================================== --- head/editors/biew/Makefile Sun Jan 31 13:36:47 2016 (r407633) +++ head/editors/biew/Makefile Sun Jan 31 13:38:50 2016 (r407634) @@ -16,7 +16,7 @@ LICENSE= GPLv2 ONLY_FOR_ARCHS= amd64 i386 ia64 ONLY_FOR_ARCHS_REASON= no targets defined in Makefile -USES= dos2unix gmake iconv tar:bzip2 +USES= dos2unix gmake iconv ncurses tar:bzip2 DOS2UNIX_FILES= ${PORTDOCS:S,^,doc/,} HAS_CONFIGURE= yes CONFIGURE_ARGS= --cc="${CC}" --with-extraincdir="${LOCALBASE}/include" \ Modified: head/editors/biew/files/patch-configure ============================================================================== --- head/editors/biew/files/patch-configure Sun Jan 31 13:36:47 2016 (r407633) +++ head/editors/biew/files/patch-configure Sun Jan 31 13:38:50 2016 (r407634) @@ -52,7 +52,7 @@ check_header slang.h enabled slang_h && _cdefos="-D_SLANG_ -D__OS_NAME__='\"Unix/Slang\"' $_cdefos" - enabled slang_h && _oslibs="-lslang $_oslibs" || disable _slang -+ enabled slang_h && _oslibs="-lslang -ltermcap $_oslibs" || disable _slang ++ enabled slang_h && _oslibs="-lslang -lncurses $_oslibs" || disable _slang echores "$slang_h" fi - if enabled _curses -a disabled _slang; then