disitool: Add in digital signature tool from Didier Stevens.

This commit is contained in:
mike.auty 2013-03-18 12:12:23 +00:00
parent f805aa8ae2
commit 8763ecebd6
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST disitool_v0_3.zip 1983 SHA256 aef923f49e53c7c2194058f34a73b293d21448deb7e2112819fc1b3b450347b8 SHA512 4548baf0d2590217d41825aac66ea7a96bbe5f7ef66127031bc8bd245b6885a08a2e528dd71d1cb9f5608f16e9f0ae2d7afe020ebc8037c524be26ba69af5dd7 WHIRLPOOL eb8d4ff252614f64a1ad8994f2e884b77c7b09b125be774e0351a010dfbafd6ee2bafd31165d78ba3b9bdccecaae96d0b63735ae46c4069e9956f15f37a4db9e
EBUILD disitool-0.3.ebuild 633 SHA256 184a8d9750a1b2b486825866f193690d1c4c142605b55e5e4c46268ef3fb39f8 SHA512 13ec61b61f923d2b25650f99510710da087d9df416ff7b924a5655216a0a63aa2254336587d63804a921c1de635c6833b104069168f7a9c9e0851dc93351df8e WHIRLPOOL d2d053ad0611b8f639e510116974abe652ca4f447bafc60f62a81db512b6ba6781277b4f330c3b33581119ac9c2110aaac621fdcc877a7467ce62fb45b039ee3

View file

@ -0,0 +1,32 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
PYTHON_DEPEND="2"
inherit python
MY_P="${PN}_v${PV//./_}"
SRC_URI="http://www.didierstevens.com/files/software/${MY_P}.zip"
DESCRIPTION="This tool will allow the manipulation of Authenticode digital
signatures"
HOMEPAGE="http://blog.didierstevens.com/programs/disitool/"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
IUSE=""
RDEPEND=""
DEPEND="app-arch/unzip"
S="${WORKDIR}"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_install() {
newbin "${PN}.py" "${PN}"
}