svn commit: r407990 - head/shells/esh

John Marino marino at FreeBSD.org
Wed Feb 3 21:48:53 UTC 2016


Author: marino
Date: Wed Feb  3 21:48:52 2016
New Revision: 407990
URL: https://svnweb.freebsd.org/changeset/ports/407990

Log:
  shells/esh: document ncurses requirement (USES+=ncurses)
  
  Also link with libncurses, not libtermap

Modified:
  head/shells/esh/Makefile

Modified: head/shells/esh/Makefile
==============================================================================
--- head/shells/esh/Makefile	Wed Feb  3 21:40:37 2016	(r407989)
+++ head/shells/esh/Makefile	Wed Feb  3 21:48:52 2016	(r407990)
@@ -13,8 +13,9 @@ LICENSE=	GPLv2
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
-USES=		readline
-MAKE_ARGS=	CC="${CC}" CFLAGS="${CFLAGS} ${CPPFLAGS}"
+USES=		ncurses readline
+MAKE_ARGS=	CC="${CC}" CFLAGS="${CFLAGS} ${CPPFLAGS}" \
+		LIB="${LDFLAGS} -lreadline -lncurses"
 
 INFO=		esh
 


More information about the svn-ports-all mailing list