diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-29 18:48:54 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-29 18:48:54 +0000 |
commit | 3344829cbe5689ddc1b4a2463d273e6f0cb9c9e0 (patch) | |
tree | 029b88308e717d033c9906b3ec3d06c5a4b18db7 /dev-python/bsddb3 | |
parent | Cleanup old version. (diff) | |
download | gentoo-2-3344829cbe5689ddc1b4a2463d273e6f0cb9c9e0.tar.gz gentoo-2-3344829cbe5689ddc1b4a2463d273e6f0cb9c9e0.tar.bz2 gentoo-2-3344829cbe5689ddc1b4a2463d273e6f0cb9c9e0.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/bsddb3')
-rw-r--r-- | dev-python/bsddb3/bsddb3-4.7.6.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/dev-python/bsddb3/bsddb3-4.7.6.ebuild b/dev-python/bsddb3/bsddb3-4.7.6.ebuild deleted file mode 100644 index 1dd4c0b57422..000000000000 --- a/dev-python/bsddb3/bsddb3-4.7.6.ebuild +++ /dev/null @@ -1,60 +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/bsddb3/bsddb3-4.7.6.ebuild,v 1.5 2009/06/30 15:21:27 armin76 Exp $ - -EAPI="1" - -NEED_PYTHON=2.5 - -inherit db-use distutils multilib - -DESCRIPTION="Python bindings for BerkeleyDB" -HOMEPAGE="http://www.jcea.es/programacion/pybsddb.htm" -SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~ia64 ppc sparc x86" -IUSE="doc" - -RDEPEND=">=sys-libs/db-4.6" -DEPEND="${RDEPEND} - dev-python/setuptools - doc? ( dev-python/sphinx )" - -src_compile() { - local DB_VER - if has_version sys-libs/db:4.7; then - DB_VER="4.7" - else - DB_VER="4.6" - fi - - sed -i \ - -e "s/dblib = 'db'/dblib = '$(db_libname ${DB_VER})'/" \ - setup2.py setup3.py || die "sed failed" - - distutils_src_compile \ - "--berkeley-db=/usr" \ - "--berkeley-db-incdir=$(db_includedir ${DB_VER})" \ - "--berkeley-db-libdir=/usr/$(get_libdir)" - - if use doc; then - mkdir html - sphinx-build docs html || die "building docs failed" - fi -} - -src_install() { - DOCS="TODO.txt" - distutils_src_install - - distutils_python_version - rm -rf "${D}/usr/$(get_libdir)/python${PYVER}/site-packages/${PN}/tests" - - use doc && dohtml -r html/* -} - -src_test() { - distutils_python_version - "${python}" test.py || die "tests failed" -} |