diff options
author | marino <marino@FreeBSD.org> | 2016-02-07 21:00:20 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-02-07 21:00:20 +0800 |
commit | a4d0cdec7110033b132ff4cde50c46c84c00a382 (patch) | |
tree | 7c6e47bd558c700012ca76ef2c2a4d4a247b1c8d /audio/libnjb | |
parent | 0591be312080ae224b04635dcb22e175e0d17ccc (diff) | |
download | freebsd-ports-gnome-a4d0cdec7110033b132ff4cde50c46c84c00a382.tar.gz freebsd-ports-gnome-a4d0cdec7110033b132ff4cde50c46c84c00a382.tar.zst freebsd-ports-gnome-a4d0cdec7110033b132ff4cde50c46c84c00a382.zip |
audio/libnjb: USES+= ncurses, link with ncurses (not curses)
Diffstat (limited to 'audio/libnjb')
-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> |