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" |
Andrew Geissler | 220dafd | 2023-10-04 10:18:08 -0500 | [diff] [blame] | 13 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d1a651ab770b45d41c0f8cb5a8ca930e" |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 14 | |
| 15 | SRC_URI = "git://github.com/vim/vim.git;branch=master;protocol=https \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 16 | 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 Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 19 | file://no-path-adjust.patch \ |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 20 | " |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 21 | |
Patrick Williams | da29531 | 2023-12-05 16:48:56 -0600 | [diff] [blame] | 22 | PV .= ".2130" |
| 23 | SRCREV = "075ad7047457debfeef13442c01e74088b461092" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 24 | |
| 25 | # Do not consider .z in x.y.z, as that is updated with every commit |
| 26 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+)\.0" |
Andrew Geissler | 5082cc7 | 2023-09-11 08:41:39 -0400 | [diff] [blame] | 27 | # Ignore that the upstream version .z in x.y.z is always newer |
| 28 | UPSTREAM_VERSION_UNKNOWN = "1" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 29 | |
| 30 | S = "${WORKDIR}/git" |
| 31 | |
| 32 | VIMDIR = "vim${@d.getVar('PV').split('.')[0]}${@d.getVar('PV').split('.')[1]}" |
| 33 | |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame] | 34 | inherit autotools-brokensep update-alternatives mime-xdg pkgconfig |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 35 | |
| 36 | CLEANBROKEN = "1" |
| 37 | |
| 38 | # vim configure.in contains functions which got 'dropped' by autotools.bbclass |
| 39 | do_configure () { |
| 40 | cd src |
| 41 | rm -f auto/* |
| 42 | touch auto/config.mk |
Patrick Williams | ac13d5f | 2023-11-24 18:59:46 -0600 | [diff] [blame] | 43 | # 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 Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 47 | aclocal |
| 48 | autoconf |
| 49 | cd .. |
| 50 | oe_runconf |
| 51 | touch src/auto/configure |
| 52 | touch src/auto/config.mk src/auto/config.h |
Patrick Williams | ac13d5f | 2023-11-24 18:59:46 -0600 | [diff] [blame] | 53 | # need a native tool, not a target one |
| 54 | ${BUILD_CC} src/po/sjiscorr.c -o src/po/sjiscorr |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 55 | } |
| 56 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 57 | PACKAGECONFIG ??= "\ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 58 | ${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)} \ |
| 59 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 gtkgui', '', d)} \ |
Andrew Geissler | d159c7f | 2021-09-02 21:05:58 -0500 | [diff] [blame] | 60 | nls \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 61 | " |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 62 | |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 63 | PACKAGECONFIG[gtkgui] = "--enable-gui=gtk3,--enable-gui=no,gtk+3" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 64 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," |
| 65 | PACKAGECONFIG[x11] = "--with-x,--without-x,xt," |
| 66 | PACKAGECONFIG[tiny] = "--with-features=tiny,--with-features=big,," |
| 67 | PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux," |
| 68 | PACKAGECONFIG[elfutils] = "--enable-elf-check,,elfutils," |
Andrew Geissler | d159c7f | 2021-09-02 21:05:58 -0500 | [diff] [blame] | 69 | PACKAGECONFIG[nls] = "--enable-nls,--disable-nls,," |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 70 | PACKAGECONFIG[sound] = "--enable-canberra,--disable-canberra,canberra," |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 71 | |
| 72 | EXTRA_OECONF = " \ |
| 73 | --disable-gpm \ |
| 74 | --disable-gtktest \ |
| 75 | --disable-xim \ |
| 76 | --disable-netbeans \ |
Andrew Geissler | 9b4d8b0 | 2021-02-19 12:26:16 -0600 | [diff] [blame] | 77 | --disable-desktop-database-update \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 78 | --with-tlib=ncurses \ |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame] | 79 | --with-modified-by='${MAINTAINER}' \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 80 | ac_cv_small_wchar_t=no \ |
Andrew Geissler | 9b4d8b0 | 2021-02-19 12:26:16 -0600 | [diff] [blame] | 81 | ac_cv_path_GLIB_COMPILE_RESOURCES=no \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 82 | 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 Williams | db4c27e | 2022-08-05 08:10:29 -0500 | [diff] [blame] | 92 | # Some host distros don't have it, disable consistently |
| 93 | EXTRA_OECONF:append:class-native = " vim_cv_timer_create=no" |
| 94 | EXTRA_OECONF:append:class-target = " vim_cv_timer_create=yes" |
| 95 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 96 | do_install() { |
| 97 | autotools_do_install |
| 98 | |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 99 | # 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 Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 105 | # 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 | |
| 119 | PARALLEL_MAKEINST = "" |
| 120 | |
| 121 | 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] | 122 | FILES:${PN}-syntax = "${datadir}/${BPN}/${VIMDIR}/syntax" |
| 123 | FILES:${PN}-help = "${datadir}/${BPN}/${VIMDIR}/doc" |
| 124 | FILES:${PN}-tutor = "${datadir}/${BPN}/${VIMDIR}/tutor ${bindir}/${BPN}tutor" |
| 125 | FILES:${PN}-vimrc = "${datadir}/${BPN}/vimrc" |
| 126 | FILES:${PN}-data = "${datadir}/${BPN}" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 127 | |
| 128 | # We do not want to complain if perl or gawk are not on the target. |
| 129 | # |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 130 | FILES:${PN}-tools = "${datadir}/${BPN}/${VIMDIR}/tools" |
| 131 | INSANE_SKIP:${PN}-tools = "file-rdeps" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 132 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 133 | FILES:${PN}-common = " \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 134 | ${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 Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 149 | ALTERNATIVE:${PN} = "vi vim" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 150 | ALTERNATIVE_PRIORITY = "100" |
| 151 | ALTERNATIVE_TARGET = "${bindir}/${BPN}.${BPN}" |
| 152 | ALTERNATIVE_LINK_NAME[vi] = "${base_bindir}/vi" |
| 153 | ALTERNATIVE_LINK_NAME[vim] = "${bindir}/vim" |