taof: compilation fix, but it can't import fuzzutils lib now

This commit is contained in:
Anton Bolshakov 2012-11-15 07:20:19 +00:00
parent c7202fcc7f
commit e13f249e02
3 changed files with 20 additions and 14 deletions

View file

@ -1,3 +1,3 @@
AUX taof 43 RMD160 2ad54bad2df5401c093a523b2d7d4d839f1417a3 SHA1 a9d6abd97f46d716d5802629c5f96da1f4e01859 SHA256 d14fbd3095e9e7f8425dcd89aa1bb1b30cb1ee3d068805348a4ce188199733d7
DIST taof-0.3.2.tgz 508670 RMD160 79eda88cf6f2a4bc403f103096fe43e100dfa6a4 SHA1 60912b8af80887f294fdc3cf66c0771056b6923d SHA256 2cdcfa280c07b6e4333f9530e55cb40d5f9dd36018a327a7f86d41f9ee4ed9a3
EBUILD taof-0.3.2.ebuild 645 RMD160 817f9c5f3577808d0873294a7382e27d10bda27a SHA1 b52aaad9aa634cc8427d3320c1c93b59edf1caed SHA256 7bf4c233bf269a4d8e7be8fafeea494246b9a8932e96b7955832ab0c5152cc96
AUX taof 44 SHA256 2c2f7c27e30c80d9bc8ff27ddcd95abfb782e9b7232acc512c71b21b8202982a SHA512 b5dbf87f270abb79cc9ef5c2231ac5669190b714e7123bf159c08005c43c39f7c656da692b55df15078c3525bd271c912ba512c3134911d238267120fb749e17 WHIRLPOOL 3ce01d2721445121dc7f910e27c82c497ac669d90e309f6989bb923e0cea9d54c435449ba34dbfd6c63404c9b3c27ebc5be11fb83de3b03361bf418a7c53f148
DIST taof-0.3.2.tgz 508670 SHA256 2cdcfa280c07b6e4333f9530e55cb40d5f9dd36018a327a7f86d41f9ee4ed9a3 SHA512 f01c77533f93f5bd462eb52e47b84c490fe939b0cf7eee6aebb0b999cf42a2d4d47a96aaeb1f6c2f518cb5b133480f47a82c2a1c541bf04178510543d431c82c WHIRLPOOL 22407e5a6db59ecb454e198d707731bc74aa19bfdf3c501d56487ffb76d989b02086c1a20311cbb0c13825e551b4710b7527c65379104ff579d14c4a1e62e71f
EBUILD taof-0.3.2.ebuild 653 SHA256 05fa4256e73e858cb950d7bdd246a3443cc59c59dea2eea0903e867bdaca7ee0 SHA512 8963a0c32714104527267d042bc9093b122f03bd0b1874a03779d45c69bb7c13074803b01aef27ac6f0ccbbc791700b2fb144e8854f0fba747e1ff3e6772a4c2 WHIRLPOOL 8993cbcb51288d3d35ad5d1aa88fad133d48f9d6b4d9737aabc42797d2dfca89c7e416f6ffdb5aae3b1efa0a794f13e567c40efe8d10f3f79adc76ff5bfa4f13

View file

@ -1,4 +1,4 @@
#!/bin/sh
cd /usr/lib/taof
python taof.py
python2 taof.py

View file

@ -1,10 +1,11 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /root/portage/app-fuzz/Peach/Peach-0.4.ebuild,v 1.1.1.2 2006/03/13 21:42:50 grimmlin Exp $
# $Header: $
EAPI=3
EAPI=4
inherit distutils python
PYTHON_DEPEND="2"
inherit python
DESCRIPTION="A generic fuzzer framework"
HOMEPAGE="http://taof.sourceforge.net"
@ -14,17 +15,22 @@ SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
RDEPEND=">=dev-lang/python-2.4
dev-python/pygtk
dev-python/twisted"
RDEPEND="dev-python/pygtk
dev-python/twisted"
src_compile() {
einfo "Nothing to compile"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
python_convert_shebangs -r 2 .
}
src_install() {
insinto /usr/lib/"${PN}"
doins -r *
dodoc Changelog
dosbin "${FILESDIR}"/taof
dobin "${FILESDIR}"/taof
# dosym /usr/lib/"${PN}"/taof.py /usr/bin/taof
}