blob: 071deed338bbea1dd2f43fdd6cf4460b358068ed [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001SUMMARY = "Vi IMproved - enhanced vi editor"
Andrew Geissler90fd73c2021-03-05 15:25:55 -06002DESCRIPTION = "Vim is a greatly improved version of the good old UNIX editor Vi. Many new features have been added: multi-level undo, syntax highlighting, command line history, on-line help, spell checking, filename completion, block operations, script language, etc. There is also a Graphical User Interface (GUI) available."
Brad Bishopc342db32019-05-15 21:57:59 -04003SECTION = "console/utils"
4
Andrew Geissler90fd73c2021-03-05 15:25:55 -06005HOMEPAGE = "https://www.vim.org/"
6BUGTRACKER = "https://github.com/vim/vim/issues"
7
Brad Bishopc342db32019-05-15 21:57:59 -04008DEPENDS = "ncurses gettext-native"
9# vimdiff doesn't like busybox diff
Patrick Williams213cb262021-08-07 19:21:33 -050010RSUGGESTS:${PN} = "diffutils"
Brad Bishopc342db32019-05-15 21:57:59 -040011
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000012LICENSE = "Vim"
Andrew Geissler220dafd2023-10-04 10:18:08 -050013LIC_FILES_CHKSUM = "file://LICENSE;md5=d1a651ab770b45d41c0f8cb5a8ca930e"
Andrew Geissler595f6302022-01-24 19:11:47 +000014
15SRC_URI = "git://github.com/vim/vim.git;branch=master;protocol=https \
Brad Bishopc342db32019-05-15 21:57:59 -040016 file://disable_acl_header_check.patch \
17 file://vim-add-knob-whether-elf.h-are-checked.patch \
18 file://0001-src-Makefile-improve-reproducibility.patch \
Andrew Geissler82c905d2020-04-13 13:39:40 -050019 file://no-path-adjust.patch \
Andrew Geissler595f6302022-01-24 19:11:47 +000020 "
Andrew Geissler5199d832021-09-24 16:47:35 -050021
Patrick Williams73bd93f2024-02-20 08:07:48 -060022PV .= ".0114"
23SRCREV = "fcaed6a70faf73bff3e5405ada556d726024f866"
Andrew Geissler82c905d2020-04-13 13:39:40 -050024
25# Do not consider .z in x.y.z, as that is updated with every commit
26UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+)\.0"
Andrew Geissler5082cc72023-09-11 08:41:39 -040027# Ignore that the upstream version .z in x.y.z is always newer
28UPSTREAM_VERSION_UNKNOWN = "1"
Brad Bishopc342db32019-05-15 21:57:59 -040029
30S = "${WORKDIR}/git"
31
32VIMDIR = "vim${@d.getVar('PV').split('.')[0]}${@d.getVar('PV').split('.')[1]}"
33
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050034inherit autotools-brokensep update-alternatives mime-xdg pkgconfig
Brad Bishopc342db32019-05-15 21:57:59 -040035
36CLEANBROKEN = "1"
37
38# vim configure.in contains functions which got 'dropped' by autotools.bbclass
39do_configure () {
40 cd src
41 rm -f auto/*
42 touch auto/config.mk
Patrick Williamsac13d5f2023-11-24 18:59:46 -060043 # git timestamps aren't reliable, so touch the shipped .po files so they aren't regenerated
44 touch -c po/cs.cp1250.po po/ja.euc-jp.po po/ja.sjis.po po/ko.po po/pl.UTF-8.po po/pl.cp1250.po po/ru.cp1251.po po/sk.cp1250.po po/uk.cp1251.po po/zh_CN.po po/zh_CN.cp936.po po/zh_TW.po
45 # ru.cp1251.po uses CP1251 rather than cp1251, fix that
46 sed -i -e s/CP1251/cp1251/ po/ru.cp1251.po
Brad Bishopc342db32019-05-15 21:57:59 -040047 aclocal
48 autoconf
49 cd ..
50 oe_runconf
51 touch src/auto/configure
52 touch src/auto/config.mk src/auto/config.h
Patrick Williamsac13d5f2023-11-24 18:59:46 -060053 # need a native tool, not a target one
54 ${BUILD_CC} src/po/sjiscorr.c -o src/po/sjiscorr
Brad Bishopc342db32019-05-15 21:57:59 -040055}
56
Andrew Geissler595f6302022-01-24 19:11:47 +000057PACKAGECONFIG ??= "\
Brad Bishopc342db32019-05-15 21:57:59 -040058 ${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)} \
59 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 gtkgui', '', d)} \
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050060 nls \
Brad Bishopc342db32019-05-15 21:57:59 -040061"
Brad Bishopc342db32019-05-15 21:57:59 -040062
Brad Bishop15ae2502019-06-18 21:44:24 -040063PACKAGECONFIG[gtkgui] = "--enable-gui=gtk3,--enable-gui=no,gtk+3"
Brad Bishopc342db32019-05-15 21:57:59 -040064PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl,"
65PACKAGECONFIG[x11] = "--with-x,--without-x,xt,"
66PACKAGECONFIG[tiny] = "--with-features=tiny,--with-features=big,,"
67PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,"
68PACKAGECONFIG[elfutils] = "--enable-elf-check,,elfutils,"
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050069PACKAGECONFIG[nls] = "--enable-nls,--disable-nls,,"
Andrew Geissler5199d832021-09-24 16:47:35 -050070PACKAGECONFIG[sound] = "--enable-canberra,--disable-canberra,canberra,"
Brad Bishopc342db32019-05-15 21:57:59 -040071
72EXTRA_OECONF = " \
73 --disable-gpm \
74 --disable-gtktest \
75 --disable-xim \
76 --disable-netbeans \
Andrew Geissler9b4d8b02021-02-19 12:26:16 -060077 --disable-desktop-database-update \
Brad Bishopc342db32019-05-15 21:57:59 -040078 --with-tlib=ncurses \
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050079 --with-modified-by='${MAINTAINER}' \
Brad Bishopc342db32019-05-15 21:57:59 -040080 ac_cv_small_wchar_t=no \
Andrew Geissler9b4d8b02021-02-19 12:26:16 -060081 ac_cv_path_GLIB_COMPILE_RESOURCES=no \
Brad Bishopc342db32019-05-15 21:57:59 -040082 vim_cv_getcwd_broken=no \
83 vim_cv_memmove_handles_overlap=yes \
84 vim_cv_stat_ignores_slash=no \
85 vim_cv_terminfo=yes \
86 vim_cv_tgetent=non-zero \
87 vim_cv_toupper_broken=no \
88 vim_cv_tty_group=world \
89 STRIP=/bin/true \
90"
91
Patrick Williamsdb4c27e2022-08-05 08:10:29 -050092# Some host distros don't have it, disable consistently
93EXTRA_OECONF:append:class-native = " vim_cv_timer_create=no"
94EXTRA_OECONF:append:class-target = " vim_cv_timer_create=yes"
95
Brad Bishopc342db32019-05-15 21:57:59 -040096do_install() {
97 autotools_do_install
98
Andrew Geissler5a43b432020-06-13 10:46:56 -050099 # Work around file-rdeps picking up csh, awk, perl or python as a dep
100 chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/vim132
101 chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/mve.awk
102 chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.pl
103 chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.py
104
Brad Bishopc342db32019-05-15 21:57:59 -0400105 # Install example vimrc from runtime files
106 install -m 0644 runtime/vimrc_example.vim ${D}/${datadir}/${BPN}/vimrc
107
108 # we use --with-features=big as default
109 mv ${D}${bindir}/${BPN} ${D}${bindir}/${BPN}.${BPN}
110
111 if ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'true', 'false', d)}; then
112 # The mouse being autoenabled is just annoying in xfce4-terminal (mouse
113 # drag make vim go into visual mode and there is no right click menu),
114 # delete the block.
115 sed -i '/the mouse works just fine/,+4d' ${D}/${datadir}/${BPN}/vimrc
116 fi
117}
118
119PARALLEL_MAKEINST = ""
120
121PACKAGES =+ "${PN}-common ${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-tools"
Patrick Williams213cb262021-08-07 19:21:33 -0500122FILES:${PN}-syntax = "${datadir}/${BPN}/${VIMDIR}/syntax"
123FILES:${PN}-help = "${datadir}/${BPN}/${VIMDIR}/doc"
124FILES:${PN}-tutor = "${datadir}/${BPN}/${VIMDIR}/tutor ${bindir}/${BPN}tutor"
125FILES:${PN}-vimrc = "${datadir}/${BPN}/vimrc"
126FILES:${PN}-data = "${datadir}/${BPN}"
Andrew Geissler82c905d2020-04-13 13:39:40 -0500127
128# We do not want to complain if perl or gawk are not on the target.
129#
Patrick Williams213cb262021-08-07 19:21:33 -0500130FILES:${PN}-tools = "${datadir}/${BPN}/${VIMDIR}/tools"
131INSANE_SKIP:${PN}-tools = "file-rdeps"
Andrew Geissler82c905d2020-04-13 13:39:40 -0500132
Patrick Williams213cb262021-08-07 19:21:33 -0500133FILES:${PN}-common = " \
Brad Bishopc342db32019-05-15 21:57:59 -0400134 ${datadir}/${BPN}/${VIMDIR}/*.vim \
135 ${datadir}/${BPN}/${VIMDIR}/autoload \
136 ${datadir}/${BPN}/${VIMDIR}/colors \
137 ${datadir}/${BPN}/${VIMDIR}/compiler \
138 ${datadir}/${BPN}/${VIMDIR}/ftplugin \
139 ${datadir}/${BPN}/${VIMDIR}/indent \
140 ${datadir}/${BPN}/${VIMDIR}/keymap \
141 ${datadir}/${BPN}/${VIMDIR}/lang \
142 ${datadir}/${BPN}/${VIMDIR}/macros \
143 ${datadir}/${BPN}/${VIMDIR}/plugin \
144 ${datadir}/${BPN}/${VIMDIR}/print \
145 ${datadir}/${BPN}/${VIMDIR}/spell \
146 ${datadir}/icons \
147"
148
Patrick Williams213cb262021-08-07 19:21:33 -0500149ALTERNATIVE:${PN} = "vi vim"
Brad Bishopc342db32019-05-15 21:57:59 -0400150ALTERNATIVE_PRIORITY = "100"
151ALTERNATIVE_TARGET = "${bindir}/${BPN}.${BPN}"
152ALTERNATIVE_LINK_NAME[vi] = "${base_bindir}/vi"
153ALTERNATIVE_LINK_NAME[vim] = "${bindir}/vim"