dcf6fd65c9
resolve for PR pkg/50175 bump PKGREVISION
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2015/08/28 07:09:57 richard Exp $
|
|
|
|
PKGREVISION= 1
|
|
.include "../../devel/ncurses/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/ncurses/ncursesw/}
|
|
COMMENT= Wide character CRT screen handling and optimization package
|
|
|
|
PATCHDIR= ${.CURDIR}/../../devel/ncurses/patches
|
|
DISTINFO_FILE= ${.CURDIR}/../../devel/ncurses/distinfo
|
|
|
|
CONFIGURE_ARGS+= --enable-widec
|
|
CONFIGURE_ARGS+= --includedir=${PREFIX}/include/ncursesw
|
|
|
|
INSTALLATION_DIRS+= include/ncursesw
|
|
INSTALLATION_DIRS+= bin
|
|
INSTALLATION_DIRS+= lib
|
|
|
|
BUILD_TARGET= libs
|
|
|
|
SUBST_CLASSES+= includes
|
|
SUBST_MESSAGE.includes= Fixing include paths for ncurses headers.
|
|
SUBST_STAGE.includes= post-build
|
|
SUBST_FILES.includes= include/curses.h
|
|
SUBST_SED.includes= -e 's,<ncurses_dll\.h>,<ncurses/ncurses_dll\.h>,'
|
|
SUBST_SED.includes+= -e 's,<unctrl\.h>,<ncurses/unctrl\.h>,'
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/include && \
|
|
${MAKE_ENV} ${MAKE_PROGRAM} ${INSTALL_MAKE_FLAGS} install
|
|
${INSTALL_SCRIPT} ${WRKSRC}/misc/ncurses-config ${DESTDIR}${PREFIX}/bin/ncursesw${NC_VERS:R}-config
|
|
for LIB in form menu ncurses++ ncurses panel; do \
|
|
${LIBTOOL} --mode=install ${INSTALL_PROGRAM} \
|
|
${WRKSRC}/lib/lib$${LIB}w.la ${DESTDIR}${PREFIX}/lib; \
|
|
done
|
|
|
|
BUILDLINK_API_DEPENDS.ncurses+= ncurses-${NC_VERS}{,nb*}
|
|
BUILDLINK_ABI_DEPENDS.ncurses+= ncurses-${NC_VERS}{,nb*}
|
|
USE_NCURSES= yes
|
|
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|