1 |
# Copyright 1999-2012 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/dev-python/mozrunner/mozrunner-5.10.ebuild,v 1.2 2012/08/27 15:56:37 floppym Exp $ |
4 |
|
5 |
EAPI="3" |
6 |
PYTHON_DEPEND="2" |
7 |
SUPPORT_PYTHON_ABIS="1" |
8 |
RESTRICT_PYTHON_ABIS="3.* *-jython" |
9 |
|
10 |
inherit distutils |
11 |
|
12 |
DESCRIPTION="Reliable start/stop/configuration of Mozilla Applications (Firefox, Thunderbird, etc.)" |
13 |
HOMEPAGE="http://pypi.python.org/pypi/mozrunner" |
14 |
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" |
15 |
|
16 |
LICENSE="MPL-2.0" |
17 |
SLOT="0" |
18 |
KEYWORDS="~amd64 ~x86" |
19 |
IUSE="" |
20 |
|
21 |
DEPEND="dev-python/simplejson |
22 |
>=dev-python/mozinfo-0.3.3 |
23 |
>=dev-python/mozprocess-0.5 |
24 |
>=dev-python/mozprofile-0.4 |
25 |
dev-python/setuptools" |
26 |
RDEPEND="${DEPEND}" |
27 |
|
28 |
src_prepare() { |
29 |
sed -e 's/\(moz.*\) ==/\1 >=/' -i setup.py |
30 |
distutils_src_prepare |
31 |
} |