blob: cad216d5a2a8621741dbb13c814515d3cd8d77b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/py3dns/py3dns-3.0.0.ebuild,v 1.1 2011/07/10 00:54:46 sbriesen Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="Python3 module for DNS (Domain Name Service)"
HOMEPAGE="http://pydns.sourceforge.net/ http://pypi.python.org/pypi/pydns"
SRC_URI="http://downloads.sourceforge.net/project/pydns/${PN}/${P}.tar.gz"
LICENSE="CNRI"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"
DEPEND="virtual/libiconv"
RDEPEND=""
RESTRICT_PYTHON_ABIS="2.*"
DOCS="CREDITS.txt"
PYTHON_MODNAME="DNS"
src_prepare() {
# Don't compile bytecode.
sed -i -e 's:^\(compile\).*:\1 = 0:g' -e 's:^\(optimize\).*:\1 = 0:g' setup.cfg
}
src_install(){
distutils_src_install
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins tests/*.py tools/*.py
fi
}
|