Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | SUMMARY = "Vi IMproved - enhanced vi editor" |
Andrew Geissler | 90fd73c | 2021-03-05 15:25:55 -0600 | [diff] [blame] | 2 | DESCRIPTION = "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 Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 3 | SECTION = "console/utils" |
| 4 | |
Andrew Geissler | 90fd73c | 2021-03-05 15:25:55 -0600 | [diff] [blame] | 5 | HOMEPAGE = "https://www.vim.org/" |
| 6 | BUGTRACKER = "https://github.com/vim/vim/issues" |
| 7 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 8 | DEPENDS = "ncurses gettext-native" |
| 9 | # vimdiff doesn't like busybox diff |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 10 | RSUGGESTS:${PN} = "diffutils" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 11 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 12 | LICENSE = "Vim" |
| 13 | LIC_FILES_CHKSUM = "file://LICENSE;md5=6b30ea4fa660c483b619924bc709ef99 \ |
Patrick Williams | de0582f | 2022-04-08 10:23:27 -0500 | [diff] [blame] | 14 | file://runtime/doc/uganda.txt;md5=daf48235bb824c77fe8ae88d5f575f74" |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 15 | |
| 16 | SRC_URI = "git://github.com/vim/vim.git;branch=master;protocol=https \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 17 | file://disable_acl_header_check.patch \ |
| 18 | file://vim-add-knob-whether-elf.h-are-checked.patch \ |
| 19 | file://0001-src-Makefile-improve-reproducibility.patch \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 20 | file://no-path-adjust.patch \ |
Andrew Geissler | 9b4d8b0 | 2021-02-19 12:26:16 -0600 | [diff] [blame] | 21 | file://racefix.patch \ |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 22 | " |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 23 | |
Andrew Geissler | d583833 | 2022-05-27 11:33:10 -0500 | [diff] [blame] | 24 | PV .= ".4912" |
| 25 | SRCREV = "a7583c42cd6b64fd276a5d7bb0db5ce7bfafa730" |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 26 | |
| 27 | # Remove when 8.3 is out |
| 28 | UPSTREAM_VERSION_UNKNOWN = "1" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 29 | |
| 30 | # Do not consider .z in x.y.z, as that is updated with every commit |
| 31 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+)\.0" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 32 | |
| 33 | S = "${WORKDIR}/git" |
| 34 | |
| 35 | VIMDIR = "vim${@d.getVar('PV').split('.')[0]}${@d.getVar('PV').split('.')[1]}" |
| 36 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 37 | inherit autotools-brokensep update-alternatives mime-xdg |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 38 | |
| 39 | CLEANBROKEN = "1" |
| 40 | |
| 41 | # vim configure.in contains functions which got 'dropped' by autotools.bbclass |
| 42 | do_configure () { |
| 43 | cd src |
| 44 | rm -f auto/* |
| 45 | touch auto/config.mk |
| 46 | aclocal |
| 47 | autoconf |
| 48 | cd .. |
| 49 | oe_runconf |
| 50 | touch src/auto/configure |
| 51 | touch src/auto/config.mk src/auto/config.h |
| 52 | } |
| 53 | |
| 54 | do_compile() { |
| 55 | # We do not support fully / correctly the following locales. Attempting |
| 56 | # to use these with msgfmt in order to update the ".desktop" files exposes |
| 57 | # this problem and leads to the compile failing. |
| 58 | for LOCALE in cs fr ko pl sk zh_CN zh_TW;do |
| 59 | echo -n > src/po/${LOCALE}.po |
| 60 | done |
| 61 | autotools_do_compile |
| 62 | } |
| 63 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 64 | PACKAGECONFIG ??= "\ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 65 | ${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)} \ |
| 66 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 gtkgui', '', d)} \ |
Andrew Geissler | d159c7f | 2021-09-02 21:05:58 -0500 | [diff] [blame] | 67 | nls \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 68 | " |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 69 | |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 70 | PACKAGECONFIG[gtkgui] = "--enable-gui=gtk3,--enable-gui=no,gtk+3" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 71 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," |
| 72 | PACKAGECONFIG[x11] = "--with-x,--without-x,xt," |
| 73 | PACKAGECONFIG[tiny] = "--with-features=tiny,--with-features=big,," |
| 74 | PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux," |
| 75 | PACKAGECONFIG[elfutils] = "--enable-elf-check,,elfutils," |
Andrew Geissler | d159c7f | 2021-09-02 21:05:58 -0500 | [diff] [blame] | 76 | PACKAGECONFIG[nls] = "--enable-nls,--disable-nls,," |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 77 | PACKAGECONFIG[sound] = "--enable-canberra,--disable-canberra,canberra," |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 78 | |
| 79 | EXTRA_OECONF = " \ |
| 80 | --disable-gpm \ |
| 81 | --disable-gtktest \ |
| 82 | --disable-xim \ |
| 83 | --disable-netbeans \ |
Andrew Geissler | 9b4d8b0 | 2021-02-19 12:26:16 -0600 | [diff] [blame] | 84 | --disable-desktop-database-update \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 85 | --with-tlib=ncurses \ |
| 86 | ac_cv_small_wchar_t=no \ |
Andrew Geissler | 9b4d8b0 | 2021-02-19 12:26:16 -0600 | [diff] [blame] | 87 | ac_cv_path_GLIB_COMPILE_RESOURCES=no \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 88 | vim_cv_getcwd_broken=no \ |
| 89 | vim_cv_memmove_handles_overlap=yes \ |
| 90 | vim_cv_stat_ignores_slash=no \ |
| 91 | vim_cv_terminfo=yes \ |
| 92 | vim_cv_tgetent=non-zero \ |
| 93 | vim_cv_toupper_broken=no \ |
| 94 | vim_cv_tty_group=world \ |
| 95 | STRIP=/bin/true \ |
| 96 | " |
| 97 | |
| 98 | do_install() { |
| 99 | autotools_do_install |
| 100 | |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 101 | # Work around file-rdeps picking up csh, awk, perl or python as a dep |
| 102 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/vim132 |
| 103 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/mve.awk |
| 104 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.pl |
| 105 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.py |
| 106 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 107 | # Install example vimrc from runtime files |
| 108 | install -m 0644 runtime/vimrc_example.vim ${D}/${datadir}/${BPN}/vimrc |
| 109 | |
| 110 | # we use --with-features=big as default |
| 111 | mv ${D}${bindir}/${BPN} ${D}${bindir}/${BPN}.${BPN} |
| 112 | |
| 113 | if ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'true', 'false', d)}; then |
| 114 | # The mouse being autoenabled is just annoying in xfce4-terminal (mouse |
| 115 | # drag make vim go into visual mode and there is no right click menu), |
| 116 | # delete the block. |
| 117 | sed -i '/the mouse works just fine/,+4d' ${D}/${datadir}/${BPN}/vimrc |
| 118 | fi |
| 119 | } |
| 120 | |
| 121 | PARALLEL_MAKEINST = "" |
| 122 | |
| 123 | PACKAGES =+ "${PN}-common ${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-tools" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 124 | FILES:${PN}-syntax = "${datadir}/${BPN}/${VIMDIR}/syntax" |
| 125 | FILES:${PN}-help = "${datadir}/${BPN}/${VIMDIR}/doc" |
| 126 | FILES:${PN}-tutor = "${datadir}/${BPN}/${VIMDIR}/tutor ${bindir}/${BPN}tutor" |
| 127 | FILES:${PN}-vimrc = "${datadir}/${BPN}/vimrc" |
| 128 | FILES:${PN}-data = "${datadir}/${BPN}" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 129 | |
| 130 | # We do not want to complain if perl or gawk are not on the target. |
| 131 | # |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 132 | FILES:${PN}-tools = "${datadir}/${BPN}/${VIMDIR}/tools" |
| 133 | INSANE_SKIP:${PN}-tools = "file-rdeps" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 134 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 135 | FILES:${PN}-common = " \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 136 | ${datadir}/${BPN}/${VIMDIR}/*.vim \ |
| 137 | ${datadir}/${BPN}/${VIMDIR}/autoload \ |
| 138 | ${datadir}/${BPN}/${VIMDIR}/colors \ |
| 139 | ${datadir}/${BPN}/${VIMDIR}/compiler \ |
| 140 | ${datadir}/${BPN}/${VIMDIR}/ftplugin \ |
| 141 | ${datadir}/${BPN}/${VIMDIR}/indent \ |
| 142 | ${datadir}/${BPN}/${VIMDIR}/keymap \ |
| 143 | ${datadir}/${BPN}/${VIMDIR}/lang \ |
| 144 | ${datadir}/${BPN}/${VIMDIR}/macros \ |
| 145 | ${datadir}/${BPN}/${VIMDIR}/plugin \ |
| 146 | ${datadir}/${BPN}/${VIMDIR}/print \ |
| 147 | ${datadir}/${BPN}/${VIMDIR}/spell \ |
| 148 | ${datadir}/icons \ |
| 149 | " |
| 150 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 151 | ALTERNATIVE:${PN} = "vi vim" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 152 | ALTERNATIVE_PRIORITY = "100" |
| 153 | ALTERNATIVE_TARGET = "${bindir}/${BPN}.${BPN}" |
| 154 | ALTERNATIVE_LINK_NAME[vi] = "${base_bindir}/vi" |
| 155 | ALTERNATIVE_LINK_NAME[vim] = "${bindir}/vim" |