mirror of
https://github.com/amix/vimrc
synced 2025-07-09 02:25:00 +08:00
add various usefull plugins from vim.org and sourfeforge
This commit is contained in:
4
vim_plugins_src/cscope-15.7a/packages/MSDOS/CVS/Entries
Normal file
4
vim_plugins_src/cscope-15.7a/packages/MSDOS/CVS/Entries
Normal file
@ -0,0 +1,4 @@
|
||||
/README/1.1/Thu Jun 28 15:56:06 2001//
|
||||
/djmake.bat/1.4/Fri Jul 8 11:00:20 2005/-kb/
|
||||
/ylwrap.pat/1.2/Thu Jul 5 13:47:54 2001//
|
||||
D
|
@ -0,0 +1,3 @@
|
||||
/README////
|
||||
/djmake.bat////
|
||||
/ylwrap.pat////
|
@ -0,0 +1 @@
|
||||
cscope/packages/MSDOS
|
1
vim_plugins_src/cscope-15.7a/packages/MSDOS/CVS/Root
Normal file
1
vim_plugins_src/cscope-15.7a/packages/MSDOS/CVS/Root
Normal file
@ -0,0 +1 @@
|
||||
:ssh;username=broeker;hostname=cscope.cvs.sourceforge.net:/cvsroot/cscope
|
74
vim_plugins_src/cscope-15.7a/packages/MSDOS/README
Normal file
74
vim_plugins_src/cscope-15.7a/packages/MSDOS/README
Normal file
@ -0,0 +1,74 @@
|
||||
|
||||
------------------------------------
|
||||
cscope for DOS using DJGPP
|
||||
------------------------------------
|
||||
|
||||
*) You need a rather recent DJGPP version and tools
|
||||
installed. For running cscope on DOS, be sure you
|
||||
have:
|
||||
|
||||
* GNU ed for cscope's automated editing of files. It's quite likely
|
||||
you didn't have this installed, unless you're a collector of Unix
|
||||
tools.
|
||||
|
||||
* an editor or viewer to be used as a child program when you open
|
||||
a match, inside cscope. DJGPP-compiled versions, if possible.
|
||||
|
||||
Choose either
|
||||
|
||||
-- `less' if you're content with viewing the file
|
||||
-- some version of `vi' (VIM, Elvis, or NVI) use cscope in it's
|
||||
"classical" way
|
||||
-- GNU Emacs for the full glory :-)
|
||||
|
||||
Set the environment variable CSCOPE_EDITOR or EDITOR to the name
|
||||
of the editor you want to use. You may want to create a [cscope]
|
||||
section in your djgpp.env file, if you know how to do it.
|
||||
|
||||
For more details what cscope is, and how to use it, see the
|
||||
documentation in the root directory of the cscope sources, or the
|
||||
man page.
|
||||
|
||||
*) For compiling cscope from sources, you need a much more complete
|
||||
collection of GNU development and commandline tools, in addition
|
||||
to the above, and the obvious GCC and binutils:
|
||||
|
||||
* bash
|
||||
* make
|
||||
* flex
|
||||
* bison
|
||||
* sed
|
||||
* patch
|
||||
* fileutils (cp, ln, ...)
|
||||
* textutils (cat)
|
||||
|
||||
Optionally, if you plan to modify the sources.
|
||||
|
||||
* autoconf
|
||||
* automake
|
||||
* Perl
|
||||
|
||||
These are the ones I'm sure you need --- I may have overlooked some.
|
||||
|
||||
The DJGPP source packages is already configured, so you can just
|
||||
run 'make' to get the package. Then
|
||||
|
||||
make install prefix=d:/djgpp"
|
||||
|
||||
(or wherever else your DJGPP is) to install it.
|
||||
|
||||
Or cd to the top source directory and execute the supplied
|
||||
djmake.bat:
|
||||
|
||||
cd d:\djgpp\contrib\cscope
|
||||
packages\msdos\djmake.bat
|
||||
|
||||
and watch it compile. This will be necessary if you made any
|
||||
substantial changes to the sources.
|
||||
|
||||
Have fun with it. In case of problem, mail to djgpp@delorie.com (or the
|
||||
attached Usenet newsgroup) or file a bug report at cscope's page on
|
||||
Sourceforge.net.
|
||||
|
||||
Hans-Bernhard Br"oker (broeker@physik.rwth-aachen.de)
|
||||
(Hans-Bernhard.Broeker@epost.de)
|
22
vim_plugins_src/cscope-15.7a/packages/MSDOS/djmake.bat
Normal file
22
vim_plugins_src/cscope-15.7a/packages/MSDOS/djmake.bat
Normal file
@ -0,0 +1,22 @@
|
||||
@echo off
|
||||
|
||||
if exist src\fscanner.l goto dir_okay
|
||||
echo !!!! Must run this batch file from the main source directory!
|
||||
exit
|
||||
|
||||
:dir_okay
|
||||
|
||||
echo ---- Start by patching the ylwrap script to avoid problems
|
||||
echo with "ln -s":
|
||||
|
||||
if exist src\ylwrap patch -p0 -i packages/MSDOS/ylwrap.pat
|
||||
if exist ylwrap patch -p1 -i packages/MSDOS/ylwrap.pat
|
||||
|
||||
echo ---- Now configure and make it.
|
||||
echo -- NOTE --: this assumes you have pdcurses installed!
|
||||
echo -- NOTE --: Will be using '-f' mode of flex, for faster scanning
|
||||
bash configure
|
||||
make CURSES_LIBS=-lpdcurses LFLAGS="-f8B"
|
||||
|
||||
echo ---- You may now call "make install", if desired.
|
||||
echo -- DONE --
|
11
vim_plugins_src/cscope-15.7a/packages/MSDOS/ylwrap.pat
Normal file
11
vim_plugins_src/cscope-15.7a/packages/MSDOS/ylwrap.pat
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/ylwrap Tue Jun 26 15:23:52 2001
|
||||
+++ src.DOS/ylwrap Thu Jun 28 17:39:31 2001
|
||||
@@ -80,7 +80,7 @@
|
||||
;;
|
||||
*)
|
||||
# Make a symbolic link, hard link or hardcopy.
|
||||
- ln -s ../"$input" . > /dev/null 2>&1 || ln ../"$input" . > /dev/null 2>&1 || cp ../"$input" .
|
||||
+ ln ../"$input" . > /dev/null 2>&1 || cp ../"$input" .
|
||||
;;
|
||||
esac
|
||||
$prog ${1+"$@"} "$input"
|
Reference in New Issue
Block a user