2c911ab955
media-plugins/elisa-plugins-ugly-0.5.22: Bump to current media-plugins/elisa-plugins-good-0.5.22: Bump to current media-plugins/elisa-plugins-bad-0.5.22: Bump to current media-libs/pigment-0.3.11: Bump to current dev-python/pigment-python-0.3.8: Bump to current dev-python/Coherence-0.5.8-r1: Bump to current dev-python/python-daap-0.7.1: Inital Commit dev-python/cssutils-0.9.5.1: Inital Commit dev-python/twisted-web2-8.1.0: Inital Commit git-svn-id: http://svn.sabayonlinux.org/overlay@2735 d7aec97c-591d-0410-af39-a8856400b30a
33 lines
564 B
Bash
Executable File
33 lines
564 B
Bash
Executable File
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
MY_PN=PythonDaap
|
|
|
|
DESCRIPTION="DAAP client implemented in Python"
|
|
HOMEPAGE="http://foo.bar.com/"
|
|
|
|
SRC_URI="http://static.jerakeen.org/files/${MY_PN}-${PV}.tar.gz"
|
|
LICENSE="GPL"
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~x86 ~amd64"
|
|
|
|
DEPEND="dev-lang/python"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_PN}-${PV}"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
}
|
|
|
|
src_compile() {
|
|
python setup.py build || die
|
|
}
|
|
|
|
src_install() {
|
|
python setup.py install --root="${D}" || die
|
|
}
|