# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit toolchain-funcs DESCRIPTION="Hexdump utility from vim" HOMEPAGE="https://github.com/vim/vim" SRC_URI="https://raw.githubusercontent.com/vim/vim/master/src/xxd/xxd.c https://raw.githubusercontent.com/vim/vim/master/runtime/doc/xxd.1 https://raw.githubusercontent.com/vim/vim/master/src/xxd/Makefile" LICENSE="GPL-2 MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RESTRICT="mirror" RDEPEND="!app-editors/vim-core" S="${WORKDIR}" src_unpack() { cp "${DISTDIR}"/{Makefile,xxd.{c,1}} "${S}" || die "cp failed" } src_compile() { emake CC="$(tc-getCC)" } src_install() { dobin xxd doman xxd.1 }