summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-18 21:38:39 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-18 21:38:39 +0000
commitda331b98fe12ccb85f19b10c91f7573a4a8d6bf9 (patch)
treea0112402f7039697b14545b04e4292a864523328 /dev-python/pydns/pydns-2.3.3.ebuild
parentStable for PPC (bug #327877). (diff)
downloadgentoo-2-da331b98fe12ccb85f19b10c91f7573a4a8d6bf9.tar.gz
gentoo-2-da331b98fe12ccb85f19b10c91f7573a4a8d6bf9.tar.bz2
gentoo-2-da331b98fe12ccb85f19b10c91f7573a4a8d6bf9.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/pydns/pydns-2.3.3.ebuild')
-rw-r--r--dev-python/pydns/pydns-2.3.3.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-python/pydns/pydns-2.3.3.ebuild b/dev-python/pydns/pydns-2.3.3.ebuild
deleted file mode 100644
index 9a3e5c5d0b3e..000000000000
--- a/dev-python/pydns/pydns-2.3.3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pydns/pydns-2.3.3.ebuild,v 1.2 2009/02/15 11:54:35 maekke Exp $
-
-inherit eutils distutils
-
-DESCRIPTION="Python module for DNS (Domain Name Service)"
-HOMEPAGE="http://pydns.sourceforge.net/"
-SRC_URI="mirror://sourceforge/pydns/${P}.tar.gz"
-
-LICENSE="CNRI"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="examples"
-
-RDEPEND="virtual/python"
-DEPEND="${RDEPEND}
- virtual/libiconv"
-
-PYTHON_MODNAME="DNS"
-DOCS="CREDITS.txt"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # fix encodings (should be utf-8 but is latin1)
- for i in CREDITS.txt "${PYTHON_MODNAME}"/{Lib,Type}.py; do
- iconv -f ISO-8859-1 -t UTF-8 < "${i}" > "${i}~" && mv -f "${i}~" "${i}" || rm -f "${i}~"
- done
-
- # fix setup.cfg (do not compile bytecode!)
- sed -i -e 's:^\(compile\).*:\1 = 0:g' -e 's:^\(optimize\).*:\1 = 0:g' setup.cfg
-
- # fix python path 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
-}