blob: b1b646ec50e2b70578bb05e6eba0b49afae8d463 (
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
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Module for manipulating ID3 tags in Python"
HOMEPAGE="http://pyid3lib.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ia64 ppc ppc64 sparc x86"
IUSE=""
DEPEND="media-libs/id3lib"
RDEPEND="${DEPEND}"
HTML_DOCS=( doc.html )
src_prepare() {
local PATCHES=(
"${FILESDIR}/${P}-gcc-4.4.patch"
"${FILESDIR}/${P}-py25.patch"
)
distutils-r1_src_prepare
append-flags -fno-strict-aliasing
}
|