pentoo-overlay/app-crypt/cpyrit_opencl/cpyrit_opencl-0.4.0-r1.ebuild
2012-11-15 23:18:47 +00:00

47 lines
1.1 KiB
Bash

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
PYTHON_DEPEND="2"
inherit eutils python distutils subversion flag-o-matic
DESCRIPTION="A GPU-based WPA-PSK and WPA2-PSK cracking tool"
HOMEPAGE="http://code.google.com/p/pyrit/"
ESVN_REPO_URI="http://pyrit.googlecode.com/svn/trunk/@294"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="!<app-crypt/pyrit-0.3-r1
dev-db/sqlite:3
dev-lang/python[sqlite]
>=dev-util/ati-stream-sdk-bin-2.0
>=x11-drivers/ati-drivers-10.0"
RDEPEND="${DEPEND}"
pkg_setup() {
append-ldflags $(no-as-needed)
python_set_active_version 2
python_pkg_setup
}
src_compile() {
epatch "${FILESDIR}/${P}.patch"
cd "${S}/cpyrit_opencl"
distutils_src_compile
}
src_install() {
cd "${S}/cpyrit_opencl"
distutils_src_install
# Prevent revdep_rebuild from trying to rebuild when amd opencl is not enabled
dodir /etc/revdep-rebuild/
echo "SEARCH_DIRS_MASK=\"$(python_get_sitedir)/cpyrit/_cpyrit_opencl.so\"" > \
"${ED}"/etc/revdep-rebuild/71-${PN}
}