diff options
author | 2016-09-02 19:12:51 -0400 | |
---|---|---|
committer | 2016-09-02 19:12:51 -0400 | |
commit | 64a7a181895035440967fae581c3ad397898b1b8 (patch) | |
tree | 2f73f3beb24f98c9b3fe3bed0042175b23071b5d /app-misc/binwalk/binwalk-2.1.1.ebuild | |
parent | dev-python/pyqtgraph: add python3_5 support (diff) | |
download | gentoo-64a7a181895035440967fae581c3ad397898b1b8.tar.gz gentoo-64a7a181895035440967fae581c3ad397898b1b8.tar.bz2 gentoo-64a7a181895035440967fae581c3ad397898b1b8.zip |
app-misc/binwalk: version bump to 2.1.1
Diffstat (limited to 'app-misc/binwalk/binwalk-2.1.1.ebuild')
-rw-r--r-- | app-misc/binwalk/binwalk-2.1.1.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-misc/binwalk/binwalk-2.1.1.ebuild b/app-misc/binwalk/binwalk-2.1.1.ebuild new file mode 100644 index 000000000000..804c0b153dad --- /dev/null +++ b/app-misc/binwalk/binwalk-2.1.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="A tool for identifying files embedded inside firmware images" +HOMEPAGE="https://github.com/devttys0/binwalk" +SRC_URI="https://github.com/devttys0/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="graph" + +RDEPEND=" + $(python_gen_cond_dep 'dev-python/pyliblzma[${PYTHON_USEDEP}]' python2_7) + graph? ( dev-python/pyqtgraph[opengl,${PYTHON_USEDEP}] ) +" + +python_install_all() { + local DOCS=( API.md INSTALL.md README.md ) + distutils-r1_python_install_all +} + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "binwalk has many optional dependencies to automatically" + elog "extract/decompress data, see INSTALL.md for more details." + fi +} |