pkgsrc-wip/ncurses-devel/Makefile
Greg Troxel 03d7f270dd Work around complaint about bad conditional, without trying too hard
because obviously this isn't even close to working.
2008-04-17 14:59:25 +00:00

43 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.3 2008/04/17 14:59:25 lexort Exp $
#.include "Makefile.common"
COMMENT= CRT screen handling and optimization package
INSTALLATION_DIRS+= share/examples
.if defined(OPSYS) && ${OPSYS} == "SunOS"
# misc/screen installs screen, screen-bce and screen-s
# so we need to remove these here to avoid a conflict.
# this means we also remove the entries which have a
# use=screen in them
SUBST_CLASSES+= ti
SUBST_STAGE.ti= post-configure
SUBST_MESSAGE.ti= Removing screen entries from the terminfo database.
SUBST_FILES.ti= ${TERMINFO_SRC}
# see misc/screen/PLIST for these:
SUBST_SED.ti= -e '/^screen|/,/^$$/d'
SUBST_SED.ti+= -e '/^screen-bce|/,/^$$/d'
SUBST_SED.ti+= -e '/^screen-s|/,/^$$/d'
# see ${TERMINFO_SRC} and look for use=screen for these
SUBST_SED.ti+= -e '/^screen.teraterm|/,/^$$/d'
SUBST_SED.ti+= -e '/^screen.linux|/,/^$$/d'
SUBST_SED.ti+= -e '/^screen-w|/,/^$$/d'
SUBST_SED.ti+= -e '/^screen-16color/,/^$$/d'
SUBST_SED.ti+= -e '/^screen-256color/,/^$$/d'
.endif
post-configure:
cd ${WRKSRC}/man; \
for f in *.1m; do \
mv -f $${f} `${BASENAME} $${f} .1m`.1; \
done; \
for f in *.3x; do \
mv -f $${f} `${BASENAME} $${f} .3x`.3; \
done
post-install:
${INSTALL_DATA} ${WRKSRC}/c++/demo.cc \
${DESTDIR}${PREFIX}/share/examples/ncurses++demo.cc
.include "../../mk/bsd.pkg.mk"