Merge pull request #11559 from peter-stadler/sqlparse
[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.1
12 PKG_RELEASE:=6
13 VIMVER:=81
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://ftp.vim.org/pub/vim/unix
17 PKG_HASH:=8b69fbd01c877dd8ecbbeca1dc66e5e927228d631ac4c2174b9307eb5c827c86
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 --disable-multibyte \
160 )
161 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
162 DESTDIR="$(PKG_INSTALL_DIR)" all
163 $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(PKG_BUILD_DIR)/vim_tiny
164 endef
165 endif
166
167 ifneq ($(CONFIG_PACKAGE_vim-full),)
168 define Build/Compile/vim-full
169 $(call Build/Configure/Default, \
170 --with-features=normal \
171 --enable-multibyte \
172 )
173 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
174 DESTDIR="$(PKG_INSTALL_DIR)" all
175 $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(PKG_BUILD_DIR)/vim_normal
176 endef
177 endif
178
179 ifneq ($(CONFIG_PACKAGE_vim-fuller),)
180 define Build/Compile/vim-fuller
181 $(call Build/Configure/Default, \
182 --with-features=big \
183 --enable-multibyte \
184 )
185 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
186 DESTDIR="$(PKG_INSTALL_DIR)" all
187 $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(PKG_BUILD_DIR)/vim_big
188 endef
189 endif
190
191
192
193 ifneq ($(CONFIG_PACKAGE_xxd),)
194 define Build/Compile/xxd
195 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
196 DESTDIR="$(PKG_INSTALL_DIR)" all
197 endef
198 endif
199
200 define Build/Compile/vim-runtime
201 $(MAKE) -C $(PKG_BUILD_DIR)/src DESTDIR="$(PKG_INSTALL_DIR)" installrtbase
202 (cd $(PKG_INSTALL_DIR) && tar -cf $(PKG_BUILD_DIR)/docs.tar ./usr/share/vim/vim$(VIMVER)/doc)
203 rm -rf $(PKG_INSTALL_DIR)/usr/share/vim/vim$(VIMVER)/doc
204 rm -rf $(PKG_INSTALL_DIR)/usr/man
205 endef
206
207 define Build/Compile
208 $(call Build/Compile/vim)
209 $(call Build/Compile/vim-full)
210 $(call Build/Compile/vim-fuller)
211 $(call Build/Compile/vim-runtime)
212 $(call Build/Compile/xxd)
213 endef
214
215 define Package/vim/install
216 $(INSTALL_DIR) $(1)/usr/bin
217 $(INSTALL_BIN) $(PKG_BUILD_DIR)/vim_tiny $(1)/usr/bin/vim
218 $(INSTALL_DIR) $(1)/usr/share/vim
219 $(INSTALL_CONF) ./files/vimrc $(1)/usr/share/vim/
220 endef
221
222 define Package/vim-full/install
223 $(INSTALL_DIR) $(1)/usr/bin
224 $(INSTALL_BIN) $(PKG_BUILD_DIR)/vim_normal $(1)/usr/bin/vim
225 $(INSTALL_DIR) $(1)/usr/share/vim
226 $(INSTALL_CONF) ./files/vimrc.full $(1)/usr/share/vim/vimrc
227 endef
228
229
230 define Package/vim-fuller/install
231 $(INSTALL_DIR) $(1)/usr/bin
232 $(INSTALL_BIN) $(PKG_BUILD_DIR)/vim_big $(1)/usr/bin/vim
233 $(INSTALL_DIR) $(1)/usr/share/vim
234 $(LN) vim $(1)/usr/bin/vimdiff
235 $(CP) $(PKG_INSTALL_DIR)/usr/share/vim/vim$(VIMVER) $(1)/usr/share/vim
236 $(INSTALL_CONF) ./files/vimrc.full $(1)/usr/share/vim/vimrc
237 endef
238
239
240
241 define Package/vim-runtime/install
242 $(CP) $(PKG_INSTALL_DIR)/* $(1)
243 rm -rf $(1)/usr/share/vim/vim$(VIMVER)/doc
244 endef
245
246 define Package/vim-help/install
247 tar -C $(1) -xf $(PKG_BUILD_DIR)/docs.tar
248 endef
249
250 define Package/xxd/install
251 $(INSTALL_DIR) $(1)/usr/bin
252 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/xxd/xxd $(1)/usr/bin
253 endef
254
255 $(eval $(call BuildPackage,vim))
256 $(eval $(call BuildPackage,vim-full))
257 $(eval $(call BuildPackage,vim-fuller))
258 $(eval $(call BuildPackage,vim-runtime))
259 $(eval $(call BuildPackage,vim-help))
260 $(eval $(call BuildPackage,xxd))
261 $(eval $(call HostBuild))