36 lines
946 B
Bash
36 lines
946 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/dap/dap-2.2.6.7.ebuild,v 1.6 2012/08/02 18:17:14 bicatali Exp $
|
|
|
|
EAPI="3"
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="3.*"
|
|
|
|
inherit distutils
|
|
|
|
DESCRIPTION="Data Access Protocol client and server"
|
|
HOMEPAGE="http://pydap.org http://pypi.python.org/pypi/dap http://pypi.python.org/pypi/Pydap"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE="server"
|
|
|
|
RDEPEND="dev-python/httplib2
|
|
server? (
|
|
dev-python/cheetah
|
|
dev-python/paste
|
|
dev-python/pastedeploy
|
|
dev-python/pastescript
|
|
)"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools"
|
|
|
|
DOCS="docs/bugs docs/Changelog docs/history"
|
|
|
|
src_prepare() {
|
|
distutils_src_prepare
|
|
sed -e "s/'dap.plugins'/'dap', 'dap.plugins'/" -i setup.py || die "sed failed"
|
|
}
|