diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2019-12-27 16:36:23 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2019-12-27 16:36:23 +0000 |
commit | fac528a23aba291e718fab1cf999d6d3084a946d (patch) | |
tree | a478456bc1b7cd52f1d7d69e055b94ba14fc5290 | |
parent | d2d376a99afaf0bac0574ab8f5dec5e56d1aaee5 (diff) | |
download | freebsd-ports-fac528a23aba291e718fab1cf999d6d3084a946d.zip |
Add missing USES=ncurses
Ensure the package is built against the proper version of ncurses
-rw-r--r-- | security/kc24/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/kc24/Makefile b/security/kc24/Makefile index fef2086b4d95..6fe204078ab1 100644 --- a/security/kc24/Makefile +++ b/security/kc24/Makefile @@ -33,7 +33,7 @@ LIBEDIT_MAKE_ENV+= EDITLINE=y READLINE_USES= readline READLINE_MAKE_ENV+= READLINE=y -USES+= pkgconfig ssl uidfix +USES+= pkgconfig ncurses ssl uidfix USE_GITHUB= yes GH_ACCOUNT= levaidaniel @@ -42,6 +42,6 @@ PLIST_FILES= bin/kc man/man1/kc.1.gz MAKE_ENV+= BUNDLED_BCRYPT=y post-patch: - @${REINPLACE_CMD} -e 's|pkg-config|${LOCALBASE}/bin/pkgconf|' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|-lncursesw|-l${NCURSES_IMPL}|' ${WRKSRC}/Makefile .include <bsd.port.mk> |