diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2004-08-14 03:46:47 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2004-08-14 03:46:47 +0000 |
commit | 338ac13bb60270fa4cecab8e511ac76937abf52d (patch) | |
tree | 2d15a1c01e8ef479345b24685fd2ca2bc524dcd0 /dev-python/adodb-py/adodb-py-1.0.1.ebuild | |
parent | dev-python/adodb-py:postgresql (diff) | |
download | historical-338ac13bb60270fa4cecab8e511ac76937abf52d.tar.gz historical-338ac13bb60270fa4cecab8e511ac76937abf52d.tar.bz2 historical-338ac13bb60270fa4cecab8e511ac76937abf52d.zip |
Added USE flags for mysql and postgresql support, changed homepage, dep version of python. bug# 43154
Diffstat (limited to 'dev-python/adodb-py/adodb-py-1.0.1.ebuild')
-rw-r--r-- | dev-python/adodb-py/adodb-py-1.0.1.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/dev-python/adodb-py/adodb-py-1.0.1.ebuild b/dev-python/adodb-py/adodb-py-1.0.1.ebuild index 01681649479e..1f381cd09583 100644 --- a/dev-python/adodb-py/adodb-py-1.0.1.ebuild +++ b/dev-python/adodb-py/adodb-py-1.0.1.ebuild @@ -1,18 +1,20 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/adodb-py/adodb-py-1.0.1.ebuild,v 1.1 2004/08/10 03:58:00 pythonhead Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/adodb-py/adodb-py-1.0.1.ebuild,v 1.2 2004/08/14 03:46:47 pythonhead Exp $ inherit distutils MY_P=${PN}${PV//./} DESCRIPTION="Active Data Objects Data Base library for Python" -HOMEPAGE="http://php.weblogs.com/adodb_python" +HOMEPAGE="http://adodb.sourceforge.net/" SRC_URI="mirror://sourceforge/adodb/${MY_P}.zip" LICENSE="BSD" SLOT="0" KEYWORDS="~x86" -IUSE="" -RDEPEND="virtual/python" +IUSE="mysql postgresql" +RDEPEND=">=dev-lang/python-2.3 + postgresql? ( >=dev-python/psycopg-1.1.5.1 ) + mysql? ( >=dev-python/mysql-python-0.9.2 )" S="${WORKDIR}/${PN/-py/}" DOCS="LICENSE.txt README.txt" |