# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: Exp $ EAPI="5" #python3 support is comining after bug #484954 fix PYTHON_COMPAT=( python2_{6,7} ) inherit git-2 multilib python-r1 HOMEPAGE="https://github.com/darkoperator/dnsrecon" DESCRIPTION="DNS Enumeration Script" EGIT_REPO_URI="https://github.com/darkoperator/dnsrecon.git" EGIT_COMMIT="3e2e357633e0d4613afd976a2640042bc480174b" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="" RDEPEND="dev-python/dnspython dev-python/netaddr" src_install() { # should be as simple as copying everything into the target... dodir /usr/$(get_libdir)/${PN} cp -R "${S}"/* "${D}"/usr/$(get_libdir)/${PN} || die "Copy files failed" dosym /usr/$(get_libdir)/${PN}/${PN}.py /usr/bin/${PN} }