d2ca14a3f1
a) refer 'perl' in their Makefile, or b) have a directory name of p5-*, or c) have any dependency on any p5-* package Like last time, where this caused no complaints.
57 lines
2 KiB
Makefile
57 lines
2 KiB
Makefile
# $NetBSD: Makefile,v 1.87 2013/05/31 12:40:01 wiz Exp $
|
|
|
|
.include "Makefile.common"
|
|
|
|
COMMENT= CRT screen handling and optimization package
|
|
PKGREVISION= 1
|
|
|
|
INSTALLATION_DIRS+= share/examples
|
|
|
|
.if ${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-bce.xterm-new|/,/^$$/d'
|
|
SUBST_SED.ti+= -e '/^screen-bce.rxvt|/,/^$$/d'
|
|
SUBST_SED.ti+= -e '/^screen-bce.Eterm|/,/^$$/d'
|
|
SUBST_SED.ti+= -e '/^screen-bce.mrxvt|/,/^$$/d'
|
|
SUBST_SED.ti+= -e '/^screen-bce.gnome|/,/^$$/d'
|
|
SUBST_SED.ti+= -e '/^screen-bce.konsole|/,/^$$/d'
|
|
SUBST_SED.ti+= -e '/^screen-bce.linux|/,/^$$/d'
|
|
SUBST_SED.ti+= -e '/^screen-bce.mlterm|/,/^$$/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'
|
|
SUBST_SED.ti+= -e '/^screen.mlterm/,/^$$/d'
|
|
SUBST_SED.ti+= -e '/^screen.rxvt/,/^$$/d'
|
|
.endif
|
|
|
|
PLIST_SRC= ${PKGDIR}/PLIST ${WRKDIR}/PLIST.terminfo
|
|
|
|
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
|
|
${FIND} ${DESTDIR}${PREFIX}/${TERMINFODIR} -type f -print | ${SORT} | \
|
|
${SED} -e "s,^${DESTDIR}${PREFIX}/,," >${WRKDIR}/PLIST.terminfo
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|