diff options
author | John Marino <marino@FreeBSD.org> | 2016-02-07 13:00:20 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2016-02-07 13:00:20 +0000 |
commit | 34784c13f0d44803a9e27a7cc73cc3fed8d13b88 (patch) | |
tree | 7c6e47bd558c700012ca76ef2c2a4d4a247b1c8d | |
parent | 49f9ef0bb5e57026951efc6d7f010e4a84a3bd5a (diff) |
audio/libnjb: USES+= ncurses, link with ncurses (not curses)
Notes
Notes:
svn path=/head/; revision=408395
-rw-r--r-- | audio/libnjb/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/libnjb/Makefile b/audio/libnjb/Makefile index f2d518cd20d8..9e59ad4bd367 100644 --- a/audio/libnjb/Makefile +++ b/audio/libnjb/Makefile @@ -13,7 +13,7 @@ COMMENT= C library, API for communicating with Creative and Dell audio players LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= pathfix libtool +USES= pathfix ncurses libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip @@ -33,5 +33,7 @@ post-patch: '/^SHOW_DIRECTORIES/d' ${WRKSRC}/doc/Doxyfile.in @${REINPLACE_CMD} -e \ '/pkgdocdir/s|-$$(VERSION)||g' ${WRKSRC}/doc/Makefile.in + @${REINPLACE_CMD} -e 's|-lcurses|-lncurses|' ${WRKSRC}/configure \ + ${WRKSRC}/sample/Makefile.am ${WRKSRC}/sample/Makefile.in .include <bsd.port.mk> |