diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2021-01-18 12:35:59 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-01-18 12:35:59 +0100 |
commit | 0fbd6c11b82b7fbfca515f786852d59fa1c9634e (patch) | |
tree | eb421090e54dfc50e47ded53f5713af95ea1bd00 /app-misc | |
parent | dev-haskell/timeit: drop longdescription (diff) | |
download | gentoo-0fbd6c11b82b7fbfca515f786852d59fa1c9634e.tar.gz gentoo-0fbd6c11b82b7fbfca515f786852d59fa1c9634e.tar.bz2 gentoo-0fbd6c11b82b7fbfca515f786852d59fa1c9634e.zip |
app-misc/vifm: Remove old
Bug: https://bugs.gentoo.org/763666
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/vifm/Manifest | 1 | ||||
-rw-r--r-- | app-misc/vifm/vifm-0.10.1.ebuild | 102 |
2 files changed, 0 insertions, 103 deletions
diff --git a/app-misc/vifm/Manifest b/app-misc/vifm/Manifest index d3f6ca28a838..32d132f9f552 100644 --- a/app-misc/vifm/Manifest +++ b/app-misc/vifm/Manifest @@ -1,2 +1 @@ -DIST vifm-0.10.1.tar.bz2 1097998 BLAKE2B b9712d61a00761986aa54d9bc561a5125ae96f751e8ba2844adae91577ba093b1a4860071b57ab81dbed3eb52c2c91ce3316831fa44a06436ef5fa81d2739f3a SHA512 8116c4c31b01a9453684a90b26b87a33e5ec2cd2930162869507f673319d231f44e464d1056239f647531c3be5bc9bcf92045c79e5d545f9c75be11c7fe03ea2 DIST vifm-0.11.tar.gz 1525791 BLAKE2B c2aa6d3ddd0304ce1e3a0d1c9ac3218a783bc6dd8eebf7b3346ca262811f63dac75597913ad4883c62680cb77036c2985ca4ce88989a0dd0212dce975d8ec8b8 SHA512 15ace460da6d5f9bb7a016d8bb3f3d9cba47a608da5a39defbf7d09ff9de64c90a63a44264d695fe005f2f6d27ecb07dcec8f4ed5aef15e9d8728b52f1168dbd diff --git a/app-misc/vifm/vifm-0.10.1.ebuild b/app-misc/vifm/vifm-0.10.1.ebuild deleted file mode 100644 index 0b697df0c6e7..000000000000 --- a/app-misc/vifm/vifm-0.10.1.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools vim-doc versionator xdg-utils - -MY_P=$(replace_version_separator 4 '-' ${PF}) - -DESCRIPTION="Console file manager with vi(m)-like keybindings" -HOMEPAGE="https://vifm.info/" -SRC_URI="mirror://sourceforge/vifm/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="X developer +extended-keys gtk +magic vim vim-syntax" - -DEPEND=" - >=sys-libs/ncurses-5.9-r3:0 - magic? ( sys-apps/file ) - gtk? ( x11-libs/gtk+:2 ) - X? ( x11-libs/libX11 ) -" -RDEPEND=" - ${DEPEND} - vim? ( || ( app-editors/vim app-editors/gvim ) ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) -" - -DOCS="AUTHORS FAQ NEWS README TODO" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - default - sed -i -e '/stat.h/a#include <sys/sysmacros.h>' "${S}/src/modes/file_info.c" \ - || die - eautoreconf -} - -src_configure() { - econf \ - $(use_enable developer) \ - $(use_enable extended-keys) \ - $(use_with magic libmagic) \ - $(use_with gtk) \ - $(use_with X X11) -} - -src_compile() { - default -} - -src_install() { - emake DESTDIR="${D}" install - dodoc ${DOCS} - - if use vim; then - local t - for t in app plugin; do - insinto /usr/share/vim/vimfiles/"${t}" - doins "${S}"/data/vim/doc/"${t}"/"${PN}"* - done - fi - - if use vim-syntax; then - local t - for t in ftdetect ftplugin syntax; do - insinto /usr/share/vim/vimfiles/"${t}" - doins "${S}"/data/vim/"${t}"/"${PN}".vim - done - fi -} - -src_test() { - emake check -} - -pkg_postinst() { - xdg_desktop_database_update - if use vim; then - update_vim_helptags - - if [[ -n ${REPLACING_VERSIONS} ]]; then - elog - elog "You don't need to copy or link any files for" - elog " the vim plugin and documentation to work anymore." - elog "If you copied any vifm files to ~/.vim/ manually" - elog " in earlier vifm versions, please delete them." - fi - elog - elog "To use vim in vifm to view the documentation" - elog " edit ~/.vifm/vifmrc and set vimhelp instead of novimhelp" - elog - fi -} - -pkg_postrm() { - xdg_desktop_database_update - use vim && update_vim_helptags -} |