svn commit: r407634 - in head/editors/biew: . files

John Marino marino at FreeBSD.org
Sun Jan 31 13:38:51 UTC 2016


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


More information about the svn-ports-all mailing list