43 lines
1 KiB
Bash
43 lines
1 KiB
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-video/coherence/coherence-0.6.6.1.ebuild,v 1.9 2011/03/05 17:08:17 armin76 Exp $
|
|
|
|
EAPI=2
|
|
PYTHON_DEPEND="2:2.5"
|
|
PYTHON_USE_WITH="sqlite"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="2.4 3.* *-jython"
|
|
|
|
inherit distutils python
|
|
|
|
MY_P="Coherence-${PV}"
|
|
|
|
DESCRIPTION="A framework written in Python for DLNA/UPnP components"
|
|
HOMEPAGE="https://coherence.beebits.net/"
|
|
SRC_URI="http://coherence.beebits.net/download/${MY_P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc64 sparc x86"
|
|
IUSE=""
|
|
|
|
# deps are not exact and need some work
|
|
DEPEND="dev-python/louie
|
|
dev-python/twisted
|
|
dev-python/twisted-web
|
|
dev-python/configobj
|
|
dev-python/gst-python
|
|
dev-python/nevow"
|
|
RDEPEND="${DEPEND}
|
|
dev-python/axiom
|
|
dev-python/gdata
|
|
dev-python/feedparser
|
|
dev-python/tagpy"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_install() {
|
|
DOCS="docs/*"
|
|
distutils_src_install
|
|
newinitd "${FILESDIR}"/coherence-init coherence
|
|
}
|