diff options
author | John Marino <marino@FreeBSD.org> | 2016-02-06 03:00:51 +0800 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2016-02-06 03:00:51 +0800 |
commit | bac086b352cd7dd83f6b2ac4e9842df8061e2cc3 (patch) | |
tree | f41439e08bb5bde53e4f5f8bacc1d79e4431a5c1 /editors | |
parent | cdead12b74c8964c4d14e632284b8fe02be40e9b (diff) | |
download | freebsd-ports-gnome-bac086b352cd7dd83f6b2ac4e9842df8061e2cc3.tar.gz freebsd-ports-gnome-bac086b352cd7dd83f6b2ac4e9842df8061e2cc3.tar.zst freebsd-ports-gnome-bac086b352cd7dd83f6b2ac4e9842df8061e2cc3.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 |