Files
sablink-distro/dev-python/Coherence/Coherence-0.6.2.ebuild
T
dontpanic e5de20f7b2 Fixed dev-python/Coherence-0.5.8 ebuild by providing a missing
patch file, and also added an updated dev-python/Coherence-0.6.2
ebuild.


git-svn-id: http://svn.sabayonlinux.org/overlay@2850 d7aec97c-591d-0410-af39-a8856400b30a
2009-03-19 00:30:20 +00:00

42 lines
772 B
Bash
Executable File

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit distutils
MY_P="Coherence-${PV}"
DESCRIPTION="Coherence is 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"
IUSE="web gstreamer"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
# dev-python/Louie is supplied inline now
DEPEND="
>=dev-lang/python-2.5
dev-python/twisted
>=dev-python/configobj-4.3
gstreamer? ( >=dev-python/gst-python-0.10.12 )
web? ( dev-python/nevow )
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack "${A}"
cd "${S}"
}
src_install() {
distutils_src_install
dodoc docs/*
}