diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2020-02-13 11:15:53 +0800 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2020-02-13 11:15:53 +0800 |
commit | 2b065bcc86f2103dbd36c5da06b1c4859b210200 (patch) | |
tree | 396de4198df2378e7fac1dffb3debdc9b71218ec /deskutils | |
parent | 8f79574ba021b70babb11340c463b0d87cc24ab2 (diff) | |
download | freebsd-ports-gnome-2b065bcc86f2103dbd36c5da06b1c4859b210200.tar.gz freebsd-ports-gnome-2b065bcc86f2103dbd36c5da06b1c4859b210200.tar.zst freebsd-ports-gnome-2b065bcc86f2103dbd36c5da06b1c4859b210200.zip |
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
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/cfiles/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deskutils/cfiles/Makefile b/deskutils/cfiles/Makefile index 17a7d80b62c9..25e6e9748d30 100644 --- a/deskutils/cfiles/Makefile +++ b/deskutils/cfiles/Makefile @@ -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:www/w3m-img \ 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 \ |