mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-19 04:20:26 +01:00
29 lines
773 B
Bash
29 lines
773 B
Bash
# Copyright 1999-2005 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxmms/pyxmms-2.06.ebuild,v 1.1 2005/10/27 22:00:58 metalgod Exp $
|
|
|
|
inherit distutils
|
|
|
|
DESCRIPTION="Python interface to XMMS"
|
|
HOMEPAGE="http://people.via.ecp.fr/~flo/2002/PyXMMS/xmms.html"
|
|
SRC_URI="http://people.via.ecp.fr/~flo/2002/PyXMMS/dist/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-lang/python-2.2.2
|
|
>=media-sound/xmms-1.2.7-r18"
|
|
|
|
DEPEND="${RDEPEND}
|
|
>=sys-apps/sed-4"
|
|
|
|
PYTHON_MODNAME="xmms"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
# fix the install prefix in setup.cfg
|
|
sed -e 's:/usr/local:/usr:' -i ${S}/setup.cfg || die "patching setup.cfg failed"
|
|
}
|