diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-07-27 21:45:24 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-07-27 21:45:24 +0000 |
commit | 98665e3571180a84722bf4348f0a4fc35dc85a27 (patch) | |
tree | 387adbf08ddf6dbb7ff36eaafc9395aafaad70fb /media-sound/moosic/moosic-1.5.4.ebuild | |
parent | gentoolkit-0.2.4_pre6 version bump. This fixes bugs #81721, #117454, #117550,... (diff) | |
download | gentoo-2-98665e3571180a84722bf4348f0a4fc35dc85a27.tar.gz gentoo-2-98665e3571180a84722bf4348f0a4fc35dc85a27.tar.bz2 gentoo-2-98665e3571180a84722bf4348f0a4fc35dc85a27.zip |
Version bump to Python 2.5 compatible version, switch to distutils, setuptools, and more.
(Portage version: 2.1.3_rc9)
Diffstat (limited to 'media-sound/moosic/moosic-1.5.4.ebuild')
-rw-r--r-- | media-sound/moosic/moosic-1.5.4.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/media-sound/moosic/moosic-1.5.4.ebuild b/media-sound/moosic/moosic-1.5.4.ebuild new file mode 100644 index 000000000000..2ee4e09d8678 --- /dev/null +++ b/media-sound/moosic/moosic-1.5.4.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/moosic/moosic-1.5.4.ebuild,v 1.1 2007/07/27 21:45:24 drac Exp $ + +inherit distutils python + +DESCRIPTION="Moosic is a music player that focuses on easy playlist management" +HOMEPAGE="http://www.nanoo.org/~daniel/moosic" +SRC_URI="http://www.nanoo.org/~daniel/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~amd64" +IUSE="doc" + +RDEPEND="virtual/python" +DEPEND="${RDEPEND} + dev-python/setuptools" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i -e 's:distutils.core:setuptools:' setup.py +} + +src_install() { + distutils_src_install + rm -rf "${D}"/usr/share/doc/${PN} + insinto /etc/bash_completion.d + newins examples/completion ${PN} + dodoc doc/{Moosic_API.txt,moosic_hackers.txt,Todo} + dodoc examples/server_config + use doc && dohtml doc/*.html +} + +pkg_postinst() { + python_version + python_mod_optimize "${ROOT}"/usr/lib*/python${PYVER}/site-packages +} + +pkg_postrm() { + python_version + python_mod_cleanup "${ROOT}"/usr/lib*/python${PYVER}/site-packages +} |