diff options
author | marino <marino@FreeBSD.org> | 2016-02-03 08:16:12 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-02-03 08:16:12 +0800 |
commit | b570aa6bcc93f79ad267f148d6511ba7baf57695 (patch) | |
tree | 84429e89f19737ea90172fd89b242fa68f041123 /misc | |
parent | 977e7c22d4103e723d8e01e8f503cfeebcfcc8b5 (diff) | |
download | freebsd-ports-gnome-b570aa6bcc93f79ad267f148d6511ba7baf57695.tar.gz freebsd-ports-gnome-b570aa6bcc93f79ad267f148d6511ba7baf57695.tar.zst freebsd-ports-gnome-b570aa6bcc93f79ad267f148d6511ba7baf57695.zip |
misc/pdmenu: document ncurses requirement (USES+=ncurses)
Also link with libncurses, not libcurses
Diffstat (limited to 'misc')
-rw-r--r-- | misc/pdmenu/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/pdmenu/Makefile b/misc/pdmenu/Makefile index c14670781c91..68b506decb92 100644 --- a/misc/pdmenu/Makefile +++ b/misc/pdmenu/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libslang.so:${PORTSDIR}/devel/libslang2 WRKSRC= ${WRKDIR}/${PORTNAME} -USES= gettext gmake shebangfix +USES= gettext gmake ncurses shebangfix SHEBANG_FILES= examples/showdir.pl GNU_CONFIGURE= yes CONFIGURE_ENV= SLANG_H_LOC="${LOCALBASE}/include/slang.h" \ @@ -26,7 +26,7 @@ MAKE_ENV= INSTALL_PREFIX="${STAGEDIR}" CFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib -lcurses -lintl +LIBS+= -L${LOCALBASE}/lib -lncurses -lintl post-patch: @${REINPLACE_CMD} -e \ |