FreeBSD Bugzilla – Attachment 16887 Details for
Bug 30812
[patch] giant termcap database update
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
termcap-2.patch
termcap-2.patch (text/x-patch), 1.97 KB, created by
Cyrille Lefevre
on 2002-05-20 13:29:00 UTC
(
hide
)
Description:
termcap-2.patch
Filename:
MIME Type:
Creator:
Cyrille Lefevre
Created:
2002-05-20 13:29:00 UTC
Size:
1.97 KB
patch
obsolete
>Index: Makefile >=================================================================== >RCS file: /home/ncvs/src/share/termcap/Makefile,v >retrieving revision 1.12.2.4 >diff -u -r1.12.2.4 Makefile >--- Makefile 18 Feb 2002 15:03:35 -0000 1.12.2.4 >+++ Makefile 19 May 2002 05:30:41 -0000 >@@ -1,23 +1,54 @@ > # @(#)Makefile 8.1 (Berkeley) 6/8/93 > # $FreeBSD: src/share/termcap/Makefile,v 1.12.2.4 2002/02/18 15:03:35 ru Exp $ > >+MAN= termcap.5 >+ >+NCURSES= ${.CURDIR}/../../contrib/ncurses >+ >+NO_TERMTYPES= yes # ncurses termcap database appear to be up-to-date. >+ >+.if defined(NO_TERMTYPES) >+.if defined(NO_NCTERMCAP) >+TERMCAPSRC= ${.CURDIR}/termcap.src >+.else >+# ftp://invisible-island.net/ncurses/termcap.src.gz >+TERMCAPSRC= ${NCURSES}/misc/termcap.src >+.endif >+.else >+# http://tuxedo.org/terminfo/termtypes.ti.gz >+TERMCAPSRC= ${.CURDIR}/termtypes.tc >+.endif >+ >+TERMCAP= termcap >+TERMCAPDB= termcap.db >+ >+FILES= map3270 ${TERMCAP} ${TERMCAPDB} >+FILESDIR= ${BINDIR}/misc >+CLEANFILES+= ${TERMCAP} ${TERMCAPDB} >+ >+CAP_MKDB?= cap_mkdb >+ > # reorder gives an editor command for most common terminals > # (in reverse order from n'th to 1'st most commonly used) > # to move them to the front of termcap >-# >-MAN= termcap.5 >- >-FILES= map3270 termcap termcap.db >-FILESDIR= ${BINDIR}/misc >-CLEANFILES+= termcap termcap.db >+.if defined(NO_TERMTYPES) && defined(NO_NCTERMCAP) >+REORDER= reorder >+.else >+REORDER= # reorder.tc # newer databases don't need to me reordered. >+.endif > >-termcap: reorder termcap.src >- TERM=dumb ex - ${.CURDIR}/termcap.src < ${.CURDIR}/reorder >+${TERMCAP}: ${REORDER} ${TERMCAPSRC} >+.if defined(NO_TERMTYPES) && defined(NO_NCTERMCAP) >+ @rm -f ${.TARGET} >+ TERM=dumb ex - ${TERMCAPSRC} < ${.CURDIR}/${REORDER} >+.else >+ ln -fs ${TERMCAPSRC} ${.TARGET} >+.endif > >-termcap.db: termcap >- cap_mkdb termcap >+${TERMCAPDB}: ${TERMCAP} >+ ${CAP_MKDB} ${TERMCAP} 2> /dev/null > > etc-termcap: >- ln -fs ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap >+ ln -fs ${FILESDIR}/termcap ${DESTDIR}/etc/termcap > > .include <bsd.prog.mk>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 30812
:
16886
| 16887