Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Feb 2020 03:15:54 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r526002 - head/deskutils/cfiles
Message-ID:  <202002130315.01D3FsAW070811@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Thu Feb 13 03:15:53 2020
New Revision: 526002
URL: https://svnweb.freebsd.org/changeset/ports/526002

Log:
  deskutils/cfiles: Use base ncurses
  
  swills suggested to have USES=ncurses:base, but it turned out that USES=ncurses:base
  is broken - it asks to deinstall the devel/ncurses port which is an undesirable
  behavior and an unnecessary request. The committed patch forces base ncurses through
  the make arguments.
  
  PR:		243941
  Suggested by:	swills

Modified:
  head/deskutils/cfiles/Makefile

Modified: head/deskutils/cfiles/Makefile
==============================================================================
--- head/deskutils/cfiles/Makefile	Thu Feb 13 00:47:39 2020	(r526001)
+++ head/deskutils/cfiles/Makefile	Thu Feb 13 03:15:53 2020	(r526002)
@@ -3,7 +3,7 @@
 PORTNAME=	cfiles
 DISTVERSIONPREFIX=	v
 DISTVERSION=	1.8
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	deskutils
 
 MAINTAINER=	yuri@FreeBSD.org
@@ -18,12 +18,12 @@ RUN_DEPENDS=	${LOCALBASE}/libexec/w3m/w3mimgdisplay:ww
 		fzf:textproc/fzf \
 		pdftoppm:graphics/poppler-utils
 
-USES=		ncurses:port pkgconfig shebangfix
+USES=		shebangfix
 SHEBANG_FILES=	scripts/*
 USE_GITHUB=	yes
 GH_ACCOUNT=	mananapr
 
-MAKE_ARGS=	CC=${CC}
+MAKE_ARGS=	CC=${CC} NCURSES_CFLAGS=-I/usr/include NCURSES_LIBS=/usr/lib/libncursesw.so
 
 PLIST_FILES=	bin/${PORTNAME} \
 		man/man1/${PORTNAME}.1.gz \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002130315.01D3FsAW070811>