diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-25 13:13:22 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-25 13:13:22 +0000 |
commit | 8d716619c2d7aa1cb9d6dd3a3b6ca38581f07e12 (patch) | |
tree | a6cde2e00a62c7623d62cd7dc42b30561cbecff3 /openwrt/package/vim/Makefile | |
parent | 48fb699ff3b9e4932e14b8f77b5cbcb2905e495a (diff) |
vim entered the distribution, now we only need usb vga and keyboard support, to have a perfect desktop ;), thx Michael Cohen
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3481 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/vim/Makefile')
-rw-r--r-- | openwrt/package/vim/Makefile | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/openwrt/package/vim/Makefile b/openwrt/package/vim/Makefile new file mode 100644 index 000000000..a769373b5 --- /dev/null +++ b/openwrt/package/vim/Makefile @@ -0,0 +1,65 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=vim +PKG_VERSION:=5.8 +PKG_RELEASE:=1 + +PKG_SOURCE_URL:=ftp://ftp.vim.org/pub/vim/unix/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-src.tar.gz +PKG_MD5SUM:= +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,VIM,vim,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + (cd $(PKG_BUILD_DIR)/src; rm -rf config.cache; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ + ac_cv_c_bigendian=no \ + ac_cv_sizeof_off_t=8 \ + ac_cv_sizeof_int=4 \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --libexecdir=/usr/lib \ + --sysconfdir=/etc \ + --datadir=/usr/share \ + --localstatedir=/var \ + --mandir=/usr/man \ + --infodir=/usr/info \ + --program-prefix="" \ + $(DISABLE_NLS) \ + --enable-min-features \ + --disable-gui \ + --without-x \ + --disable-multibyte \ + --disable-cscope \ + --disable-gpm \ + --with-tlib=ncurses \ + ); + touch $@ + +$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC=$(TARGET_CC) + touch $@ + +$(IPKG_VIM): + mkdir -p $(IDIR_VIM)/usr/bin + mkdir -p $(IDIR_VIM)//usr/share/vim + $(CP) ./files/vimrc $(IDIR_VIM)//usr/share/vim + $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(IDIR_VIM)/usr/bin/ + $(RSTRIP) $(IDIR_VIM) + $(IPKG_BUILD) $(IDIR_VIM) $(PACKAGE_DIR) |