pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/ncurses ncurses: Fix install on case-insensitive...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/493b0abf51c4
branches:  trunk
changeset: 768896:493b0abf51c4
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Wed Nov 03 10:33:58 2021 +0000

description:
ncurses: Fix install on case-insensitive file systems.

Bump PKGREVISION.

diffstat:

 devel/ncurses/Makefile |  10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 1367f6a5c63d -r 493b0abf51c4 devel/ncurses/Makefile
--- a/devel/ncurses/Makefile    Wed Nov 03 09:52:59 2021 +0000
+++ b/devel/ncurses/Makefile    Wed Nov 03 10:33:58 2021 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.111 2021/10/09 07:52:36 wiz Exp $
+# $NetBSD: Makefile,v 1.112 2021/11/03 10:33:58 jperkin Exp $
 
 .include "Makefile.common"
-PKGREVISION=   4
+PKGREVISION=   5
 
 COMMENT=       CRT screen handling and optimization package
 
@@ -21,6 +21,12 @@
 post-install:
        ${INSTALL_DATA} ${WRKSRC}/c++/demo.cc \
                ${DESTDIR}${PREFIX}/share/examples/ncurses++demo.cc
+.if ${OPSYS} == "Darwin"
+       # Clashes with "a" versions on case-insensitive file systems
+       ${RM} -f ${DESTDIR}${PREFIX}/${TERMINFODIR}/32/2621A 
+       ${RM} -f ${DESTDIR}${PREFIX}/${TERMINFODIR}/68/hp2621A
+       ${RM} -f ${DESTDIR}${PREFIX}/${TERMINFODIR}/68/hp70092A
+.endif
        ${FIND} ${DESTDIR}${PREFIX}/${TERMINFODIR} -type f -print | ${SORT} | \
        ${SED} -e "s,^${DESTDIR}${PREFIX}/,," >${WRKDIR}/PLIST.terminfo
        ${RM} -f ${DESTDIR}${PREFIX}/lib/terminfo



Home | Main Index | Thread Index | Old Index