diff options
Diffstat (limited to 'dev-python/cx-oracle/cx-oracle-5.0.2.ebuild')
-rw-r--r-- | dev-python/cx-oracle/cx-oracle-5.0.2.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-python/cx-oracle/cx-oracle-5.0.2.ebuild b/dev-python/cx-oracle/cx-oracle-5.0.2.ebuild deleted file mode 100644 index 293ff3be2..000000000 --- a/dev-python/cx-oracle/cx-oracle-5.0.2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="3" - -inherit distutils - -MY_PN=cx_Oracle -MY_P=${MY_PN}-${PV} -DESCRIPTION="Python interface to Oracle" -HOMEPAGE="http://www.cxtools.net/default.aspx?nav=cxorlb" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="Computronix" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples" - -DEPEND=">=dev-db/oracle-instantclient-basic-10.2.0.3" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${MY_P} - -DOCS="README.txt HISTORY.txt" - -src_install() { - distutils_src_install - - if use doc; then - dohtml -r html/* || die - fi - - if use examples; then - docinto examples - dodoc samples/* || die - fi -} |