blob: 0ef604c82b0f24f7943913a67a9e09ea79d42ace (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyid3lib/pyid3lib-0.5.1-r1.ebuild,v 1.7 2008/01/26 06:53:38 drac Exp $
inherit distutils eutils
DESCRIPTION="Module for manipulating ID3 tags in Python"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
HOMEPAGE="http://pyid3lib.sourceforge.net/"
IUSE=""
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="amd64 ia64 ppc ppc64 sparc x86"
DEPEND="virtual/python
media-libs/id3lib"
src_unpack() {
distutils_src_unpack
epatch "${FILESDIR}/${P}-py25.patch"
}
src_install() {
distutils_src_install
dohtml doc.html
}
|