ソースを参照

fix tab completion in vim :edit, by installing the example vimrc

Waldemar Brodkorb 13 年 前
コミット
98568f1697
2 ファイル変更4 行追加3 行削除
  1. 0 2
      TODO
  2. 4 1
      package/vim/Makefile

+ 0 - 2
TODO

@@ -1,10 +1,8 @@
-- keyboard layout support
 - relocatable gcc
 - adkinstall with NTP and hwclock support
 - newtarget simplify and make target like newpackage
 - PKG_CONFLICTS for python/python2, is this possible with Kconfig?
 - mirror only option, no internet access
-- vim tabbing for split command - terminal issue
 - check alsa on foxg20 target
 - fix ARM OABI support
 - fix watchdog for alix1c (mfgpt timers problem)

+ 4 - 1
package/vim/Makefile

@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
 
 PKG_NAME:=		vim
 PKG_VERSION:=		7.3
-PKG_RELEASE:=		1
+PKG_RELEASE:=		2
 PKG_MD5SUM:=		5b9510a17074e2b37d8bb38ae09edbf2
 PKG_DESCR:=		The text editor
 PKG_SECTION:=		editor
@@ -58,6 +58,9 @@ XAKE_FLAGS+=		prefix=/usr \
 
 post-install:
 	${INSTALL_DIR} ${IDIR_VIM}/usr/bin
+	${INSTALL_DIR} ${IDIR_VIM}/usr/share/vim
 	${CP} ${WRKINST}/usr/bin/{ex,vim,view} ${IDIR_VIM}/usr/bin
+	${CP} ${WRKINST}/usr/share/vim/vim73/vimrc_example.vim \
+		${IDIR_VIM}/usr/share/vim/vimrc
 
 include ${TOPDIR}/mk/pkg-bottom.mk