You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/pydns/pydns-2.3.4.ebuild

47 lines
1.2 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pydns/pydns-2.3.4.ebuild,v 1.7 2014/10/04 14:15:11 blueness Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="Python module for DNS (Domain Name Service)"
HOMEPAGE="http://pydns.sourceforge.net/ http://pypi.python.org/pypi/pydns"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="CNRI"
SLOT="2"
KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE="examples"
DEPEND="virtual/libiconv"
RDEPEND=""
RESTRICT_PYTHON_ABIS="3.*"
DOCS="CREDITS.txt"
PYTHON_MODNAME="DNS"
src_prepare() {
# Fix encodings (should be utf-8 but is latin1).
for i in "${PYTHON_MODNAME}"/{Lib,Type}.py; do
iconv -f ISO-8859-1 -t UTF-8 < "${i}" > "${i}~" && mv -f "${i}~" "${i}" || rm -f "${i}~"
done
# Don't compile bytecode.
sed -i -e 's:^\(compile\).*:\1 = 0:g' -e 's:^\(optimize\).*:\1 = 0:g' setup.cfg
# Fix Python shebangs in examples.
sed -i -e 's:#!/.*\(python\)/*$:#!/usr/bin/\1:g' {tests,tools}/*.py
}
src_install(){
distutils_src_install
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins tests/*.py tools/*.py
fi
}