Merge pull request #12594 from hnyman/nlbw
[feed/packages.git] / utils / vim / Makefile
1 #
2 # Copyright (C) 2015 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=vim
11 PKG_VERSION:=8.2
12 PKG_RELEASE:=1
13 VIMVER:=82
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://ftp.vim.org/pub/vim/unix
17 PKG_HASH:=f087f821831b4fece16a0461d574ccd55a8279f64d635510a1e10225966ced3b
18 PKG_MAINTAINER:=Marko Ratkaj <marko.ratkaj@sartura.hr>
19 PKG_CPE_ID:=cpe:/a:vim:vim
20
21 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)$(VIMVER)
22 PKG_BUILD_PARALLEL:=1
23
24 HOST_BUILD_DEPENDS:=libiconv/host
25 HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)$(VIMVER)
26 HOST_BUILD_PARALLEL:=1
27
28 include $(INCLUDE_DIR)/package.mk
29 include $(INCLUDE_DIR)/host-build.mk
30
31 define Package/vim/Default
32 SECTION:=utils
33 CATEGORY:=Utilities
34 DEPENDS:=+libncurses
35 TITLE:=Vi IMproved - enhanced vi editor
36 URL:=http://www.vim.org/
37 SUBMENU:=Editors
38 endef
39
40 define Package/vim
41 $(call Package/vim/Default)
42 TITLE+= (Tiny)
43 endef
44
45 define Package/vim-full
46 $(call Package/vim/Default)
47 TITLE+= (Normal)
48 endef
49
50
51 define Package/vim-fuller
52 $(call Package/vim/Default)
53 TITLE+= (Big)
54 endef
55
56 define Package/vim-runtime
57 $(call Package/vim/Default)
58 TITLE+= (runtime files)
59 endef
60
61 define Package/vim-help
62 $(call Package/vim/Default)
63 TITLE+= (help files)
64 endef
65
66 define Package/xxd
67 SECTION:=utils
68 CATEGORY:=Utilities
69 TITLE:=make a hexdump or do the reverse
70 URL:=http://www.vim.org/
71 endef
72
73 define Package/vim-full/conffiles
74 /usr/share/vim/vimrc
75 /root/.vimrc
76 endef
77
78 define Package/vim/conffiles
79 /usr/share/vim/vimrc
80 /root/.vimrc
81 endef
82
83 define Package/vim/description
84 Vim is an almost compatible version of the UNIX editor Vi.
85 (Tiny build)
86 endef
87
88 define Package/vim-full/description
89 Vim is an almost compatible version of the UNIX editor Vi.
90 (Normal build)
91 endef
92
93
94 define Package/vim-fuller/description
95 Vim is an almost compatible version of the UNIX editor Vi.
96 (Big build)
97 endef
98
99 define Package/vim-runtime/description
100 Vim is an almost compatible version of the UNIX editor Vi.
101 (Runtime files)
102 endef
103
104 define Package/vim-help/description
105 Vim is an almost compatible version of the UNIX editor Vi.
106 (Help files)
107 endef
108
109 define Package/xxd/description
110 xxd creates a hex dump of a given file or standard input, it can also convert
111 a hex dump back to its original binary form.
112 endef
113
114 HOST_CONFIGURE_ARGS += \
115 --disable-acl \
116 --disable-gpm \
117 --disable-nls \
118 --disable-selinux \
119 --enable-gui=no \
120 --with-features=normal \
121 --without-x
122
123 CONFIGURE_ARGS += \
124 --disable-gui \
125 --disable-gtktest \
126 --disable-xim \
127 --without-x \
128 --disable-netbeans \
129 --disable-cscope \
130 --disable-gpm \
131 --disable-acl \
132 --with-tlib=ncurses \
133 --with-compiledby="non-existent-hostname-compiled"
134
135 CONFIGURE_VARS += \
136 ac_cv_header_elf_h=no \
137 vim_cv_getcwd_broken=no \
138 vim_cv_memmove_handles_overlap=yes \
139 vim_cv_stat_ignores_slash=yes \
140 vim_cv_tgetent=zero \
141 vim_cv_terminfo=yes \
142 vim_cv_toupper_broken=no \
143 vim_cv_tty_group=root \
144 vim_cv_tty_mode=0620
145
146 ifneq ($(HOST_OS),Linux)
147 TARGET_PATH_PKG:=$(CURDIR)/scripts:$(TARGET_PATH_PKG)
148 endif
149
150 define Build/Prepare
151 $(call Build/Prepare/Default)
152 $(MAKE) -C $(PKG_BUILD_DIR)/src autoconf
153 endef
154
155 ifneq ($(CONFIG_PACKAGE_vim),)
156 define Build/Compile/vim
157 $(call Build/Configure/Default, \
158 --with-features=tiny \
159 )
160 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
161 DESTDIR="$(PKG_INSTALL_DIR)" all
162 $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(PKG_BUILD_DIR)/vim_tiny
163 endef
164 endif
165
166 ifneq ($(CONFIG_PACKAGE_vim-full),)
167 define Build/Compile/vim-full
168 $(call Build/Configure/Default, \
169 --with-features=normal \
170 )
171 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
172 DESTDIR="$(PKG_INSTALL_DIR)" all
173 $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(PKG_BUILD_DIR)/vim_normal
174 endef
175 endif
176
177 ifneq ($(CONFIG_PACKAGE_vim-fuller),)
178 define Build/Compile/vim-fuller
179 $(call Build/Configure/Default, \
180 --with-features=big \
181 )
182 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
183 DESTDIR="$(PKG_INSTALL_DIR)" all
184 $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(PKG_BUILD_DIR)/vim_big
185 endef
186 endif
187
188
189
190 ifneq ($(CONFIG_PACKAGE_xxd),)
191 define Build/Compile/xxd
192 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
193 DESTDIR="$(PKG_INSTALL_DIR)" all
194 endef
195 endif
196
197 define Build/Compile/vim-runtime
198 $(MAKE) -C $(PKG_BUILD_DIR)/src DESTDIR="$(PKG_INSTALL_DIR)" installrtbase
199 (cd $(PKG_INSTALL_DIR) && tar -cf $(PKG_BUILD_DIR)/docs.tar ./usr/share/vim/vim$(VIMVER)/doc)
200 rm -rf $(PKG_INSTALL_DIR)/usr/share/vim/vim$(VIMVER)/doc
201 rm -rf $(PKG_INSTALL_DIR)/usr/man
202 endef
203
204 define Build/Compile
205 $(call Build/Compile/vim)
206 $(call Build/Compile/vim-full)
207 $(call Build/Compile/vim-fuller)
208 $(call Build/Compile/vim-runtime)
209 $(call Build/Compile/xxd)
210 endef
211
212 define Package/vim/install
213 $(INSTALL_DIR) $(1)/usr/bin
214 $(INSTALL_BIN) $(PKG_BUILD_DIR)/vim_tiny $(1)/usr/bin/vim
215 $(INSTALL_DIR) $(1)/usr/share/vim
216 $(INSTALL_CONF) ./files/vimrc $(1)/usr/share/vim/
217 endef
218
219 define Package/vim-full/install
220 $(INSTALL_DIR) $(1)/usr/bin
221 $(INSTALL_BIN) $(PKG_BUILD_DIR)/vim_normal $(1)/usr/bin/vim
222 $(INSTALL_DIR) $(1)/usr/share/vim
223 $(INSTALL_CONF) ./files/vimrc.full $(1)/usr/share/vim/vimrc
224 endef
225
226
227 define Package/vim-fuller/install
228 $(INSTALL_DIR) $(1)/usr/bin
229 $(INSTALL_BIN) $(PKG_BUILD_DIR)/vim_big $(1)/usr/bin/vim
230 $(INSTALL_DIR) $(1)/usr/share/vim
231 $(LN) vim $(1)/usr/bin/vimdiff
232 $(CP) $(PKG_INSTALL_DIR)/usr/share/vim/vim$(VIMVER) $(1)/usr/share/vim
233 $(INSTALL_CONF) ./files/vimrc.full $(1)/usr/share/vim/vimrc
234 endef
235
236
237
238 define Package/vim-runtime/install
239 $(CP) $(PKG_INSTALL_DIR)/* $(1)
240 rm -rf $(1)/usr/share/vim/vim$(VIMVER)/doc
241 endef
242
243 define Package/vim-help/install
244 tar -C $(1) -xf $(PKG_BUILD_DIR)/docs.tar
245 endef
246
247 define Package/xxd/install
248 $(INSTALL_DIR) $(1)/usr/bin
249 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/xxd/xxd $(1)/usr/bin
250 endef
251
252 $(eval $(call BuildPackage,vim))
253 $(eval $(call BuildPackage,vim-full))
254 $(eval $(call BuildPackage,vim-fuller))
255 $(eval $(call BuildPackage,vim-runtime))
256 $(eval $(call BuildPackage,vim-help))
257 $(eval $(call BuildPackage,xxd))
258 $(eval $(call HostBuild))