diff options
author | marino <marino@FreeBSD.org> | 2016-02-06 03:00:51 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-02-06 03:00:51 +0800 |
commit | ef8af13595d612760a91f5c5e1f36534ee1a9d5d (patch) | |
tree | f41439e08bb5bde53e4f5f8bacc1d79e4431a5c1 /editors | |
parent | cf3fae861602dc50fe8f941672d9934ecb5cb9d9 (diff) | |
download | freebsd-ports-gnome-ef8af13595d612760a91f5c5e1f36534ee1a9d5d.tar.gz freebsd-ports-gnome-ef8af13595d612760a91f5c5e1f36534ee1a9d5d.tar.zst freebsd-ports-gnome-ef8af13595d612760a91f5c5e1f36534ee1a9d5d.zip |
editors/vigor: USES+= ncurses, link with ncurses, not curses
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vigor/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/vigor/Makefile b/editors/vigor/Makefile index 796a0b11d83f..4e484f900a9c 100644 --- a/editors/vigor/Makefile +++ b/editors/vigor/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/../LICENSE WRKSRC= ${WRKDIR}/${DISTNAME}/build -USES+= tk +USES= ncurses tk USE_XORG= x11 GNU_CONFIGURE= yes CONFIGURE_ARGS+=--exec-prefix=${STAGEDIR}${PREFIX} @@ -25,6 +25,7 @@ LDFLAGS+= -L${LOCALBASE}/lib post-patch: ${REINPLACE_CMD} -e 's|tcl80|tcl${TCL_SHLIB_VER}|; \ + s|-lcurses|-lncurses|; \ s|tk80|tk${TK_SHLIB_VER}|; \ s|^grantpt|XXXgrantpt|;' \ ${WRKSRC}/configure |