mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
33 lines
673 B
Bash
33 lines
673 B
Bash
|
# Copyright 1999-2011 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
#
|
||
|
# http://devmanual.gentoo.org/index.html
|
||
|
#
|
||
|
|
||
|
PYTHON_DEPEND="2"
|
||
|
RESTRICT_PYTHON_ABIS="3.*"
|
||
|
|
||
|
inherit python
|
||
|
|
||
|
DESCRIPTION="remote execution manager"
|
||
|
HOMEPAGE="https://github.com/thatch45/salt"
|
||
|
SRC_URI="https://github.com/downloads/thatch45/salt/salt-0.8.7.tar.gz"
|
||
|
|
||
|
#LICENSE="Apache"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="-* amd64 x86"
|
||
|
IUSE=""
|
||
|
|
||
|
RDEPEND="dev-lang/python
|
||
|
dev-python/pycrypto
|
||
|
dev-python/m2crypto
|
||
|
dev-python/pyyaml
|
||
|
dev-python/pyzmq"
|
||
|
DEPEND="${RDEPEND}"
|
||
|
|
||
|
src_install() {
|
||
|
./setup.py install --root=${D} --optimize=1 || die
|
||
|
}
|
||
|
|