diff options
author | Caleb Tennis <caleb@gentoo.org> | 2009-08-30 11:44:47 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2009-08-30 11:44:47 +0000 |
commit | 2f109af2030ea03bef16c4290eecdbfceefb6bac (patch) | |
tree | 1348588d63c6c42e62b8fd996400f7eb103e84dc /net-misc/orbited/orbited-0.7.10.ebuild | |
parent | version bump #283203 (diff) | |
download | gentoo-2-2f109af2030ea03bef16c4290eecdbfceefb6bac.tar.gz gentoo-2-2f109af2030ea03bef16c4290eecdbfceefb6bac.tar.bz2 gentoo-2-2f109af2030ea03bef16c4290eecdbfceefb6bac.zip |
Version bump per #283204, and fix deps and location of config files
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'net-misc/orbited/orbited-0.7.10.ebuild')
-rw-r--r-- | net-misc/orbited/orbited-0.7.10.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net-misc/orbited/orbited-0.7.10.ebuild b/net-misc/orbited/orbited-0.7.10.ebuild new file mode 100644 index 000000000000..f74661e0fbba --- /dev/null +++ b/net-misc/orbited/orbited-0.7.10.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/orbited/orbited-0.7.10.ebuild,v 1.1 2009/08/30 11:44:46 caleb Exp $ + +inherit distutils + +DESCRIPTION="Real-time communication for the browser." +HOMEPAGE="http://orbited.org" +SRC_URI="http://pypi.python.org/packages/source/o/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-python/twisted-web + dev-python/twisted + >=dev-python/morbid-0.8.4 + || ( dev-python/simplejson dev-python/demjson ) + dev-python/stomper" +DEPEND="${RDEPEND} + dev-python/setuptools" + +src_install() { + distutils_src_install + insinto /etc + doins "${FILESDIR}/orbited.cfg" || die "installing config file failed" + newinitd "${FILESDIR}/orbited.init" orbited +} |