a bunch of fixes to cxoracle, removed ia64 ppc keywords, added amd64

This commit is contained in:
jensp 2010-01-31 22:26:52 +00:00
parent 3177886481
commit 068feaea58
2 changed files with 8 additions and 17 deletions

View file

@ -1,8 +1,2 @@
DIST cx_Oracle-4.2.tar.gz 87591 RMD160 fdb147f5d21d5ccf7afab5c6978e3f73c1ec982b SHA1 367721bee9cb95525e38a244f22f7594a4a642e9 SHA256 b2a885be0bfc44478f6226751ce72862af4e23c8b37ff65269b2ae1d233a1975
EBUILD cxoracle-4.2.ebuild 957 RMD160 03f57d40628b98e323cd31f8f8bb465f3f545289 SHA1 3a79d86cb1889c5e049027f1cc551e4d74260b0b SHA256 a02d0b974da74c5c1c16e55de3fe465f0e230044022a1544e09fcc82d19c1c52
MD5 cc1341851a6eaac2343c426cefc4d6be cxoracle-4.2.ebuild 957
RMD160 03f57d40628b98e323cd31f8f8bb465f3f545289 cxoracle-4.2.ebuild 957
SHA256 a02d0b974da74c5c1c16e55de3fe465f0e230044022a1544e09fcc82d19c1c52 cxoracle-4.2.ebuild 957
MD5 4c12d0f23202cd5c9c652ca25e1f02c5 files/digest-cxoracle-4.2 238
RMD160 9e1399a736da0db47117fd7ac715eee871d24195 files/digest-cxoracle-4.2 238
SHA256 27c31bdf07cd2360043fd29549512f10e8551d5b1f44a9f5834710f0650fe9c4 files/digest-cxoracle-4.2 238
EBUILD cxoracle-4.2.ebuild 863 RMD160 8f9bae7f893452c93a4e8d77d9625974643ca974 SHA1 05f9651820196485daa23a617c799d59b0e11bb6 SHA256 88866fabf5eed2cac17ed204ccb669e7f8417fdcc167199514ae4e683645cc6b

View file

@ -1,4 +1,4 @@
# Copyright 1999-2006 Gentoo Foundation
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@ -7,13 +7,12 @@ inherit distutils
MY_P="cx_Oracle-${PV}"
DESCRIPTION="Python extension module that allows access to Oracle Databases"
HOMEPAGE="http://www.python.net/crew/atuining/cx_Oracle/"
SRC_URI="http://easynews.dl.sourceforge.net/sourceforge/cx-oracle/${MY_P}.tar.gz"
RESTRICT="nomirror"
SRC_URI="mirror://sourceforge/$PN/${MY_P}.tar.gz"
LICENSE="Computronix"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~ia64 ~ppc ~x86"
IUSE="tests docs"
KEYWORDS="~x86 ~amd64"
IUSE="test doc"
DEPEND=">=dev-lang/python-2.2.2
>=dev-db/oracle-instantclient-basic-10.1.0.2"
@ -21,18 +20,16 @@ RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_compile() {
cd "${S}"
distutils_src_compile
}
src_install() {
cd "${S}"
distutils_src_install
if use "tests";then
if use test;then
docinto tests/
dodoc test/*
fi
if use "docs";then
if use doc;then
dodoc html/*
fi
}